github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/wasm/proto/proposal_custom.proto (about)

     1  syntax = "proto3";
     2  package types;
     3  
     4  option go_package = "x/wasm/types";
     5  
     6  message UpdateDeploymentWhitelistProposal {
     7    string title = 1;
     8    string description = 2;
     9    repeated string distributorAddrs = 3;
    10  }
    11  
    12  message UpdateWASMContractMethodBlockedListProposal {
    13    string title = 1;
    14    string description = 2;
    15    ContractMethods blockedMethods = 3;
    16    bool isDelete = 4;
    17  }
    18  
    19  message ContractMethods {
    20    string contractAddr = 1;
    21    repeated Method methods = 2;
    22  }
    23  
    24  message Method {
    25    string name = 1;
    26    string extra = 2;
    27  }