Merge pull request #330 from CosmWasm/proto_package_329

Rename protobuf package
This commit is contained in:
Alexander Peters
2020-12-04 12:52:29 +01:00
committed by GitHub
12 changed files with 444 additions and 444 deletions

View File

@@ -8,20 +8,20 @@ COSMOS_SDK_DIR=${COSMOS_SDK_DIR:-$(go list -f "{{ .Dir }}" -m github.com/cosmos/
echo "### List all codes"
grpcurl -plaintext -import-path $COSMOS_SDK_DIR/third_party/proto -import-path $COSMOS_SDK_DIR/proto -import-path . -proto ./x/wasm/internal/types/query.proto \
localhost:9090 wasmd.x.wasmd.v1beta1.Query/Codes | jq
localhost:9090 cosmwasm.wasm.v1beta1.Query/Codes | jq
echo "### List contract by code"
RESP=$(grpcurl -plaintext -import-path $COSMOS_SDK_DIR/third_party/proto -import-path $COSMOS_SDK_DIR/proto -import-path . -proto ./x/wasm/internal/types/query.proto \
-d '{"codeId":2}' localhost:9090 wasmd.x.wasmd.v1beta1.Query/ContractsByCode )
-d '{"codeId":2}' localhost:9090 cosmwasm.wasm.v1beta1.Query/ContractsByCode )
echo $RESP | jq
echo "### Show history for contract"
CONTRACT=$(echo $RESP | jq -r ".contractInfos[-1].address")
grpcurl -plaintext -import-path $COSMOS_SDK_DIR/third_party/proto -import-path $COSMOS_SDK_DIR/proto -import-path . -proto ./x/wasm/internal/types/query.proto \
-d "{\"address\": \"$CONTRACT\"}" localhost:9090 wasmd.x.wasmd.v1beta1.Query/ContractHistory | jq
-d "{\"address\": \"$CONTRACT\"}" localhost:9090 cosmwasm.wasm.v1beta1.Query/ContractHistory | jq
echo "### Show contract state"
grpcurl -plaintext -import-path $COSMOS_SDK_DIR/third_party/proto -import-path $COSMOS_SDK_DIR/proto -import-path . -proto ./x/wasm/internal/types/query.proto \
-d "{\"address\": \"$CONTRACT\"}" localhost:9090 wasmd.x.wasmd.v1beta1.Query/AllContractState | jq
-d "{\"address\": \"$CONTRACT\"}" localhost:9090 cosmwasm.wasm.v1beta1.Query/AllContractState | jq
echo "Empty state due to 'burner' contract cleanup"

View File

@@ -4,60 +4,60 @@
## Table of Contents
- [x/wasm/internal/types/genesis.proto](#x/wasm/internal/types/genesis.proto)
- [Code](#wasmd.x.wasmd.v1beta1.Code)
- [Contract](#wasmd.x.wasmd.v1beta1.Contract)
- [GenesisState](#wasmd.x.wasmd.v1beta1.GenesisState)
- [Sequence](#wasmd.x.wasmd.v1beta1.Sequence)
- [Code](#cosmwasm.wasm.v1beta1.Code)
- [Contract](#cosmwasm.wasm.v1beta1.Contract)
- [GenesisState](#cosmwasm.wasm.v1beta1.GenesisState)
- [Sequence](#cosmwasm.wasm.v1beta1.Sequence)
- [x/wasm/internal/types/msg.proto](#x/wasm/internal/types/msg.proto)
- [MsgClearAdmin](#wasmd.x.wasmd.v1beta1.MsgClearAdmin)
- [MsgExecuteContract](#wasmd.x.wasmd.v1beta1.MsgExecuteContract)
- [MsgInstantiateContract](#wasmd.x.wasmd.v1beta1.MsgInstantiateContract)
- [MsgMigrateContract](#wasmd.x.wasmd.v1beta1.MsgMigrateContract)
- [MsgStoreCode](#wasmd.x.wasmd.v1beta1.MsgStoreCode)
- [MsgUpdateAdmin](#wasmd.x.wasmd.v1beta1.MsgUpdateAdmin)
- [MsgClearAdmin](#cosmwasm.wasm.v1beta1.MsgClearAdmin)
- [MsgExecuteContract](#cosmwasm.wasm.v1beta1.MsgExecuteContract)
- [MsgInstantiateContract](#cosmwasm.wasm.v1beta1.MsgInstantiateContract)
- [MsgMigrateContract](#cosmwasm.wasm.v1beta1.MsgMigrateContract)
- [MsgStoreCode](#cosmwasm.wasm.v1beta1.MsgStoreCode)
- [MsgUpdateAdmin](#cosmwasm.wasm.v1beta1.MsgUpdateAdmin)
- [x/wasm/internal/types/proposal.proto](#x/wasm/internal/types/proposal.proto)
- [ClearAdminProposal](#wasmd.x.wasmd.v1beta1.ClearAdminProposal)
- [InstantiateContractProposal](#wasmd.x.wasmd.v1beta1.InstantiateContractProposal)
- [MigrateContractProposal](#wasmd.x.wasmd.v1beta1.MigrateContractProposal)
- [StoreCodeProposal](#wasmd.x.wasmd.v1beta1.StoreCodeProposal)
- [UpdateAdminProposal](#wasmd.x.wasmd.v1beta1.UpdateAdminProposal)
- [ClearAdminProposal](#cosmwasm.wasm.v1beta1.ClearAdminProposal)
- [InstantiateContractProposal](#cosmwasm.wasm.v1beta1.InstantiateContractProposal)
- [MigrateContractProposal](#cosmwasm.wasm.v1beta1.MigrateContractProposal)
- [StoreCodeProposal](#cosmwasm.wasm.v1beta1.StoreCodeProposal)
- [UpdateAdminProposal](#cosmwasm.wasm.v1beta1.UpdateAdminProposal)
- [x/wasm/internal/types/query.proto](#x/wasm/internal/types/query.proto)
- [CodeInfoResponse](#wasmd.x.wasmd.v1beta1.CodeInfoResponse)
- [ContractInfoWithAddress](#wasmd.x.wasmd.v1beta1.ContractInfoWithAddress)
- [QueryAllContractStateRequest](#wasmd.x.wasmd.v1beta1.QueryAllContractStateRequest)
- [QueryAllContractStateResponse](#wasmd.x.wasmd.v1beta1.QueryAllContractStateResponse)
- [QueryCodeRequest](#wasmd.x.wasmd.v1beta1.QueryCodeRequest)
- [QueryCodeResponse](#wasmd.x.wasmd.v1beta1.QueryCodeResponse)
- [QueryCodesRequest](#wasmd.x.wasmd.v1beta1.QueryCodesRequest)
- [QueryCodesResponse](#wasmd.x.wasmd.v1beta1.QueryCodesResponse)
- [QueryContractHistoryRequest](#wasmd.x.wasmd.v1beta1.QueryContractHistoryRequest)
- [QueryContractHistoryResponse](#wasmd.x.wasmd.v1beta1.QueryContractHistoryResponse)
- [QueryContractInfoRequest](#wasmd.x.wasmd.v1beta1.QueryContractInfoRequest)
- [QueryContractInfoResponse](#wasmd.x.wasmd.v1beta1.QueryContractInfoResponse)
- [QueryContractsByCodeRequest](#wasmd.x.wasmd.v1beta1.QueryContractsByCodeRequest)
- [QueryContractsByCodeResponse](#wasmd.x.wasmd.v1beta1.QueryContractsByCodeResponse)
- [QueryRawContractStateRequest](#wasmd.x.wasmd.v1beta1.QueryRawContractStateRequest)
- [QueryRawContractStateResponse](#wasmd.x.wasmd.v1beta1.QueryRawContractStateResponse)
- [QuerySmartContractStateRequest](#wasmd.x.wasmd.v1beta1.QuerySmartContractStateRequest)
- [QuerySmartContractStateResponse](#wasmd.x.wasmd.v1beta1.QuerySmartContractStateResponse)
- [CodeInfoResponse](#cosmwasm.wasm.v1beta1.CodeInfoResponse)
- [ContractInfoWithAddress](#cosmwasm.wasm.v1beta1.ContractInfoWithAddress)
- [QueryAllContractStateRequest](#cosmwasm.wasm.v1beta1.QueryAllContractStateRequest)
- [QueryAllContractStateResponse](#cosmwasm.wasm.v1beta1.QueryAllContractStateResponse)
- [QueryCodeRequest](#cosmwasm.wasm.v1beta1.QueryCodeRequest)
- [QueryCodeResponse](#cosmwasm.wasm.v1beta1.QueryCodeResponse)
- [QueryCodesRequest](#cosmwasm.wasm.v1beta1.QueryCodesRequest)
- [QueryCodesResponse](#cosmwasm.wasm.v1beta1.QueryCodesResponse)
- [QueryContractHistoryRequest](#cosmwasm.wasm.v1beta1.QueryContractHistoryRequest)
- [QueryContractHistoryResponse](#cosmwasm.wasm.v1beta1.QueryContractHistoryResponse)
- [QueryContractInfoRequest](#cosmwasm.wasm.v1beta1.QueryContractInfoRequest)
- [QueryContractInfoResponse](#cosmwasm.wasm.v1beta1.QueryContractInfoResponse)
- [QueryContractsByCodeRequest](#cosmwasm.wasm.v1beta1.QueryContractsByCodeRequest)
- [QueryContractsByCodeResponse](#cosmwasm.wasm.v1beta1.QueryContractsByCodeResponse)
- [QueryRawContractStateRequest](#cosmwasm.wasm.v1beta1.QueryRawContractStateRequest)
- [QueryRawContractStateResponse](#cosmwasm.wasm.v1beta1.QueryRawContractStateResponse)
- [QuerySmartContractStateRequest](#cosmwasm.wasm.v1beta1.QuerySmartContractStateRequest)
- [QuerySmartContractStateResponse](#cosmwasm.wasm.v1beta1.QuerySmartContractStateResponse)
- [Query](#wasmd.x.wasmd.v1beta1.Query)
- [Query](#cosmwasm.wasm.v1beta1.Query)
- [x/wasm/internal/types/types.proto](#x/wasm/internal/types/types.proto)
- [AbsoluteTxPosition](#wasmd.x.wasmd.v1beta1.AbsoluteTxPosition)
- [AccessConfig](#wasmd.x.wasmd.v1beta1.AccessConfig)
- [AccessTypeParam](#wasmd.x.wasmd.v1beta1.AccessTypeParam)
- [CodeInfo](#wasmd.x.wasmd.v1beta1.CodeInfo)
- [ContractCodeHistoryEntry](#wasmd.x.wasmd.v1beta1.ContractCodeHistoryEntry)
- [ContractInfo](#wasmd.x.wasmd.v1beta1.ContractInfo)
- [Model](#wasmd.x.wasmd.v1beta1.Model)
- [Params](#wasmd.x.wasmd.v1beta1.Params)
- [AbsoluteTxPosition](#cosmwasm.wasm.v1beta1.AbsoluteTxPosition)
- [AccessConfig](#cosmwasm.wasm.v1beta1.AccessConfig)
- [AccessTypeParam](#cosmwasm.wasm.v1beta1.AccessTypeParam)
- [CodeInfo](#cosmwasm.wasm.v1beta1.CodeInfo)
- [ContractCodeHistoryEntry](#cosmwasm.wasm.v1beta1.ContractCodeHistoryEntry)
- [ContractInfo](#cosmwasm.wasm.v1beta1.ContractInfo)
- [Model](#cosmwasm.wasm.v1beta1.Model)
- [Params](#cosmwasm.wasm.v1beta1.Params)
- [AccessType](#wasmd.x.wasmd.v1beta1.AccessType)
- [ContractCodeHistoryOperationType](#wasmd.x.wasmd.v1beta1.ContractCodeHistoryOperationType)
- [AccessType](#cosmwasm.wasm.v1beta1.AccessType)
- [ContractCodeHistoryOperationType](#cosmwasm.wasm.v1beta1.ContractCodeHistoryOperationType)
- [Scalar Value Types](#scalar-value-types)
@@ -70,7 +70,7 @@
<a name="wasmd.x.wasmd.v1beta1.Code"></a>
<a name="cosmwasm.wasm.v1beta1.Code"></a>
### Code
Code struct encompasses CodeInfo and CodeBytes
@@ -79,7 +79,7 @@ Code struct encompasses CodeInfo and CodeBytes
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| code_id | [uint64](#uint64) | | |
| code_info | [CodeInfo](#wasmd.x.wasmd.v1beta1.CodeInfo) | | |
| code_info | [CodeInfo](#cosmwasm.wasm.v1beta1.CodeInfo) | | |
| code_bytes | [bytes](#bytes) | | |
@@ -87,7 +87,7 @@ Code struct encompasses CodeInfo and CodeBytes
<a name="wasmd.x.wasmd.v1beta1.Contract"></a>
<a name="cosmwasm.wasm.v1beta1.Contract"></a>
### Contract
Contract struct encompasses ContractAddress, ContractInfo, and ContractState
@@ -96,15 +96,15 @@ Contract struct encompasses ContractAddress, ContractInfo, and ContractState
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| contract_address | [string](#string) | | |
| contract_info | [ContractInfo](#wasmd.x.wasmd.v1beta1.ContractInfo) | | |
| contract_state | [Model](#wasmd.x.wasmd.v1beta1.Model) | repeated | |
| contract_info | [ContractInfo](#cosmwasm.wasm.v1beta1.ContractInfo) | | |
| contract_state | [Model](#cosmwasm.wasm.v1beta1.Model) | repeated | |
<a name="wasmd.x.wasmd.v1beta1.GenesisState"></a>
<a name="cosmwasm.wasm.v1beta1.GenesisState"></a>
### GenesisState
GenesisState - genesis state of x/wasm
@@ -112,17 +112,17 @@ GenesisState - genesis state of x/wasm
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| params | [Params](#wasmd.x.wasmd.v1beta1.Params) | | |
| codes | [Code](#wasmd.x.wasmd.v1beta1.Code) | repeated | |
| contracts | [Contract](#wasmd.x.wasmd.v1beta1.Contract) | repeated | |
| sequences | [Sequence](#wasmd.x.wasmd.v1beta1.Sequence) | repeated | |
| params | [Params](#cosmwasm.wasm.v1beta1.Params) | | |
| codes | [Code](#cosmwasm.wasm.v1beta1.Code) | repeated | |
| contracts | [Contract](#cosmwasm.wasm.v1beta1.Contract) | repeated | |
| sequences | [Sequence](#cosmwasm.wasm.v1beta1.Sequence) | repeated | |
<a name="wasmd.x.wasmd.v1beta1.Sequence"></a>
<a name="cosmwasm.wasm.v1beta1.Sequence"></a>
### Sequence
Sequence key and value of an id generation counter
@@ -154,7 +154,7 @@ Sequence key and value of an id generation counter
<a name="wasmd.x.wasmd.v1beta1.MsgClearAdmin"></a>
<a name="cosmwasm.wasm.v1beta1.MsgClearAdmin"></a>
### MsgClearAdmin
MsgClearAdmin removes any admin stored for a smart contract
@@ -170,7 +170,7 @@ MsgClearAdmin removes any admin stored for a smart contract
<a name="wasmd.x.wasmd.v1beta1.MsgExecuteContract"></a>
<a name="cosmwasm.wasm.v1beta1.MsgExecuteContract"></a>
### MsgExecuteContract
MsgExecuteContract submits the given message data to a smart contract
@@ -188,7 +188,7 @@ MsgExecuteContract submits the given message data to a smart contract
<a name="wasmd.x.wasmd.v1beta1.MsgInstantiateContract"></a>
<a name="cosmwasm.wasm.v1beta1.MsgInstantiateContract"></a>
### MsgInstantiateContract
MsgInstantiateContract create a new smart contract instance for the given code id.
@@ -208,7 +208,7 @@ MsgInstantiateContract create a new smart contract instance for the given code i
<a name="wasmd.x.wasmd.v1beta1.MsgMigrateContract"></a>
<a name="cosmwasm.wasm.v1beta1.MsgMigrateContract"></a>
### MsgMigrateContract
MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
@@ -226,7 +226,7 @@ MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
<a name="wasmd.x.wasmd.v1beta1.MsgStoreCode"></a>
<a name="cosmwasm.wasm.v1beta1.MsgStoreCode"></a>
### MsgStoreCode
MsgStoreCode submit Wasm code to the system
@@ -238,14 +238,14 @@ MsgStoreCode submit Wasm code to the system
| wasm_byte_code | [bytes](#bytes) | | WASMByteCode can be raw or gzip compressed |
| source | [string](#string) | | Source is a valid absolute HTTPS URI to the contract&#39;s source code, optional |
| builder | [string](#string) | | Builder is a valid docker image name with tag, optional |
| instantiate_permission | [AccessConfig](#wasmd.x.wasmd.v1beta1.AccessConfig) | | InstantiatePermission access control to apply on contract creation, optional |
| instantiate_permission | [AccessConfig](#cosmwasm.wasm.v1beta1.AccessConfig) | | InstantiatePermission access control to apply on contract creation, optional |
<a name="wasmd.x.wasmd.v1beta1.MsgUpdateAdmin"></a>
<a name="cosmwasm.wasm.v1beta1.MsgUpdateAdmin"></a>
### MsgUpdateAdmin
MsgUpdateAdmin sets a new admin for a smart contract
@@ -278,7 +278,7 @@ MsgUpdateAdmin sets a new admin for a smart contract
<a name="wasmd.x.wasmd.v1beta1.ClearAdminProposal"></a>
<a name="cosmwasm.wasm.v1beta1.ClearAdminProposal"></a>
### ClearAdminProposal
ClearAdminProposal gov proposal content type to clear the admin of a contract.
@@ -295,7 +295,7 @@ ClearAdminProposal gov proposal content type to clear the admin of a contract.
<a name="wasmd.x.wasmd.v1beta1.InstantiateContractProposal"></a>
<a name="cosmwasm.wasm.v1beta1.InstantiateContractProposal"></a>
### InstantiateContractProposal
InstantiateContractProposal gov proposal content type to instantiate a contract.
@@ -317,7 +317,7 @@ InstantiateContractProposal gov proposal content type to instantiate a contract.
<a name="wasmd.x.wasmd.v1beta1.MigrateContractProposal"></a>
<a name="cosmwasm.wasm.v1beta1.MigrateContractProposal"></a>
### MigrateContractProposal
MigrateContractProposal gov proposal content type to migrate a contract.
@@ -337,7 +337,7 @@ MigrateContractProposal gov proposal content type to migrate a contract.
<a name="wasmd.x.wasmd.v1beta1.StoreCodeProposal"></a>
<a name="cosmwasm.wasm.v1beta1.StoreCodeProposal"></a>
### StoreCodeProposal
StoreCodeProposal gov proposal content type to submit WASM code to the system
@@ -351,14 +351,14 @@ StoreCodeProposal gov proposal content type to submit WASM code to the system
| wasm_byte_code | [bytes](#bytes) | | WASMByteCode can be raw or gzip compressed |
| source | [string](#string) | | Source is a valid absolute HTTPS URI to the contract&#39;s source code, optional |
| builder | [string](#string) | | Builder is a valid docker image name with tag, optional |
| instantiate_permission | [AccessConfig](#wasmd.x.wasmd.v1beta1.AccessConfig) | | InstantiatePermission to apply on contract creation, optional |
| instantiate_permission | [AccessConfig](#cosmwasm.wasm.v1beta1.AccessConfig) | | InstantiatePermission to apply on contract creation, optional |
<a name="wasmd.x.wasmd.v1beta1.UpdateAdminProposal"></a>
<a name="cosmwasm.wasm.v1beta1.UpdateAdminProposal"></a>
### UpdateAdminProposal
UpdateAdminProposal gov proposal content type to set an admin for a contract.
@@ -392,7 +392,7 @@ UpdateAdminProposal gov proposal content type to set an admin for a contract.
<a name="wasmd.x.wasmd.v1beta1.CodeInfoResponse"></a>
<a name="cosmwasm.wasm.v1beta1.CodeInfoResponse"></a>
### CodeInfoResponse
CodeInfoResponse contains code meta data from CodeInfo
@@ -411,7 +411,7 @@ CodeInfoResponse contains code meta data from CodeInfo
<a name="wasmd.x.wasmd.v1beta1.ContractInfoWithAddress"></a>
<a name="cosmwasm.wasm.v1beta1.ContractInfoWithAddress"></a>
### ContractInfoWithAddress
ContractInfoWithAddress adds the address (key) to the ContractInfo representation
@@ -420,14 +420,14 @@ ContractInfoWithAddress adds the address (key) to the ContractInfo representatio
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| address | [string](#string) | | |
| contract_info | [ContractInfo](#wasmd.x.wasmd.v1beta1.ContractInfo) | | |
| contract_info | [ContractInfo](#cosmwasm.wasm.v1beta1.ContractInfo) | | |
<a name="wasmd.x.wasmd.v1beta1.QueryAllContractStateRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryAllContractStateRequest"></a>
### QueryAllContractStateRequest
QueryAllContractStateRequest is the request type for the Query/AllContractState RPC method
@@ -443,7 +443,7 @@ QueryAllContractStateRequest is the request type for the Query/AllContractState
<a name="wasmd.x.wasmd.v1beta1.QueryAllContractStateResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryAllContractStateResponse"></a>
### QueryAllContractStateResponse
QueryAllContractStateResponse is the response type for the Query/AllContractState RPC method
@@ -451,7 +451,7 @@ QueryAllContractStateResponse is the response type for the Query/AllContractStat
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| models | [Model](#wasmd.x.wasmd.v1beta1.Model) | repeated | |
| models | [Model](#cosmwasm.wasm.v1beta1.Model) | repeated | |
| pagination | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. |
@@ -459,7 +459,7 @@ QueryAllContractStateResponse is the response type for the Query/AllContractStat
<a name="wasmd.x.wasmd.v1beta1.QueryCodeRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryCodeRequest"></a>
### QueryCodeRequest
QueryCodeRequest is the request type for the Query/Code RPC method
@@ -474,7 +474,7 @@ QueryCodeRequest is the request type for the Query/Code RPC method
<a name="wasmd.x.wasmd.v1beta1.QueryCodeResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryCodeResponse"></a>
### QueryCodeResponse
QueryCodeResponse is the response type for the Query/Code RPC method
@@ -482,7 +482,7 @@ QueryCodeResponse is the response type for the Query/Code RPC method
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| code_info | [CodeInfoResponse](#wasmd.x.wasmd.v1beta1.CodeInfoResponse) | | |
| code_info | [CodeInfoResponse](#cosmwasm.wasm.v1beta1.CodeInfoResponse) | | |
| data | [bytes](#bytes) | | |
@@ -490,7 +490,7 @@ QueryCodeResponse is the response type for the Query/Code RPC method
<a name="wasmd.x.wasmd.v1beta1.QueryCodesRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryCodesRequest"></a>
### QueryCodesRequest
QueryCodesRequest is the request type for the Query/Codes RPC method
@@ -505,7 +505,7 @@ QueryCodesRequest is the request type for the Query/Codes RPC method
<a name="wasmd.x.wasmd.v1beta1.QueryCodesResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryCodesResponse"></a>
### QueryCodesResponse
QueryCodesResponse is the response type for the Query/Codes RPC method
@@ -513,7 +513,7 @@ QueryCodesResponse is the response type for the Query/Codes RPC method
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| code_infos | [CodeInfoResponse](#wasmd.x.wasmd.v1beta1.CodeInfoResponse) | repeated | |
| code_infos | [CodeInfoResponse](#cosmwasm.wasm.v1beta1.CodeInfoResponse) | repeated | |
| pagination | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. |
@@ -521,7 +521,7 @@ QueryCodesResponse is the response type for the Query/Codes RPC method
<a name="wasmd.x.wasmd.v1beta1.QueryContractHistoryRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryContractHistoryRequest"></a>
### QueryContractHistoryRequest
QueryContractHistoryRequest is the request type for the Query/ContractHistory RPC method
@@ -537,7 +537,7 @@ QueryContractHistoryRequest is the request type for the Query/ContractHistory RP
<a name="wasmd.x.wasmd.v1beta1.QueryContractHistoryResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryContractHistoryResponse"></a>
### QueryContractHistoryResponse
QueryContractHistoryResponse is the response type for the Query/ContractHistory RPC method
@@ -545,7 +545,7 @@ QueryContractHistoryResponse is the response type for the Query/ContractHistory
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| entries | [ContractCodeHistoryEntry](#wasmd.x.wasmd.v1beta1.ContractCodeHistoryEntry) | repeated | |
| entries | [ContractCodeHistoryEntry](#cosmwasm.wasm.v1beta1.ContractCodeHistoryEntry) | repeated | |
| pagination | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. |
@@ -553,7 +553,7 @@ QueryContractHistoryResponse is the response type for the Query/ContractHistory
<a name="wasmd.x.wasmd.v1beta1.QueryContractInfoRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryContractInfoRequest"></a>
### QueryContractInfoRequest
QueryContractInfoRequest is the request type for the Query/ContractInfo RPC method
@@ -568,7 +568,7 @@ QueryContractInfoRequest is the request type for the Query/ContractInfo RPC meth
<a name="wasmd.x.wasmd.v1beta1.QueryContractInfoResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryContractInfoResponse"></a>
### QueryContractInfoResponse
QueryContractInfoResponse is the response type for the Query/ContractInfo RPC method
@@ -577,14 +577,14 @@ QueryContractInfoResponse is the response type for the Query/ContractInfo RPC me
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| address | [string](#string) | | address is the address of the contract |
| contract_info | [ContractInfo](#wasmd.x.wasmd.v1beta1.ContractInfo) | | |
| contract_info | [ContractInfo](#cosmwasm.wasm.v1beta1.ContractInfo) | | |
<a name="wasmd.x.wasmd.v1beta1.QueryContractsByCodeRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryContractsByCodeRequest"></a>
### QueryContractsByCodeRequest
QueryContractsByCodeRequest is the request type for the Query/ContractsByCode RPC method
@@ -600,7 +600,7 @@ QueryContractsByCodeRequest is the request type for the Query/ContractsByCode RP
<a name="wasmd.x.wasmd.v1beta1.QueryContractsByCodeResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryContractsByCodeResponse"></a>
### QueryContractsByCodeResponse
QueryContractsByCodeResponse is the response type for the Query/ContractsByCode RPC method
@@ -608,7 +608,7 @@ QueryContractsByCodeResponse is the response type for the Query/ContractsByCode
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| contract_infos | [ContractInfoWithAddress](#wasmd.x.wasmd.v1beta1.ContractInfoWithAddress) | repeated | |
| contract_infos | [ContractInfoWithAddress](#cosmwasm.wasm.v1beta1.ContractInfoWithAddress) | repeated | |
| pagination | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. |
@@ -616,7 +616,7 @@ QueryContractsByCodeResponse is the response type for the Query/ContractsByCode
<a name="wasmd.x.wasmd.v1beta1.QueryRawContractStateRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QueryRawContractStateRequest"></a>
### QueryRawContractStateRequest
QueryRawContractStateRequest is the request type for the Query/RawContractState RPC method
@@ -632,7 +632,7 @@ QueryRawContractStateRequest is the request type for the Query/RawContractState
<a name="wasmd.x.wasmd.v1beta1.QueryRawContractStateResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QueryRawContractStateResponse"></a>
### QueryRawContractStateResponse
QueryRawContractStateResponse is the response type for the Query/RawContractState RPC method
@@ -647,7 +647,7 @@ QueryRawContractStateResponse is the response type for the Query/RawContractStat
<a name="wasmd.x.wasmd.v1beta1.QuerySmartContractStateRequest"></a>
<a name="cosmwasm.wasm.v1beta1.QuerySmartContractStateRequest"></a>
### QuerySmartContractStateRequest
QuerySmartContractStateRequest is the request type for the Query/SmartContractState RPC method
@@ -663,7 +663,7 @@ QuerySmartContractStateRequest is the request type for the Query/SmartContractSt
<a name="wasmd.x.wasmd.v1beta1.QuerySmartContractStateResponse"></a>
<a name="cosmwasm.wasm.v1beta1.QuerySmartContractStateResponse"></a>
### QuerySmartContractStateResponse
QuerySmartContractStateResponse is the response type for the Query/SmartContractState RPC method
@@ -684,21 +684,21 @@ QuerySmartContractStateResponse is the response type for the Query/SmartContract
<a name="wasmd.x.wasmd.v1beta1.Query"></a>
<a name="cosmwasm.wasm.v1beta1.Query"></a>
### Query
Query provides defines the gRPC querier service
| Method Name | Request Type | Response Type | Description |
| ----------- | ------------ | ------------- | ------------|
| ContractInfo | [QueryContractInfoRequest](#wasmd.x.wasmd.v1beta1.QueryContractInfoRequest) | [QueryContractInfoResponse](#wasmd.x.wasmd.v1beta1.QueryContractInfoResponse) | ContractInfo gets the contract meta data |
| ContractHistory | [QueryContractHistoryRequest](#wasmd.x.wasmd.v1beta1.QueryContractHistoryRequest) | [QueryContractHistoryResponse](#wasmd.x.wasmd.v1beta1.QueryContractHistoryResponse) | ContractHistory gets the contract code history |
| ContractsByCode | [QueryContractsByCodeRequest](#wasmd.x.wasmd.v1beta1.QueryContractsByCodeRequest) | [QueryContractsByCodeResponse](#wasmd.x.wasmd.v1beta1.QueryContractsByCodeResponse) | ContractsByCode lists all smart contracts for a code id |
| AllContractState | [QueryAllContractStateRequest](#wasmd.x.wasmd.v1beta1.QueryAllContractStateRequest) | [QueryAllContractStateResponse](#wasmd.x.wasmd.v1beta1.QueryAllContractStateResponse) | AllContractState gets all raw store data for a single contract |
| RawContractState | [QueryRawContractStateRequest](#wasmd.x.wasmd.v1beta1.QueryRawContractStateRequest) | [QueryRawContractStateResponse](#wasmd.x.wasmd.v1beta1.QueryRawContractStateResponse) | RawContractState gets single key from the raw store data of a contract |
| SmartContractState | [QuerySmartContractStateRequest](#wasmd.x.wasmd.v1beta1.QuerySmartContractStateRequest) | [QuerySmartContractStateResponse](#wasmd.x.wasmd.v1beta1.QuerySmartContractStateResponse) | SmartContractState get smart query result from the contract |
| Code | [QueryCodeRequest](#wasmd.x.wasmd.v1beta1.QueryCodeRequest) | [QueryCodeResponse](#wasmd.x.wasmd.v1beta1.QueryCodeResponse) | Code gets the binary code and metadata for a singe wasm code |
| Codes | [QueryCodesRequest](#wasmd.x.wasmd.v1beta1.QueryCodesRequest) | [QueryCodesResponse](#wasmd.x.wasmd.v1beta1.QueryCodesResponse) | Codes gets the metadata for all stored wasm codes |
| ContractInfo | [QueryContractInfoRequest](#cosmwasm.wasm.v1beta1.QueryContractInfoRequest) | [QueryContractInfoResponse](#cosmwasm.wasm.v1beta1.QueryContractInfoResponse) | ContractInfo gets the contract meta data |
| ContractHistory | [QueryContractHistoryRequest](#cosmwasm.wasm.v1beta1.QueryContractHistoryRequest) | [QueryContractHistoryResponse](#cosmwasm.wasm.v1beta1.QueryContractHistoryResponse) | ContractHistory gets the contract code history |
| ContractsByCode | [QueryContractsByCodeRequest](#cosmwasm.wasm.v1beta1.QueryContractsByCodeRequest) | [QueryContractsByCodeResponse](#cosmwasm.wasm.v1beta1.QueryContractsByCodeResponse) | ContractsByCode lists all smart contracts for a code id |
| AllContractState | [QueryAllContractStateRequest](#cosmwasm.wasm.v1beta1.QueryAllContractStateRequest) | [QueryAllContractStateResponse](#cosmwasm.wasm.v1beta1.QueryAllContractStateResponse) | AllContractState gets all raw store data for a single contract |
| RawContractState | [QueryRawContractStateRequest](#cosmwasm.wasm.v1beta1.QueryRawContractStateRequest) | [QueryRawContractStateResponse](#cosmwasm.wasm.v1beta1.QueryRawContractStateResponse) | RawContractState gets single key from the raw store data of a contract |
| SmartContractState | [QuerySmartContractStateRequest](#cosmwasm.wasm.v1beta1.QuerySmartContractStateRequest) | [QuerySmartContractStateResponse](#cosmwasm.wasm.v1beta1.QuerySmartContractStateResponse) | SmartContractState get smart query result from the contract |
| Code | [QueryCodeRequest](#cosmwasm.wasm.v1beta1.QueryCodeRequest) | [QueryCodeResponse](#cosmwasm.wasm.v1beta1.QueryCodeResponse) | Code gets the binary code and metadata for a singe wasm code |
| Codes | [QueryCodesRequest](#cosmwasm.wasm.v1beta1.QueryCodesRequest) | [QueryCodesResponse](#cosmwasm.wasm.v1beta1.QueryCodesResponse) | Codes gets the metadata for all stored wasm codes |
@@ -711,7 +711,7 @@ Query provides defines the gRPC querier service
<a name="wasmd.x.wasmd.v1beta1.AbsoluteTxPosition"></a>
<a name="cosmwasm.wasm.v1beta1.AbsoluteTxPosition"></a>
### AbsoluteTxPosition
AbsoluteTxPosition is a unique transaction position that allows for global ordering of transactions.
@@ -727,7 +727,7 @@ AbsoluteTxPosition is a unique transaction position that allows for global order
<a name="wasmd.x.wasmd.v1beta1.AccessConfig"></a>
<a name="cosmwasm.wasm.v1beta1.AccessConfig"></a>
### AccessConfig
AccessConfig access control type.
@@ -735,7 +735,7 @@ AccessConfig access control type.
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| permission | [AccessType](#wasmd.x.wasmd.v1beta1.AccessType) | | |
| permission | [AccessType](#cosmwasm.wasm.v1beta1.AccessType) | | |
| address | [string](#string) | | |
@@ -743,7 +743,7 @@ AccessConfig access control type.
<a name="wasmd.x.wasmd.v1beta1.AccessTypeParam"></a>
<a name="cosmwasm.wasm.v1beta1.AccessTypeParam"></a>
### AccessTypeParam
AccessTypeParam
@@ -751,14 +751,14 @@ AccessTypeParam
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| value | [AccessType](#wasmd.x.wasmd.v1beta1.AccessType) | | |
| value | [AccessType](#cosmwasm.wasm.v1beta1.AccessType) | | |
<a name="wasmd.x.wasmd.v1beta1.CodeInfo"></a>
<a name="cosmwasm.wasm.v1beta1.CodeInfo"></a>
### CodeInfo
CodeInfo is data for the uploaded contract WASM code
@@ -770,14 +770,14 @@ CodeInfo is data for the uploaded contract WASM code
| creator | [string](#string) | | Creator address who initially stored the code |
| source | [string](#string) | | Source is a valid absolute HTTPS URI to the contract&#39;s source code, optional |
| builder | [string](#string) | | Builder is a valid docker image name with tag, optional |
| instantiate_config | [AccessConfig](#wasmd.x.wasmd.v1beta1.AccessConfig) | | InstantiateConfig access control to apply on contract creation, optional |
| instantiate_config | [AccessConfig](#cosmwasm.wasm.v1beta1.AccessConfig) | | InstantiateConfig access control to apply on contract creation, optional |
<a name="wasmd.x.wasmd.v1beta1.ContractCodeHistoryEntry"></a>
<a name="cosmwasm.wasm.v1beta1.ContractCodeHistoryEntry"></a>
### ContractCodeHistoryEntry
ContractCodeHistoryEntry metadata to a contract.
@@ -785,9 +785,9 @@ ContractCodeHistoryEntry metadata to a contract.
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| operation | [ContractCodeHistoryOperationType](#wasmd.x.wasmd.v1beta1.ContractCodeHistoryOperationType) | | |
| operation | [ContractCodeHistoryOperationType](#cosmwasm.wasm.v1beta1.ContractCodeHistoryOperationType) | | |
| code_id | [uint64](#uint64) | | CodeID is the reference to the stored WASM code |
| updated | [AbsoluteTxPosition](#wasmd.x.wasmd.v1beta1.AbsoluteTxPosition) | | Updated Tx position when the operation was executed. |
| updated | [AbsoluteTxPosition](#cosmwasm.wasm.v1beta1.AbsoluteTxPosition) | | Updated Tx position when the operation was executed. |
| msg | [bytes](#bytes) | | |
@@ -795,7 +795,7 @@ ContractCodeHistoryEntry metadata to a contract.
<a name="wasmd.x.wasmd.v1beta1.ContractInfo"></a>
<a name="cosmwasm.wasm.v1beta1.ContractInfo"></a>
### ContractInfo
ContractInfo stores a WASM contract instance
@@ -807,14 +807,14 @@ ContractInfo stores a WASM contract instance
| creator | [string](#string) | | Creator address who initially instantiated the contract |
| admin | [string](#string) | | Admin is an optional address that can execute migrations |
| label | [string](#string) | | Label is optional metadata to be stored with a contract instance. |
| created | [AbsoluteTxPosition](#wasmd.x.wasmd.v1beta1.AbsoluteTxPosition) | | Created Tx position when the contract was instantiated. This data should kept internal and not be exposed via query results. Just use for sorting |
| created | [AbsoluteTxPosition](#cosmwasm.wasm.v1beta1.AbsoluteTxPosition) | | Created Tx position when the contract was instantiated. This data should kept internal and not be exposed via query results. Just use for sorting |
<a name="wasmd.x.wasmd.v1beta1.Model"></a>
<a name="cosmwasm.wasm.v1beta1.Model"></a>
### Model
Model is a struct that holds a KV pair
@@ -830,7 +830,7 @@ Model is a struct that holds a KV pair
<a name="wasmd.x.wasmd.v1beta1.Params"></a>
<a name="cosmwasm.wasm.v1beta1.Params"></a>
### Params
Params defines the set of wasm parameters.
@@ -838,8 +838,8 @@ Params defines the set of wasm parameters.
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| code_upload_access | [AccessConfig](#wasmd.x.wasmd.v1beta1.AccessConfig) | | |
| instantiate_default_permission | [AccessType](#wasmd.x.wasmd.v1beta1.AccessType) | | |
| code_upload_access | [AccessConfig](#cosmwasm.wasm.v1beta1.AccessConfig) | | |
| instantiate_default_permission | [AccessType](#cosmwasm.wasm.v1beta1.AccessType) | | |
| max_wasm_code_size | [uint64](#uint64) | | |
@@ -849,7 +849,7 @@ Params defines the set of wasm parameters.
<a name="wasmd.x.wasmd.v1beta1.AccessType"></a>
<a name="cosmwasm.wasm.v1beta1.AccessType"></a>
### AccessType
AccessType permission types
@@ -863,7 +863,7 @@ AccessType permission types
<a name="wasmd.x.wasmd.v1beta1.ContractCodeHistoryOperationType"></a>
<a name="cosmwasm.wasm.v1beta1.ContractCodeHistoryOperationType"></a>
### ContractCodeHistoryOperationType
ContractCodeHistoryOperationType actions that caused a code change

View File

@@ -268,10 +268,10 @@ func (m *Sequence) GetValue() uint64 {
}
func init() {
proto.RegisterType((*GenesisState)(nil), "wasmd.x.wasmd.v1beta1.GenesisState")
proto.RegisterType((*Code)(nil), "wasmd.x.wasmd.v1beta1.Code")
proto.RegisterType((*Contract)(nil), "wasmd.x.wasmd.v1beta1.Contract")
proto.RegisterType((*Sequence)(nil), "wasmd.x.wasmd.v1beta1.Sequence")
proto.RegisterType((*GenesisState)(nil), "cosmwasm.wasm.v1beta1.GenesisState")
proto.RegisterType((*Code)(nil), "cosmwasm.wasm.v1beta1.Code")
proto.RegisterType((*Contract)(nil), "cosmwasm.wasm.v1beta1.Contract")
proto.RegisterType((*Sequence)(nil), "cosmwasm.wasm.v1beta1.Sequence")
}
func init() {
@@ -279,39 +279,39 @@ func init() {
}
var fileDescriptor_52f9f2715025dba8 = []byte{
// 507 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0x41, 0x6f, 0xd3, 0x30,
0x14, 0xc7, 0x9b, 0xae, 0x0d, 0xad, 0x57, 0x18, 0x32, 0x43, 0x44, 0x1b, 0x4b, 0x4a, 0x7b, 0x29,
0x12, 0x4a, 0xd8, 0x38, 0x72, 0x22, 0x9b, 0x84, 0xb2, 0x09, 0x84, 0xb2, 0x03, 0xd2, 0x2e, 0x55,
0x1a, 0xbf, 0x95, 0x88, 0x26, 0x2e, 0xb1, 0x3b, 0x9a, 0x2f, 0x81, 0xf8, 0x58, 0xbb, 0xd1, 0x23,
0xa7, 0x0a, 0xa5, 0x37, 0x3e, 0x05, 0xb2, 0x9d, 0x66, 0x41, 0x5a, 0xb7, 0x4b, 0x53, 0x3f, 0xff,
0xdf, 0xcf, 0xef, 0xfd, 0x9f, 0x8d, 0xfa, 0x73, 0xe7, 0x7b, 0xc0, 0x62, 0x27, 0x4a, 0x38, 0xa4,
0x49, 0x30, 0x71, 0x78, 0x36, 0x05, 0xe6, 0x8c, 0x21, 0x01, 0x16, 0x31, 0x7b, 0x9a, 0x52, 0x4e,
0xf1, 0x53, 0x21, 0x21, 0xf6, 0xdc, 0x56, 0xdf, 0xab, 0xc3, 0x11, 0xf0, 0xe0, 0x70, 0x6f, 0x77,
0x4c, 0xc7, 0x54, 0x2a, 0x1c, 0xf1, 0x4f, 0x89, 0xf7, 0x5e, 0xdc, 0x4e, 0x94, 0xbf, 0x4a, 0xd2,
0xfb, 0x55, 0x47, 0x9d, 0xf7, 0xea, 0x84, 0x73, 0x1e, 0x70, 0xc0, 0x6f, 0x91, 0x3e, 0x0d, 0xd2,
0x20, 0x66, 0x86, 0xd6, 0xd5, 0x06, 0xdb, 0x47, 0x07, 0xf6, 0xad, 0x27, 0xda, 0x9f, 0xa4, 0xc8,
0x6d, 0x5c, 0x2f, 0xad, 0x9a, 0x5f, 0xa4, 0xe0, 0x53, 0xd4, 0x0c, 0x29, 0x01, 0x66, 0xd4, 0xbb,
0x5b, 0x83, 0xed, 0xa3, 0xfd, 0x0d, 0xb9, 0xc7, 0x94, 0x80, 0xfb, 0x4c, 0x64, 0xfe, 0x5d, 0x5a,
0x3b, 0x32, 0xe3, 0x15, 0x8d, 0x23, 0x0e, 0xf1, 0x94, 0x67, 0xbe, 0x42, 0xe0, 0x0b, 0xd4, 0x0e,
0x69, 0xc2, 0xd3, 0x20, 0xe4, 0xcc, 0xd8, 0x92, 0x3c, 0x6b, 0x23, 0x4f, 0xe9, 0xdc, 0xfd, 0x82,
0xf9, 0xa4, 0xcc, 0xac, 0x70, 0x6f, 0x70, 0x82, 0xcd, 0xe0, 0xdb, 0x0c, 0x92, 0x10, 0x98, 0xd1,
0xb8, 0x93, 0x7d, 0x5e, 0xe8, 0x6e, 0xd8, 0x65, 0x66, 0x95, 0x5d, 0x06, 0x7b, 0x3f, 0x34, 0xd4,
0x10, 0x0d, 0xe2, 0x3e, 0x7a, 0x20, 0x3a, 0x19, 0x46, 0x44, 0x5a, 0xd9, 0x70, 0x51, 0xbe, 0xb4,
0x74, 0xb1, 0xe5, 0x9d, 0xf8, 0xba, 0xd8, 0xf2, 0x08, 0x76, 0x45, 0x97, 0x42, 0x94, 0x5c, 0x52,
0xa3, 0x2e, 0x1d, 0xb7, 0xee, 0x70, 0xcd, 0x4b, 0x2e, 0x69, 0xe1, 0x79, 0x2b, 0x2c, 0xd6, 0xf8,
0x00, 0x21, 0xc9, 0x18, 0x65, 0x1c, 0x84, 0x55, 0xda, 0xa0, 0xe3, 0x4b, 0xaa, 0x2b, 0x02, 0xbd,
0x85, 0x86, 0x5a, 0x6b, 0x87, 0xf0, 0x4b, 0xf4, 0x78, 0x6d, 0xc3, 0x30, 0x20, 0x24, 0x05, 0xa6,
0x06, 0xdd, 0xf6, 0x77, 0xd6, 0xf1, 0x77, 0x2a, 0x8c, 0x3f, 0xa2, 0x87, 0xa5, 0xb4, 0x52, 0x5e,
0xff, 0x9e, 0x21, 0x54, 0x4a, 0xec, 0x84, 0x95, 0x18, 0xf6, 0xd0, 0xa3, 0x92, 0xc7, 0xc4, 0x5d,
0x2b, 0xa6, 0xfa, 0x7c, 0x03, 0xf0, 0x03, 0x25, 0x30, 0x29, 0x48, 0x65, 0x25, 0xf2, 0x92, 0xf6,
0x5c, 0xd4, 0x5a, 0xcf, 0x05, 0x77, 0x91, 0x1e, 0x91, 0xe1, 0x57, 0xc8, 0x64, 0x1f, 0x1d, 0xb7,
0x9d, 0x2f, 0xad, 0xa6, 0x77, 0x72, 0x06, 0x99, 0xdf, 0x8c, 0xc8, 0x19, 0x64, 0x78, 0x17, 0x35,
0xaf, 0x82, 0xc9, 0x0c, 0x64, 0x03, 0x0d, 0x5f, 0x2d, 0xdc, 0xd3, 0xeb, 0xdc, 0xd4, 0x16, 0xb9,
0xa9, 0xfd, 0xc9, 0x4d, 0xed, 0xe7, 0xca, 0xac, 0x2d, 0x56, 0x66, 0xed, 0xf7, 0xca, 0xac, 0x5d,
0xbc, 0x1e, 0x47, 0xfc, 0xcb, 0x6c, 0x64, 0x87, 0x34, 0x76, 0x8e, 0x29, 0x8b, 0x3f, 0x8b, 0x37,
0x24, 0x6b, 0x73, 0xe6, 0xc5, 0xf7, 0xff, 0x17, 0x35, 0xd2, 0xe5, 0x63, 0x7a, 0xf3, 0x2f, 0x00,
0x00, 0xff, 0xff, 0x39, 0x9f, 0x1d, 0xc7, 0xc3, 0x03, 0x00, 0x00,
// 510 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xc1, 0x6f, 0xd3, 0x3e,
0x14, 0xc7, 0x9b, 0x2e, 0xcd, 0xaf, 0xf5, 0xfa, 0x63, 0xc8, 0x0c, 0x11, 0x6d, 0x2c, 0x29, 0xed,
0xa5, 0x48, 0x28, 0x61, 0xe3, 0xc8, 0x89, 0x6c, 0x12, 0xca, 0x26, 0x10, 0xca, 0x0e, 0x48, 0xbb,
0x54, 0x6e, 0xfc, 0x56, 0x22, 0x9a, 0xb8, 0xc4, 0xee, 0x58, 0xfe, 0x09, 0xc4, 0x9f, 0xb5, 0x1b,
0x3d, 0x72, 0xaa, 0x50, 0x7a, 0xe3, 0xaf, 0x40, 0x76, 0xd2, 0x2c, 0x48, 0xeb, 0xb8, 0xa4, 0xf5,
0xf3, 0xf7, 0x7d, 0xfc, 0xde, 0xf7, 0xd9, 0x68, 0x70, 0xed, 0x7e, 0x25, 0x3c, 0x76, 0xa3, 0x44,
0x40, 0x9a, 0x90, 0xa9, 0x2b, 0xb2, 0x19, 0x70, 0x77, 0x02, 0x09, 0xf0, 0x88, 0x3b, 0xb3, 0x94,
0x09, 0x86, 0x1f, 0x87, 0x8c, 0xc7, 0x52, 0xe6, 0xa8, 0xcf, 0xd5, 0xe1, 0x18, 0x04, 0x39, 0xdc,
0xdb, 0x9d, 0xb0, 0x09, 0x53, 0x0a, 0x57, 0xfe, 0x2b, 0xc4, 0x7b, 0xcf, 0xee, 0x26, 0xaa, 0x6f,
0x21, 0xe9, 0xff, 0x68, 0xa2, 0xee, 0xdb, 0xe2, 0x84, 0x73, 0x41, 0x04, 0xe0, 0xd7, 0xc8, 0x98,
0x91, 0x94, 0xc4, 0xdc, 0xd4, 0x7a, 0xda, 0x70, 0xfb, 0xe8, 0xc0, 0xb9, 0xf3, 0x44, 0xe7, 0x83,
0x12, 0x79, 0xfa, 0xcd, 0xd2, 0x6e, 0x04, 0x65, 0x0a, 0x3e, 0x45, 0xad, 0x90, 0x51, 0xe0, 0x66,
0xb3, 0xb7, 0x35, 0xdc, 0x3e, 0xda, 0xdf, 0x90, 0x7b, 0xcc, 0x28, 0x78, 0x4f, 0x64, 0xe6, 0xef,
0xa5, 0xbd, 0xa3, 0x32, 0x5e, 0xb0, 0x38, 0x12, 0x10, 0xcf, 0x44, 0x16, 0x14, 0x08, 0x7c, 0x81,
0x3a, 0x21, 0x4b, 0x44, 0x4a, 0x42, 0xc1, 0xcd, 0x2d, 0xc5, 0xb3, 0x37, 0xf2, 0x0a, 0x9d, 0xb7,
0x5f, 0x32, 0x1f, 0x55, 0x99, 0x35, 0xee, 0x2d, 0x4e, 0xb2, 0x39, 0x7c, 0x99, 0x43, 0x12, 0x02,
0x37, 0xf5, 0x7b, 0xd9, 0xe7, 0xa5, 0xee, 0x96, 0x5d, 0x65, 0xd6, 0xd9, 0x55, 0xb0, 0xff, 0x4d,
0x43, 0xba, 0x6c, 0x10, 0x0f, 0xd0, 0x7f, 0xb2, 0x93, 0x51, 0x44, 0x95, 0x95, 0xba, 0x87, 0xf2,
0xa5, 0x6d, 0xc8, 0x2d, 0xff, 0x24, 0x30, 0xe4, 0x96, 0x4f, 0xb1, 0x27, 0xbb, 0x94, 0xa2, 0xe4,
0x92, 0x99, 0x4d, 0xe5, 0xb8, 0x7d, 0x8f, 0x6b, 0x7e, 0x72, 0xc9, 0x4a, 0xcf, 0xdb, 0x61, 0xb9,
0xc6, 0x07, 0x08, 0x29, 0xc6, 0x38, 0x13, 0x20, 0xad, 0xd2, 0x86, 0xdd, 0x40, 0x51, 0x3d, 0x19,
0xe8, 0x2f, 0x34, 0xd4, 0x5e, 0x3b, 0x84, 0x9f, 0xa3, 0x87, 0x6b, 0x1b, 0x46, 0x84, 0xd2, 0x14,
0x78, 0x31, 0xe8, 0x4e, 0xb0, 0xb3, 0x8e, 0xbf, 0x29, 0xc2, 0xf8, 0x3d, 0xfa, 0xbf, 0x92, 0xd6,
0xca, 0x1b, 0xfc, 0x63, 0x08, 0xb5, 0x12, 0xbb, 0x61, 0x2d, 0x86, 0x7d, 0xf4, 0xa0, 0xe2, 0x71,
0x79, 0xd7, 0xca, 0xa9, 0x3e, 0xdd, 0x00, 0x7c, 0xc7, 0x28, 0x4c, 0x4b, 0x52, 0x55, 0x89, 0xba,
0xa4, 0x7d, 0x0f, 0xb5, 0xd7, 0x73, 0xc1, 0x3d, 0x64, 0x44, 0x74, 0xf4, 0x19, 0x32, 0xd5, 0x47,
0xd7, 0xeb, 0xe4, 0x4b, 0xbb, 0xe5, 0x9f, 0x9c, 0x41, 0x16, 0xb4, 0x22, 0x7a, 0x06, 0x19, 0xde,
0x45, 0xad, 0x2b, 0x32, 0x9d, 0x83, 0x6a, 0x40, 0x0f, 0x8a, 0x85, 0x77, 0x7a, 0x93, 0x5b, 0xda,
0x22, 0xb7, 0xb4, 0x5f, 0xb9, 0xa5, 0x7d, 0x5f, 0x59, 0x8d, 0xc5, 0xca, 0x6a, 0xfc, 0x5c, 0x59,
0x8d, 0x8b, 0x97, 0x93, 0x48, 0x7c, 0x9a, 0x8f, 0x9d, 0x90, 0xc5, 0xee, 0x31, 0xe3, 0xf1, 0x47,
0xf9, 0x86, 0x64, 0x69, 0xd4, 0xbd, 0x2e, 0x7f, 0xff, 0x7e, 0x51, 0x63, 0x43, 0x3d, 0xa6, 0x57,
0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x56, 0x37, 0xff, 0x93, 0xc3, 0x03, 0x00, 0x00,
}
func (m *GenesisState) Marshal() (dAtA []byte, err error) {

View File

@@ -1,5 +1,5 @@
syntax = "proto3";
package wasmd.x.wasmd.v1beta1;
package cosmwasm.wasm.v1beta1;
import "gogoproto/gogo.proto";
import "x/wasm/internal/types/types.proto";

View File

@@ -297,12 +297,12 @@ func (m *MsgClearAdmin) XXX_DiscardUnknown() {
var xxx_messageInfo_MsgClearAdmin proto.InternalMessageInfo
func init() {
proto.RegisterType((*MsgStoreCode)(nil), "wasmd.x.wasmd.v1beta1.MsgStoreCode")
proto.RegisterType((*MsgInstantiateContract)(nil), "wasmd.x.wasmd.v1beta1.MsgInstantiateContract")
proto.RegisterType((*MsgExecuteContract)(nil), "wasmd.x.wasmd.v1beta1.MsgExecuteContract")
proto.RegisterType((*MsgMigrateContract)(nil), "wasmd.x.wasmd.v1beta1.MsgMigrateContract")
proto.RegisterType((*MsgUpdateAdmin)(nil), "wasmd.x.wasmd.v1beta1.MsgUpdateAdmin")
proto.RegisterType((*MsgClearAdmin)(nil), "wasmd.x.wasmd.v1beta1.MsgClearAdmin")
proto.RegisterType((*MsgStoreCode)(nil), "cosmwasm.wasm.v1beta1.MsgStoreCode")
proto.RegisterType((*MsgInstantiateContract)(nil), "cosmwasm.wasm.v1beta1.MsgInstantiateContract")
proto.RegisterType((*MsgExecuteContract)(nil), "cosmwasm.wasm.v1beta1.MsgExecuteContract")
proto.RegisterType((*MsgMigrateContract)(nil), "cosmwasm.wasm.v1beta1.MsgMigrateContract")
proto.RegisterType((*MsgUpdateAdmin)(nil), "cosmwasm.wasm.v1beta1.MsgUpdateAdmin")
proto.RegisterType((*MsgClearAdmin)(nil), "cosmwasm.wasm.v1beta1.MsgClearAdmin")
}
func init() { proto.RegisterFile("x/wasm/internal/types/msg.proto", fileDescriptor_22c4d58a052e9e95) }
@@ -310,45 +310,45 @@ func init() { proto.RegisterFile("x/wasm/internal/types/msg.proto", fileDescript
var fileDescriptor_22c4d58a052e9e95 = []byte{
// 634 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0xc1, 0x6e, 0xd3, 0x4c,
0x10, 0xc7, 0xe3, 0xa6, 0x4d, 0x9b, 0x6d, 0xbe, 0xea, 0x93, 0xd5, 0x56, 0xa6, 0x20, 0x3b, 0xa4,
0x97, 0x5c, 0xb0, 0xdb, 0x22, 0xc1, 0x89, 0x43, 0x6d, 0x40, 0xea, 0xc1, 0x08, 0xb9, 0x42, 0x95,
0x7a, 0xb1, 0xd6, 0xf6, 0x76, 0xd9, 0x12, 0xef, 0x46, 0x9e, 0x0d, 0x49, 0xdf, 0x82, 0xa7, 0xe0,
0x80, 0x78, 0x90, 0x1e, 0x7b, 0xe4, 0x14, 0x20, 0xe5, 0xc8, 0x13, 0x70, 0x42, 0xbb, 0x76, 0x43,
0x2a, 0xb5, 0x55, 0x24, 0xc4, 0x25, 0x9b, 0xd1, 0xfc, 0xe7, 0x3f, 0xf9, 0xcd, 0x4e, 0x16, 0x39,
0x23, 0x6f, 0x88, 0x21, 0xf7, 0x18, 0x97, 0xa4, 0xe0, 0xb8, 0xe7, 0xc9, 0xb3, 0x3e, 0x01, 0x2f,
0x07, 0xea, 0xf6, 0x0b, 0x21, 0x85, 0xb9, 0xa1, 0xd2, 0x99, 0x3b, 0x72, 0xcb, 0xf3, 0xfd, 0x6e,
0x42, 0x24, 0xde, 0xdd, 0x5a, 0xa7, 0x82, 0x0a, 0xad, 0xf0, 0xd4, 0xb7, 0x52, 0xbc, 0x65, 0xa7,
0x02, 0x72, 0x01, 0x5e, 0x82, 0x81, 0x78, 0x95, 0xd4, 0x4b, 0x05, 0xe3, 0x55, 0xfe, 0xe1, 0xcd,
0xdd, 0xf4, 0x67, 0x29, 0xe9, 0xfc, 0x34, 0x50, 0x2b, 0x04, 0x7a, 0x28, 0x45, 0x41, 0x02, 0x91,
0x11, 0x73, 0x13, 0x35, 0x80, 0xf0, 0x8c, 0x14, 0x96, 0xd1, 0x36, 0xba, 0xcd, 0xa8, 0x8a, 0xcc,
0x27, 0x68, 0x4d, 0x79, 0xc5, 0xc9, 0x99, 0x24, 0x71, 0x2a, 0x32, 0x62, 0x2d, 0xb4, 0x8d, 0x6e,
0xcb, 0xff, 0x7f, 0x32, 0x76, 0x5a, 0x47, 0xfb, 0x87, 0xa1, 0x7f, 0x26, 0xb5, 0x43, 0xd4, 0x52,
0xba, 0xab, 0x48, 0xfb, 0x89, 0x41, 0x91, 0x12, 0xab, 0x5e, 0xf9, 0xe9, 0xc8, 0xb4, 0xd0, 0x72,
0x32, 0x60, 0x3d, 0xd5, 0x68, 0x51, 0x27, 0xae, 0x42, 0xf3, 0x18, 0x6d, 0x32, 0x0e, 0x12, 0x73,
0xc9, 0xb0, 0x24, 0x71, 0x9f, 0x14, 0x39, 0x03, 0x60, 0x82, 0x5b, 0x4b, 0x6d, 0xa3, 0xbb, 0xba,
0xb7, 0xed, 0xde, 0x38, 0x23, 0x77, 0x3f, 0x4d, 0x09, 0x40, 0x20, 0xf8, 0x09, 0xa3, 0xd1, 0xc6,
0x8c, 0xc5, 0xeb, 0xa9, 0x43, 0xe7, 0xe3, 0x02, 0xda, 0x0c, 0x81, 0x1e, 0xfc, 0x49, 0x06, 0x82,
0xcb, 0x02, 0xa7, 0xf2, 0x56, 0xf0, 0x75, 0xb4, 0x84, 0xb3, 0x9c, 0x71, 0xcd, 0xdb, 0x8c, 0xca,
0xc0, 0xdc, 0x46, 0xcb, 0x6a, 0x08, 0x31, 0xcb, 0x34, 0xd7, 0xa2, 0x8f, 0x26, 0x63, 0xa7, 0xa1,
0x88, 0x0f, 0x9e, 0x47, 0x0d, 0x95, 0x3a, 0xc8, 0x54, 0x69, 0x0f, 0x27, 0xa4, 0x57, 0x11, 0x96,
0x81, 0xf9, 0x14, 0xad, 0x30, 0xce, 0x64, 0x9c, 0x03, 0xd5, 0x44, 0x2d, 0xff, 0xc1, 0xaf, 0xb1,
0x63, 0x11, 0x9e, 0x8a, 0x8c, 0x71, 0xea, 0x9d, 0x82, 0xe0, 0x6e, 0x84, 0x87, 0x21, 0x01, 0xc0,
0x94, 0x44, 0xcb, 0x4a, 0x1d, 0x02, 0x35, 0x4f, 0x11, 0xd2, 0x85, 0x27, 0x03, 0x9e, 0x81, 0xd5,
0x68, 0xd7, 0xbb, 0xab, 0x7b, 0xf7, 0xdc, 0x72, 0x07, 0x5c, 0xb5, 0x03, 0xd3, 0x51, 0x04, 0x82,
0x71, 0x7f, 0xe7, 0x7c, 0xec, 0xd4, 0x3e, 0x7d, 0x75, 0xba, 0x94, 0xc9, 0xb7, 0x83, 0xc4, 0x4d,
0x45, 0xee, 0x55, 0x0b, 0x53, 0x1e, 0x8f, 0x20, 0x7b, 0x57, 0x2d, 0x83, 0x2a, 0x80, 0xa8, 0xa9,
0xec, 0x5f, 0x2a, 0xf7, 0xce, 0x0f, 0x03, 0x99, 0x21, 0xd0, 0x17, 0x23, 0x92, 0x0e, 0xe6, 0x18,
0xd2, 0x16, 0x5a, 0x49, 0x2b, 0x4d, 0x35, 0xa7, 0x69, 0x6c, 0xba, 0xa8, 0xae, 0x50, 0xeb, 0x73,
0xa0, 0x2a, 0xa1, 0xc2, 0x04, 0xc2, 0xaf, 0x30, 0x97, 0xfe, 0x01, 0xa6, 0xb2, 0x2f, 0x31, 0x3f,
0x97, 0x98, 0x21, 0xa3, 0x05, 0xfe, 0x4b, 0xcc, 0xb9, 0x36, 0xe2, 0x19, 0x5a, 0xcd, 0xcb, 0x5e,
0xfa, 0xfa, 0x17, 0xe7, 0x98, 0x09, 0xaa, 0x0a, 0x42, 0xa0, 0x1d, 0x8c, 0xd6, 0x42, 0xa0, 0x6f,
0xfa, 0x19, 0x96, 0x64, 0x5f, 0xef, 0xe1, 0x6d, 0xbf, 0xf4, 0x3e, 0x6a, 0x72, 0x32, 0x8c, 0x67,
0x37, 0x77, 0x85, 0x93, 0x61, 0x59, 0x34, 0x8b, 0x51, 0xbf, 0x8e, 0xd1, 0x09, 0xd0, 0x7f, 0x21,
0xd0, 0xa0, 0x47, 0x70, 0x71, 0x77, 0x87, 0x3b, 0x4c, 0xfc, 0x57, 0xe7, 0xdf, 0xed, 0xda, 0xf9,
0xc4, 0x36, 0x2e, 0x26, 0xb6, 0xf1, 0x6d, 0x62, 0x1b, 0x1f, 0x2e, 0xed, 0xda, 0xc5, 0xa5, 0x5d,
0xfb, 0x72, 0x69, 0xd7, 0x8e, 0x77, 0x66, 0x6e, 0x2a, 0x10, 0x90, 0x1f, 0xa9, 0x37, 0x4a, 0xff,
0x97, 0xbd, 0x51, 0x75, 0x5e, 0x7f, 0xb1, 0x92, 0x86, 0x7e, 0xac, 0x1e, 0xff, 0x0e, 0x00, 0x00,
0xff, 0xff, 0x02, 0x30, 0x34, 0xe1, 0x3f, 0x05, 0x00, 0x00,
0x10, 0xc7, 0xe3, 0xa6, 0x4d, 0x9b, 0x6d, 0xbe, 0xea, 0x93, 0xd5, 0x56, 0xa6, 0x20, 0x27, 0xa4,
0x97, 0x5c, 0xb0, 0xdb, 0x22, 0xc1, 0x89, 0x43, 0x63, 0x40, 0xea, 0xc1, 0x08, 0xb9, 0x42, 0x95,
0x7a, 0x89, 0xd6, 0xf6, 0x74, 0xd9, 0x12, 0xef, 0x46, 0x9e, 0x0d, 0x69, 0xdf, 0x82, 0xa7, 0xe0,
0x80, 0x78, 0x90, 0x1e, 0x7b, 0xe4, 0x14, 0x20, 0xe5, 0xc8, 0x13, 0x70, 0x42, 0xbb, 0x76, 0x4b,
0x2a, 0xb5, 0x55, 0x24, 0xc4, 0xc5, 0xce, 0x68, 0xfe, 0xf3, 0x9f, 0xfc, 0x66, 0xc7, 0x4b, 0x9a,
0x27, 0xfe, 0x88, 0x62, 0xe6, 0x73, 0xa1, 0x20, 0x17, 0xb4, 0xef, 0xab, 0xd3, 0x01, 0xa0, 0x9f,
0x21, 0xf3, 0x06, 0xb9, 0x54, 0xd2, 0x5e, 0x4b, 0x24, 0x66, 0x5a, 0xe2, 0x99, 0xc7, 0xfb, 0xed,
0x18, 0x14, 0xdd, 0xde, 0x58, 0x65, 0x92, 0x49, 0xa3, 0xf0, 0xf5, 0xaf, 0x42, 0xbc, 0xe1, 0x6a,
0xb1, 0x44, 0x3f, 0xa6, 0x08, 0x7e, 0x29, 0xf5, 0x13, 0xc9, 0x45, 0x99, 0x7f, 0x78, 0x73, 0x37,
0xf3, 0x2c, 0x24, 0xed, 0x9f, 0x16, 0x69, 0x84, 0xc8, 0xf6, 0x95, 0xcc, 0x21, 0x90, 0x29, 0xd8,
0xeb, 0xa4, 0x86, 0x20, 0x52, 0xc8, 0x1d, 0xab, 0x65, 0x75, 0xea, 0x51, 0x19, 0xd9, 0x4f, 0xc8,
0x8a, 0xf6, 0xea, 0xc5, 0xa7, 0x0a, 0x7a, 0x89, 0x4c, 0xc1, 0x99, 0x6b, 0x59, 0x9d, 0x46, 0xf7,
0xff, 0xc9, 0xb8, 0xd9, 0x38, 0xd8, 0xdd, 0x0f, 0xbb, 0xa7, 0xca, 0x38, 0x44, 0x0d, 0xad, 0xbb,
0x8c, 0x8c, 0x9f, 0x1c, 0xe6, 0x09, 0x38, 0xd5, 0xd2, 0xcf, 0x44, 0xb6, 0x43, 0x16, 0xe3, 0x21,
0xef, 0xeb, 0x46, 0xf3, 0x26, 0x71, 0x19, 0xda, 0x87, 0x64, 0x9d, 0x0b, 0x54, 0x54, 0x28, 0x4e,
0x15, 0xf4, 0x06, 0x90, 0x67, 0x1c, 0x91, 0x4b, 0xe1, 0x2c, 0xb4, 0xac, 0xce, 0xf2, 0xce, 0xa6,
0x77, 0xe3, 0x8c, 0xbc, 0xdd, 0x24, 0x01, 0xc4, 0x40, 0x8a, 0x23, 0xce, 0xa2, 0xb5, 0x29, 0x8b,
0xd7, 0x57, 0x0e, 0xed, 0x8f, 0x73, 0x64, 0x3d, 0x44, 0xb6, 0xf7, 0x27, 0x19, 0x48, 0xa1, 0x72,
0x9a, 0xa8, 0x5b, 0xc1, 0x57, 0xc9, 0x02, 0x4d, 0x33, 0x2e, 0x0c, 0x6f, 0x3d, 0x2a, 0x02, 0x7b,
0x93, 0x2c, 0xea, 0x21, 0xf4, 0x78, 0x6a, 0xb8, 0xe6, 0xbb, 0x64, 0x32, 0x6e, 0xd6, 0x34, 0xf1,
0xde, 0xf3, 0xa8, 0xa6, 0x53, 0x7b, 0xa9, 0x2e, 0xed, 0xd3, 0x18, 0xfa, 0x25, 0x61, 0x11, 0xd8,
0x4f, 0xc9, 0x12, 0x17, 0x5c, 0xf5, 0x32, 0x64, 0x86, 0xa8, 0xd1, 0x7d, 0xf0, 0x6b, 0xdc, 0x74,
0x40, 0x24, 0x32, 0xe5, 0x82, 0xf9, 0xc7, 0x28, 0x85, 0x17, 0xd1, 0x51, 0x08, 0x88, 0x94, 0x41,
0xb4, 0xa8, 0xd5, 0x21, 0x32, 0xfb, 0x98, 0x10, 0x53, 0x78, 0x34, 0x14, 0x29, 0x3a, 0xb5, 0x56,
0xb5, 0xb3, 0xbc, 0x73, 0xcf, 0x2b, 0x76, 0xc0, 0xd3, 0x3b, 0x70, 0x35, 0x8a, 0x40, 0x72, 0xd1,
0xdd, 0x3a, 0x1b, 0x37, 0x2b, 0x9f, 0xbe, 0x36, 0x3b, 0x8c, 0xab, 0xb7, 0xc3, 0xd8, 0x4b, 0x64,
0xe6, 0x97, 0x0b, 0x53, 0xbc, 0x1e, 0x61, 0xfa, 0xae, 0x5c, 0x06, 0x5d, 0x80, 0x51, 0x5d, 0xdb,
0xbf, 0xd4, 0xee, 0xed, 0x1f, 0x16, 0xb1, 0x43, 0x64, 0x2f, 0x4e, 0x20, 0x19, 0xce, 0x30, 0xa4,
0x0d, 0xb2, 0x94, 0x94, 0x9a, 0x72, 0x4e, 0x57, 0xb1, 0xed, 0x91, 0xaa, 0x46, 0xad, 0xce, 0x80,
0xaa, 0x85, 0x1a, 0x13, 0x41, 0x5c, 0x62, 0x2e, 0xfc, 0x03, 0x4c, 0x6d, 0x5f, 0x60, 0x7e, 0x2e,
0x30, 0x43, 0xce, 0x72, 0xfa, 0x97, 0x98, 0x33, 0x6d, 0xc4, 0x33, 0xb2, 0x9c, 0x15, 0xbd, 0xcc,
0xf1, 0xcf, 0xcf, 0x30, 0x13, 0x52, 0x16, 0x84, 0xc8, 0xda, 0x94, 0xac, 0x84, 0xc8, 0xde, 0x0c,
0x52, 0xaa, 0x60, 0xd7, 0xec, 0xe1, 0x6d, 0xff, 0xf4, 0x3e, 0xa9, 0x0b, 0x18, 0xf5, 0xa6, 0x37,
0x77, 0x49, 0xc0, 0xa8, 0x28, 0x9a, 0xc6, 0xa8, 0x5e, 0xc7, 0x68, 0x07, 0xe4, 0xbf, 0x10, 0x59,
0xd0, 0x07, 0x9a, 0xdf, 0xdd, 0xe1, 0x0e, 0x93, 0xee, 0xab, 0xb3, 0xef, 0x6e, 0xe5, 0x6c, 0xe2,
0x5a, 0xe7, 0x13, 0xd7, 0xfa, 0x36, 0x71, 0xad, 0x0f, 0x17, 0x6e, 0xe5, 0xfc, 0xc2, 0xad, 0x7c,
0xb9, 0x70, 0x2b, 0x87, 0x5b, 0x53, 0x27, 0x15, 0x48, 0xcc, 0x0e, 0xf4, 0x1d, 0xa5, 0x3f, 0xe5,
0xd4, 0x3f, 0x29, 0xdf, 0xd7, 0x6f, 0xac, 0xb8, 0x66, 0x2e, 0xab, 0xc7, 0xbf, 0x03, 0x00, 0x00,
0xff, 0xff, 0xa4, 0x16, 0x75, 0xf1, 0x3f, 0x05, 0x00, 0x00,
}
func (m *MsgStoreCode) Marshal() (dAtA []byte, err error) {

View File

@@ -1,5 +1,5 @@
syntax = "proto3";
package wasmd.x.wasmd.v1beta1;
package cosmwasm.wasm.v1beta1;
import "gogoproto/gogo.proto";

View File

@@ -264,11 +264,11 @@ func (m *ClearAdminProposal) XXX_DiscardUnknown() {
var xxx_messageInfo_ClearAdminProposal proto.InternalMessageInfo
func init() {
proto.RegisterType((*StoreCodeProposal)(nil), "wasmd.x.wasmd.v1beta1.StoreCodeProposal")
proto.RegisterType((*InstantiateContractProposal)(nil), "wasmd.x.wasmd.v1beta1.InstantiateContractProposal")
proto.RegisterType((*MigrateContractProposal)(nil), "wasmd.x.wasmd.v1beta1.MigrateContractProposal")
proto.RegisterType((*UpdateAdminProposal)(nil), "wasmd.x.wasmd.v1beta1.UpdateAdminProposal")
proto.RegisterType((*ClearAdminProposal)(nil), "wasmd.x.wasmd.v1beta1.ClearAdminProposal")
proto.RegisterType((*StoreCodeProposal)(nil), "cosmwasm.wasm.v1beta1.StoreCodeProposal")
proto.RegisterType((*InstantiateContractProposal)(nil), "cosmwasm.wasm.v1beta1.InstantiateContractProposal")
proto.RegisterType((*MigrateContractProposal)(nil), "cosmwasm.wasm.v1beta1.MigrateContractProposal")
proto.RegisterType((*UpdateAdminProposal)(nil), "cosmwasm.wasm.v1beta1.UpdateAdminProposal")
proto.RegisterType((*ClearAdminProposal)(nil), "cosmwasm.wasm.v1beta1.ClearAdminProposal")
}
func init() {
@@ -277,47 +277,47 @@ func init() {
var fileDescriptor_00b43267813130fb = []byte{
// 658 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0x3d, 0x6f, 0xd3, 0x40,
0x18, 0xc7, 0xe3, 0xbe, 0x38, 0xc9, 0x25, 0x42, 0xc5, 0xa4, 0xc5, 0x14, 0xe4, 0x04, 0x97, 0x21,
0x0b, 0x76, 0x5b, 0x24, 0x90, 0x90, 0x18, 0xe2, 0x20, 0xa4, 0x0e, 0x91, 0x2a, 0x57, 0x50, 0xa9,
0x8b, 0x75, 0xb6, 0xaf, 0xee, 0x15, 0xfb, 0xce, 0xf2, 0x5d, 0x48, 0xf3, 0x2d, 0xf8, 0x00, 0x7c,
0x80, 0x8a, 0x4f, 0xd2, 0xb1, 0x63, 0xa7, 0x40, 0x9d, 0x85, 0x99, 0x91, 0x09, 0xdd, 0xd9, 0x0d,
0xa9, 0x54, 0xa1, 0x4a, 0xbc, 0x2c, 0xb9, 0xfc, 0xf3, 0xfc, 0x9f, 0x17, 0xff, 0xf2, 0xf8, 0xc0,
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0x4d, 0x6f, 0xd3, 0x30,
0x18, 0xc7, 0x9b, 0xbd, 0xa4, 0xad, 0x5b, 0xa1, 0x11, 0xba, 0x11, 0x06, 0x4a, 0x4b, 0xc6, 0xa1,
0x17, 0x92, 0x6d, 0x48, 0x20, 0x21, 0x71, 0x68, 0x8a, 0x90, 0x76, 0xa8, 0x34, 0x65, 0x82, 0x49,
0xbb, 0x44, 0x4e, 0xe2, 0x65, 0x1e, 0x89, 0x1d, 0xc5, 0x2e, 0x5d, 0xbf, 0x05, 0x1f, 0x80, 0x0f,
0x30, 0xf1, 0x49, 0x76, 0xdc, 0x71, 0xa7, 0xc2, 0xd2, 0x0b, 0x67, 0x8e, 0x9c, 0x90, 0x9d, 0xac,
0x74, 0xd2, 0x84, 0x26, 0xf1, 0x72, 0xb1, 0xf3, 0xe4, 0xf9, 0x3f, 0x2f, 0xfe, 0xe5, 0x89, 0xc1,
0x93, 0x13, 0x7b, 0x04, 0x59, 0x62, 0x63, 0xc2, 0x51, 0x46, 0x60, 0x6c, 0xf3, 0x71, 0x8a, 0x98,
0x9d, 0x66, 0x34, 0xa5, 0x0c, 0xc6, 0x56, 0x9a, 0x51, 0x4e, 0xb5, 0x55, 0xe1, 0x09, 0xad, 0x13,
0xab, 0x38, 0x3f, 0x6c, 0xf9, 0x88, 0xc3, 0xad, 0xf5, 0x56, 0x44, 0x23, 0x2a, 0x1d, 0xb6, 0xf8,
0x56, 0x98, 0xd7, 0x8d, 0x80, 0xb2, 0x84, 0x32, 0xdb, 0x87, 0x0c, 0xd9, 0xa5, 0xd5, 0x0e, 0x28,
0x26, 0x65, 0xfc, 0xf1, 0xcd, 0x2d, 0xe5, 0x67, 0x61, 0x31, 0x4f, 0x17, 0xc0, 0xdd, 0x3d, 0x4e,
0x33, 0xd4, 0xa7, 0x21, 0xda, 0x2d, 0x67, 0xd1, 0x5a, 0x60, 0x99, 0x63, 0x1e, 0x23, 0x5d, 0xe9,
0x28, 0xdd, 0xba, 0x5b, 0x08, 0xad, 0x03, 0x1a, 0x21, 0x62, 0x41, 0x86, 0x53, 0x8e, 0x29, 0xd1,
0x17, 0x64, 0x6c, 0xfe, 0x27, 0x6d, 0x15, 0xa8, 0xd9, 0x90, 0x78, 0x90, 0xe9, 0x8b, 0x45, 0x62,
0x36, 0x24, 0x3d, 0xa6, 0x3d, 0x07, 0x77, 0xc4, 0x1c, 0x9e, 0x3f, 0xe6, 0xc8, 0x0b, 0x68, 0x88,
0xf4, 0xa5, 0x8e, 0xd2, 0x6d, 0x3a, 0x2b, 0xf9, 0xa4, 0xdd, 0xdc, 0xef, 0xed, 0x0d, 0x9c, 0x31,
0x97, 0x03, 0xb8, 0x4d, 0xe1, 0xbb, 0x52, 0xda, 0x1a, 0x50, 0x19, 0x1d, 0x66, 0x01, 0xd2, 0x97,
0x65, 0xb9, 0x52, 0x69, 0x3a, 0xa8, 0xfa, 0x43, 0x1c, 0x87, 0x28, 0xd3, 0x55, 0x19, 0xb8, 0x92,
0xda, 0x01, 0x58, 0xc3, 0x84, 0x71, 0x48, 0x38, 0x86, 0x1c, 0x79, 0x29, 0xca, 0x12, 0xcc, 0x98,
0x98, 0xb6, 0xda, 0x51, 0xba, 0x8d, 0xed, 0x0d, 0xeb, 0x46, 0xbe, 0x56, 0x2f, 0x08, 0x10, 0x63,
0x7d, 0x4a, 0x0e, 0x71, 0xe4, 0xae, 0xce, 0x95, 0xd8, 0x9d, 0x55, 0x30, 0xf3, 0x05, 0xf0, 0x70,
0xe7, 0x57, 0xa4, 0x4f, 0x09, 0xcf, 0x60, 0xc0, 0xff, 0x15, 0xb4, 0x16, 0x58, 0x86, 0x61, 0x82,
0x89, 0x64, 0x55, 0x77, 0x0b, 0xa1, 0x6d, 0x80, 0xaa, 0x00, 0xe8, 0xe1, 0x50, 0x32, 0x59, 0x72,
0x40, 0x3e, 0x69, 0xab, 0x82, 0xd6, 0xce, 0x6b, 0x57, 0x15, 0xa1, 0x9d, 0x50, 0xa4, 0xc6, 0xd0,
0x47, 0x71, 0x49, 0xa7, 0x10, 0xda, 0x0b, 0x50, 0xc3, 0x04, 0x73, 0x2f, 0x61, 0x91, 0xa4, 0xd1,
0x74, 0x1e, 0xfd, 0x98, 0xb4, 0x75, 0x44, 0x02, 0x1a, 0x62, 0x12, 0xd9, 0xc7, 0x8c, 0x12, 0xcb,
0x85, 0xa3, 0x01, 0x62, 0x0c, 0x46, 0xc8, 0xad, 0x0a, 0xf7, 0x80, 0x45, 0xda, 0x31, 0x00, 0x32,
0xf1, 0x70, 0x48, 0x42, 0xa6, 0xd7, 0x3a, 0x8b, 0xdd, 0xc6, 0xf6, 0x03, 0xab, 0xd8, 0x3d, 0x4b,
0xec, 0xde, 0x0c, 0x63, 0x9f, 0x62, 0xe2, 0x6c, 0x9e, 0x4d, 0xda, 0x95, 0xcf, 0x5f, 0xda, 0xdd,
0x08, 0xf3, 0xa3, 0xa1, 0x6f, 0x05, 0x34, 0xb1, 0xcb, 0x45, 0x2d, 0x8e, 0xa7, 0x2c, 0x7c, 0x5f,
0x2e, 0xa1, 0x48, 0x60, 0x6e, 0x5d, 0x94, 0x7f, 0x23, 0xaa, 0x9b, 0xdf, 0x14, 0x70, 0x7f, 0x80,
0xa3, 0xec, 0x3f, 0x00, 0x5e, 0x07, 0xb5, 0xa0, 0x6c, 0x51, 0x32, 0x9e, 0xe9, 0xdb, 0x61, 0x7e,
0x05, 0x1a, 0x49, 0x31, 0xaa, 0x64, 0xaa, 0xde, 0x82, 0x29, 0x28, 0x13, 0x06, 0x2c, 0x32, 0x3f,
0x29, 0xe0, 0xde, 0xdb, 0x34, 0x84, 0x1c, 0xf5, 0xc4, 0x5f, 0xfb, 0xc7, 0x8f, 0xb9, 0x05, 0xea,
0x04, 0x8d, 0xbc, 0x62, 0x69, 0xe4, 0x93, 0x3a, 0xad, 0xef, 0x93, 0xf6, 0xca, 0x18, 0x26, 0xf1,
0x4b, 0x73, 0x16, 0x32, 0xdd, 0x1a, 0x41, 0x23, 0xd9, 0xf2, 0x77, 0x08, 0xcc, 0x23, 0xa0, 0xf5,
0x63, 0x04, 0xb3, 0xbf, 0x33, 0xdc, 0x7c, 0xa7, 0xc5, 0xeb, 0x9d, 0x9c, 0x77, 0x67, 0x97, 0x46,
0xe5, 0xe2, 0xd2, 0xa8, 0x9c, 0xe6, 0x86, 0x72, 0x96, 0x1b, 0xca, 0x79, 0x6e, 0x28, 0x5f, 0x73,
0x43, 0xf9, 0x38, 0x35, 0x2a, 0xe7, 0x53, 0xa3, 0x72, 0x31, 0x35, 0x2a, 0x07, 0x9b, 0x73, 0xeb,
0xd4, 0xa7, 0x2c, 0xd9, 0x17, 0x37, 0x9b, 0x7c, 0x8b, 0xed, 0x93, 0xf2, 0xbc, 0x7e, 0xcf, 0xf9,
0xaa, 0xbc, 0xe2, 0x9e, 0xfd, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x68, 0x86, 0x6f, 0x52, 0x7a, 0x05,
0x9d, 0x66, 0x34, 0xa5, 0x0c, 0xc6, 0x56, 0x9a, 0x51, 0x4e, 0xb5, 0xd5, 0x80, 0xb2, 0x44, 0xe8,
0x2c, 0xb9, 0x7c, 0xd8, 0xf2, 0x11, 0x87, 0x5b, 0xeb, 0xad, 0x88, 0x46, 0x54, 0x2a, 0x6c, 0xf1,
0x54, 0x88, 0xd7, 0x0d, 0x21, 0xa6, 0xcc, 0xf6, 0x21, 0x43, 0x76, 0x29, 0xb5, 0x03, 0x8a, 0x49,
0xe9, 0x7f, 0x7c, 0x73, 0x49, 0xb9, 0x16, 0x12, 0xf3, 0x74, 0x01, 0xdc, 0xdd, 0xe3, 0x34, 0x43,
0x7d, 0x1a, 0xa2, 0xdd, 0xb2, 0x17, 0xad, 0x05, 0x96, 0x39, 0xe6, 0x31, 0xd2, 0x95, 0x8e, 0xd2,
0xad, 0xbb, 0x85, 0xa1, 0x75, 0x40, 0x23, 0x44, 0x2c, 0xc8, 0x70, 0xca, 0x31, 0x25, 0xfa, 0x82,
0xf4, 0xcd, 0xbf, 0xd2, 0x56, 0x81, 0x9a, 0x0d, 0x89, 0x07, 0x99, 0xbe, 0x58, 0x04, 0x66, 0x43,
0xd2, 0x63, 0xda, 0x73, 0x70, 0x47, 0xf4, 0xe1, 0xf9, 0x63, 0x8e, 0xbc, 0x80, 0x86, 0x48, 0x5f,
0xea, 0x28, 0xdd, 0xa6, 0xb3, 0x92, 0x4f, 0xda, 0xcd, 0xfd, 0xde, 0xde, 0xc0, 0x19, 0x73, 0xd9,
0x80, 0xdb, 0x14, 0xba, 0x2b, 0x4b, 0x5b, 0x03, 0x2a, 0xa3, 0xc3, 0x2c, 0x40, 0xfa, 0xb2, 0x4c,
0x57, 0x5a, 0x9a, 0x0e, 0xaa, 0xfe, 0x10, 0xc7, 0x21, 0xca, 0x74, 0x55, 0x3a, 0xae, 0x4c, 0xed,
0x00, 0xac, 0x61, 0xc2, 0x38, 0x24, 0x1c, 0x43, 0x8e, 0xbc, 0x14, 0x65, 0x09, 0x66, 0x4c, 0x74,
0x5b, 0xed, 0x28, 0xdd, 0xc6, 0xf6, 0x86, 0x75, 0x23, 0x5f, 0xab, 0x17, 0x04, 0x88, 0xb1, 0x3e,
0x25, 0x87, 0x38, 0x72, 0x57, 0xe7, 0x52, 0xec, 0xce, 0x32, 0x98, 0xf9, 0x02, 0x78, 0xb8, 0xf3,
0xcb, 0xd3, 0xa7, 0x84, 0x67, 0x30, 0xe0, 0xff, 0x0a, 0x5a, 0x0b, 0x2c, 0xc3, 0x30, 0xc1, 0x44,
0xb2, 0xaa, 0xbb, 0x85, 0xa1, 0x6d, 0x80, 0xaa, 0x00, 0xe8, 0xe1, 0x50, 0x32, 0x59, 0x72, 0x40,
0x3e, 0x69, 0xab, 0x82, 0xd6, 0xce, 0x6b, 0x57, 0x15, 0xae, 0x9d, 0x50, 0x84, 0xc6, 0xd0, 0x47,
0x71, 0x49, 0xa7, 0x30, 0xb4, 0x17, 0xa0, 0x86, 0x09, 0xe6, 0x5e, 0xc2, 0x22, 0x49, 0xa3, 0xe9,
0x3c, 0xfa, 0x31, 0x69, 0xeb, 0x88, 0x04, 0x34, 0xc4, 0x24, 0xb2, 0x8f, 0x19, 0x25, 0x96, 0x0b,
0x47, 0x03, 0xc4, 0x18, 0x8c, 0x90, 0x5b, 0x15, 0xea, 0x01, 0x8b, 0xb4, 0x63, 0x00, 0x64, 0xe0,
0xe1, 0x90, 0x84, 0x4c, 0xaf, 0x75, 0x16, 0xbb, 0x8d, 0xed, 0x07, 0x56, 0x31, 0x7b, 0x96, 0x98,
0xbd, 0x19, 0xc6, 0x3e, 0xc5, 0xc4, 0xd9, 0x3c, 0x9b, 0xb4, 0x2b, 0x9f, 0xbf, 0xb4, 0xbb, 0x11,
0xe6, 0x47, 0x43, 0xdf, 0x0a, 0x68, 0x62, 0x97, 0x83, 0x5a, 0x6c, 0x4f, 0x59, 0xf8, 0xbe, 0x1c,
0x42, 0x11, 0xc0, 0xdc, 0xba, 0x48, 0xff, 0x46, 0x64, 0x37, 0xbf, 0x29, 0xe0, 0xfe, 0x00, 0x47,
0xd9, 0x7f, 0x00, 0xbc, 0x0e, 0x6a, 0x41, 0x59, 0xa2, 0x64, 0x3c, 0xb3, 0x6f, 0x87, 0xf9, 0x15,
0x68, 0x24, 0x45, 0xab, 0x92, 0xa9, 0x7a, 0x0b, 0xa6, 0xa0, 0x0c, 0x18, 0xb0, 0xc8, 0xfc, 0xa4,
0x80, 0x7b, 0x6f, 0xd3, 0x10, 0x72, 0xd4, 0x13, 0x9f, 0xf6, 0x8f, 0x8f, 0xb9, 0x05, 0xea, 0x04,
0x8d, 0xbc, 0x62, 0x68, 0xe4, 0x49, 0x9d, 0xd6, 0xf7, 0x49, 0x7b, 0x65, 0x0c, 0x93, 0xf8, 0xa5,
0x39, 0x73, 0x99, 0x6e, 0x8d, 0xa0, 0x91, 0x2c, 0xf9, 0x3b, 0x04, 0xe6, 0x11, 0xd0, 0xfa, 0x31,
0x82, 0xd9, 0xdf, 0x69, 0x6e, 0xbe, 0xd2, 0xe2, 0xf5, 0x4a, 0xce, 0xbb, 0xb3, 0x4b, 0xa3, 0x72,
0x71, 0x69, 0x54, 0x4e, 0x73, 0x43, 0x39, 0xcb, 0x0d, 0xe5, 0x3c, 0x37, 0x94, 0xaf, 0xb9, 0xa1,
0x7c, 0x9c, 0x1a, 0x95, 0xf3, 0xa9, 0x51, 0xb9, 0x98, 0x1a, 0x95, 0x83, 0xcd, 0xb9, 0x71, 0xea,
0x53, 0x96, 0xec, 0x8b, 0x9b, 0x4d, 0xfc, 0xc4, 0xa1, 0x7d, 0x52, 0xee, 0xd7, 0xef, 0x39, 0x5f,
0x95, 0x57, 0xdc, 0xb3, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x07, 0xd1, 0x29, 0x31, 0x7a, 0x05,
0x00, 0x00,
}

View File

@@ -1,5 +1,5 @@
syntax = "proto3";
package wasmd.x.wasmd.v1beta1;
package cosmwasm.wasm.v1beta1;
import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";

View File

@@ -751,100 +751,100 @@ func (m *QueryCodesResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_QueryCodesResponse proto.InternalMessageInfo
func init() {
proto.RegisterType((*QueryContractInfoRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryContractInfoRequest")
proto.RegisterType((*QueryContractInfoResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryContractInfoResponse")
proto.RegisterType((*QueryContractHistoryRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryContractHistoryRequest")
proto.RegisterType((*QueryContractHistoryResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryContractHistoryResponse")
proto.RegisterType((*QueryContractsByCodeRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryContractsByCodeRequest")
proto.RegisterType((*ContractInfoWithAddress)(nil), "wasmd.x.wasmd.v1beta1.ContractInfoWithAddress")
proto.RegisterType((*QueryContractsByCodeResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryContractsByCodeResponse")
proto.RegisterType((*QueryAllContractStateRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryAllContractStateRequest")
proto.RegisterType((*QueryAllContractStateResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryAllContractStateResponse")
proto.RegisterType((*QueryRawContractStateRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryRawContractStateRequest")
proto.RegisterType((*QueryRawContractStateResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryRawContractStateResponse")
proto.RegisterType((*QuerySmartContractStateRequest)(nil), "wasmd.x.wasmd.v1beta1.QuerySmartContractStateRequest")
proto.RegisterType((*QuerySmartContractStateResponse)(nil), "wasmd.x.wasmd.v1beta1.QuerySmartContractStateResponse")
proto.RegisterType((*QueryCodeRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryCodeRequest")
proto.RegisterType((*CodeInfoResponse)(nil), "wasmd.x.wasmd.v1beta1.CodeInfoResponse")
proto.RegisterType((*QueryCodeResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryCodeResponse")
proto.RegisterType((*QueryCodesRequest)(nil), "wasmd.x.wasmd.v1beta1.QueryCodesRequest")
proto.RegisterType((*QueryCodesResponse)(nil), "wasmd.x.wasmd.v1beta1.QueryCodesResponse")
proto.RegisterType((*QueryContractInfoRequest)(nil), "cosmwasm.wasm.v1beta1.QueryContractInfoRequest")
proto.RegisterType((*QueryContractInfoResponse)(nil), "cosmwasm.wasm.v1beta1.QueryContractInfoResponse")
proto.RegisterType((*QueryContractHistoryRequest)(nil), "cosmwasm.wasm.v1beta1.QueryContractHistoryRequest")
proto.RegisterType((*QueryContractHistoryResponse)(nil), "cosmwasm.wasm.v1beta1.QueryContractHistoryResponse")
proto.RegisterType((*QueryContractsByCodeRequest)(nil), "cosmwasm.wasm.v1beta1.QueryContractsByCodeRequest")
proto.RegisterType((*ContractInfoWithAddress)(nil), "cosmwasm.wasm.v1beta1.ContractInfoWithAddress")
proto.RegisterType((*QueryContractsByCodeResponse)(nil), "cosmwasm.wasm.v1beta1.QueryContractsByCodeResponse")
proto.RegisterType((*QueryAllContractStateRequest)(nil), "cosmwasm.wasm.v1beta1.QueryAllContractStateRequest")
proto.RegisterType((*QueryAllContractStateResponse)(nil), "cosmwasm.wasm.v1beta1.QueryAllContractStateResponse")
proto.RegisterType((*QueryRawContractStateRequest)(nil), "cosmwasm.wasm.v1beta1.QueryRawContractStateRequest")
proto.RegisterType((*QueryRawContractStateResponse)(nil), "cosmwasm.wasm.v1beta1.QueryRawContractStateResponse")
proto.RegisterType((*QuerySmartContractStateRequest)(nil), "cosmwasm.wasm.v1beta1.QuerySmartContractStateRequest")
proto.RegisterType((*QuerySmartContractStateResponse)(nil), "cosmwasm.wasm.v1beta1.QuerySmartContractStateResponse")
proto.RegisterType((*QueryCodeRequest)(nil), "cosmwasm.wasm.v1beta1.QueryCodeRequest")
proto.RegisterType((*CodeInfoResponse)(nil), "cosmwasm.wasm.v1beta1.CodeInfoResponse")
proto.RegisterType((*QueryCodeResponse)(nil), "cosmwasm.wasm.v1beta1.QueryCodeResponse")
proto.RegisterType((*QueryCodesRequest)(nil), "cosmwasm.wasm.v1beta1.QueryCodesRequest")
proto.RegisterType((*QueryCodesResponse)(nil), "cosmwasm.wasm.v1beta1.QueryCodesResponse")
}
func init() { proto.RegisterFile("x/wasm/internal/types/query.proto", fileDescriptor_845473e9a3330642) }
var fileDescriptor_845473e9a3330642 = []byte{
// 1115 bytes of a gzipped FileDescriptorProto
// 1116 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0xcf, 0x6f, 0x1b, 0x45,
0x14, 0xc7, 0x3d, 0xad, 0xf3, 0xc3, 0xaf, 0x29, 0x84, 0x51, 0xa1, 0xc6, 0xb8, 0xeb, 0xb0, 0xa0,
0xd6, 0x2d, 0xd2, 0x6e, 0x7e, 0x15, 0x41, 0x39, 0xd5, 0x29, 0x90, 0x4a, 0x94, 0x1f, 0x1b, 0xa1,
0x08, 0x7a, 0x88, 0xc6, 0xbb, 0x53, 0x7b, 0x91, 0xbd, 0x93, 0xee, 0x4c, 0x48, 0xac, 0x28, 0x14,
0x71, 0xe1, 0x84, 0x40, 0xe2, 0xc8, 0x85, 0x03, 0x07, 0x54, 0xe0, 0xde, 0x23, 0x07, 0x0e, 0x39,
0x46, 0xe2, 0xc2, 0xc9, 0x02, 0x07, 0x21, 0x94, 0x3f, 0xa1, 0x27, 0xb4, 0xb3, 0xb3, 0xc9, 0xae,
0x93, 0xf5, 0x3a, 0xc8, 0x82, 0x4b, 0xb2, 0x6b, 0xbf, 0xf7, 0xe6, 0xf3, 0xbe, 0x6f, 0xe6, 0xbd,
0x31, 0x3c, 0xbf, 0x65, 0x6e, 0x12, 0xde, 0x36, 0x5d, 0x4f, 0x50, 0xdf, 0x23, 0x2d, 0x53, 0x74,
0xd6, 0x29, 0x37, 0xef, 0x6f, 0x50, 0xbf, 0x63, 0xac, 0xfb, 0x4c, 0x30, 0xfc, 0x74, 0x60, 0xe0,
0x18, 0x5b, 0x46, 0xf8, 0xff, 0xe3, 0xb9, 0x3a, 0x15, 0x64, 0xae, 0x74, 0xa1, 0xc1, 0x1a, 0x4c,
0x5a, 0x98, 0xc1, 0x53, 0x68, 0x5c, 0x4a, 0x89, 0x27, 0xff, 0x2a, 0x93, 0x72, 0x83, 0xb1, 0x46,
0x8b, 0x9a, 0x64, 0xdd, 0x35, 0x89, 0xe7, 0x31, 0x41, 0x84, 0xcb, 0xbc, 0xe8, 0xdb, 0x6b, 0x36,
0xe3, 0x6d, 0xc6, 0xcd, 0x3a, 0xe1, 0x34, 0xc4, 0x30, 0xd5, 0x8a, 0xe6, 0x3a, 0x69, 0xb8, 0x9e,
0x34, 0x0e, 0x6d, 0xf5, 0x45, 0x28, 0xbe, 0x17, 0x58, 0x2c, 0x31, 0x4f, 0xf8, 0xc4, 0x16, 0xb7,
0xbd, 0x7b, 0xcc, 0xa2, 0xf7, 0x37, 0x28, 0x17, 0xb8, 0x08, 0x13, 0xc4, 0x71, 0x7c, 0xca, 0x79,
0x11, 0xcd, 0xa0, 0x6a, 0xc1, 0x8a, 0x5e, 0xf5, 0x2f, 0x11, 0x3c, 0x7b, 0x82, 0x1b, 0x5f, 0x67,
0x1e, 0xa7, 0xe9, 0x7e, 0xd8, 0x82, 0xf3, 0xb6, 0xf2, 0x58, 0x73, 0xbd, 0x7b, 0xac, 0x78, 0x66,
0x06, 0x55, 0xcf, 0xcd, 0xbf, 0x60, 0x9c, 0xa8, 0x8f, 0x11, 0x8f, 0x5e, 0x9b, 0xdc, 0xeb, 0x56,
0xd0, 0x41, 0xb7, 0x92, 0xb3, 0xa6, 0xec, 0xd8, 0xe7, 0x37, 0xf2, 0x7f, 0x7f, 0x5b, 0x41, 0xfa,
0x03, 0x78, 0x2e, 0x01, 0xb4, 0xec, 0x72, 0xc1, 0xfc, 0x4e, 0x66, 0x2a, 0xf8, 0x0d, 0x80, 0x23,
0x51, 0x14, 0xcf, 0x65, 0x23, 0x54, 0xd0, 0x08, 0x14, 0x34, 0xc2, 0x42, 0x46, 0x4c, 0xef, 0x92,
0x06, 0x55, 0x51, 0xad, 0x98, 0xa7, 0xfe, 0x08, 0x41, 0xf9, 0x64, 0x02, 0xa5, 0xca, 0x3b, 0x30,
0x41, 0x3d, 0xe1, 0xbb, 0x34, 0x40, 0x38, 0x5b, 0x3d, 0x37, 0x6f, 0x66, 0x64, 0xbd, 0xc4, 0x1c,
0xaa, 0x82, 0xbc, 0xee, 0x09, 0xbf, 0x53, 0xcb, 0xef, 0x06, 0xd9, 0x47, 0x51, 0xf0, 0x9b, 0x27,
0x90, 0x5f, 0xc9, 0x24, 0x0f, 0x69, 0x12, 0xe8, 0x9f, 0xf4, 0x69, 0xc7, 0x6b, 0x9d, 0x60, 0xed,
0x48, 0xbb, 0x8b, 0x30, 0x61, 0x33, 0x87, 0xae, 0xb9, 0x8e, 0xd4, 0x2e, 0x6f, 0x8d, 0x07, 0xaf,
0xb7, 0x9d, 0x91, 0x49, 0xf7, 0x05, 0x82, 0x8b, 0xf1, 0x52, 0xaf, 0xba, 0xa2, 0x79, 0x53, 0x95,
0xe7, 0xff, 0xd8, 0x4b, 0xbf, 0xf4, 0x97, 0xf2, 0x50, 0x10, 0x55, 0xca, 0xbb, 0xf0, 0x44, 0x62,
0xe9, 0xa8, 0xa2, 0xc6, 0x10, 0x6b, 0xc7, 0x92, 0x53, 0x05, 0x3d, 0x1f, 0x47, 0x18, 0x61, 0x59,
0x3f, 0x8d, 0xd2, 0xb8, 0xd9, 0x6a, 0x45, 0x04, 0x2b, 0x82, 0x08, 0xfa, 0xdf, 0x1d, 0x8a, 0xef,
0x10, 0x5c, 0x4a, 0x41, 0x50, 0x52, 0xde, 0x80, 0xf1, 0x36, 0x73, 0x68, 0x2b, 0x92, 0xb0, 0x9c,
0x22, 0xe1, 0x9d, 0xc0, 0x48, 0x09, 0xa6, 0x3c, 0x46, 0xa7, 0xd4, 0xaa, 0x12, 0xca, 0x22, 0x9b,
0xa7, 0x14, 0xea, 0x12, 0x80, 0x5c, 0x63, 0xcd, 0x21, 0x82, 0x48, 0x84, 0x29, 0xab, 0x20, 0x3f,
0xb9, 0x45, 0x04, 0xd1, 0x17, 0x54, 0xfa, 0xc7, 0x03, 0xab, 0xf4, 0x31, 0xe4, 0xa5, 0x27, 0x92,
0x9e, 0xf2, 0x59, 0xff, 0x00, 0x34, 0xe9, 0xb4, 0xd2, 0x26, 0xbe, 0x18, 0x2d, 0xcf, 0x0a, 0x54,
0x52, 0x43, 0x2b, 0xa2, 0xd9, 0x38, 0x51, 0xad, 0xfc, 0xb8, 0x5b, 0x29, 0x52, 0xcf, 0x66, 0x8e,
0xeb, 0x35, 0xcc, 0x8f, 0x38, 0xf3, 0x0c, 0x8b, 0x6c, 0xde, 0xa1, 0x9c, 0x07, 0x5a, 0x86, 0xbc,
0x2f, 0xc1, 0xb4, 0x3a, 0x2d, 0xd9, 0x3d, 0x43, 0xff, 0x0b, 0xc1, 0x74, 0x60, 0x98, 0x18, 0x18,
0x57, 0xfb, 0xac, 0x6b, 0xd3, 0xbd, 0x6e, 0x65, 0x5c, 0x9a, 0xdd, 0x3a, 0xe8, 0x56, 0xce, 0xb8,
0xce, 0x61, 0xcf, 0x29, 0xc2, 0x84, 0xed, 0x53, 0x22, 0x98, 0x2f, 0xb3, 0x2b, 0x58, 0xd1, 0x2b,
0x7e, 0x1f, 0x0a, 0x01, 0xce, 0x5a, 0x93, 0xf0, 0x66, 0xf1, 0xac, 0xa4, 0x7f, 0xe5, 0x71, 0xb7,
0xb2, 0xd8, 0x70, 0x45, 0x73, 0xa3, 0x6e, 0xd8, 0xac, 0x6d, 0x0a, 0xea, 0x39, 0xd4, 0x6f, 0xbb,
0x9e, 0x88, 0x3f, 0xb6, 0xdc, 0x3a, 0x37, 0xeb, 0x1d, 0x41, 0xb9, 0xb1, 0x4c, 0xb7, 0x6a, 0xc1,
0x83, 0x35, 0x19, 0x84, 0x5a, 0x26, 0xbc, 0x89, 0x9f, 0x81, 0x71, 0xce, 0x36, 0x7c, 0x9b, 0x16,
0xf3, 0x72, 0x3d, 0xf5, 0x16, 0x80, 0xd4, 0x37, 0xdc, 0x96, 0x43, 0xfd, 0xe2, 0x58, 0x08, 0xa2,
0x5e, 0x55, 0x13, 0xf9, 0x1c, 0xc1, 0x53, 0x31, 0x59, 0x54, 0xa6, 0x6f, 0x43, 0x21, 0xcc, 0x34,
0x68, 0x58, 0x48, 0xed, 0xd8, 0xb4, 0xa6, 0x91, 0x54, 0x29, 0xd6, 0xb4, 0x26, 0x6d, 0xf5, 0x1d,
0x2e, 0xab, 0x6a, 0xc9, 0x4a, 0xd7, 0x26, 0x0f, 0xba, 0x15, 0xf9, 0x1e, 0x56, 0x46, 0x91, 0xdc,
0x8d, 0x81, 0xf0, 0xa8, 0x40, 0xc9, 0x13, 0x8e, 0xfe, 0xf5, 0x09, 0xff, 0x01, 0x01, 0x8e, 0x47,
0x57, 0x79, 0xbe, 0x05, 0x70, 0x98, 0x67, 0x74, 0xb4, 0x87, 0x4e, 0x34, 0x3c, 0xe5, 0x85, 0x28,
0xc9, 0xd1, 0x1d, 0xf4, 0xf9, 0x87, 0x00, 0x63, 0x92, 0x16, 0x7f, 0x83, 0x60, 0x2a, 0xde, 0x96,
0x71, 0xda, 0x34, 0x4e, 0xbb, 0x1d, 0x95, 0x66, 0x87, 0x77, 0x08, 0x49, 0xf4, 0xea, 0x67, 0xbf,
0xfe, 0xf9, 0xf5, 0x19, 0x1d, 0xcf, 0x84, 0xf7, 0xbb, 0xe8, 0x4e, 0x16, 0xb5, 0x7f, 0x73, 0x5b,
0x9d, 0xe2, 0x1d, 0xfc, 0x23, 0x82, 0x27, 0xfb, 0xee, 0x11, 0x78, 0x7e, 0x98, 0xf5, 0x92, 0xd7,
0x9e, 0xd2, 0xc2, 0xa9, 0x7c, 0x14, 0xe6, 0xac, 0xc4, 0xbc, 0x86, 0xab, 0x59, 0x98, 0x66, 0x53,
0xa1, 0x3d, 0x8c, 0xe1, 0xaa, 0x59, 0x39, 0x1c, 0x6e, 0xf2, 0xa6, 0x31, 0x1c, 0x6e, 0xdf, 0x30,
0xd6, 0x0d, 0x89, 0x5b, 0xc5, 0x97, 0xfb, 0x71, 0x1d, 0x6a, 0x6e, 0xab, 0xb6, 0xb2, 0x73, 0x48,
0xcf, 0xf1, 0x4f, 0x08, 0xa6, 0xfb, 0xc7, 0x11, 0x1e, 0xb8, 0x72, 0xca, 0xfc, 0x2c, 0x2d, 0x9e,
0xce, 0x29, 0x8b, 0xf7, 0x98, 0xbc, 0x5c, 0xa2, 0x3d, 0x42, 0x30, 0xdd, 0x3f, 0x3f, 0x06, 0xf3,
0xa6, 0x8c, 0xb1, 0xc1, 0xbc, 0x69, 0x23, 0x4a, 0x7f, 0x55, 0xf2, 0x2e, 0xe0, 0xb9, 0x4c, 0x5e,
0x9f, 0x6c, 0x9a, 0xdb, 0x47, 0xe3, 0x67, 0x07, 0xff, 0x8c, 0x00, 0x1f, 0x1f, 0x35, 0xf8, 0xfa,
0x20, 0x8e, 0xd4, 0xa9, 0x57, 0x7a, 0xf9, 0xb4, 0x6e, 0x2a, 0x81, 0xd7, 0x64, 0x02, 0xd7, 0xf1,
0x42, 0xb6, 0xe0, 0x41, 0x90, 0x64, 0x0a, 0x0f, 0x20, 0x2f, 0xb7, 0xf3, 0x95, 0xc1, 0x5b, 0xf3,
0x68, 0x0f, 0x57, 0xb3, 0x0d, 0x15, 0xd7, 0x8b, 0x92, 0x4b, 0xc3, 0xe5, 0x41, 0x1b, 0x17, 0x6f,
0xc1, 0x98, 0x6c, 0xad, 0x38, 0x33, 0x70, 0xd4, 0xdb, 0x4b, 0x57, 0x87, 0xb0, 0x54, 0x0c, 0x25,
0xc9, 0x70, 0x01, 0xe3, 0xe3, 0x0c, 0x35, 0x6b, 0xf7, 0x0f, 0x2d, 0xf7, 0x7d, 0x4f, 0xcb, 0xed,
0xf6, 0x34, 0xb4, 0xd7, 0xd3, 0xd0, 0xef, 0x3d, 0x0d, 0x7d, 0xb5, 0xaf, 0xe5, 0xf6, 0xf6, 0xb5,
0xdc, 0x6f, 0xfb, 0x5a, 0xee, 0xc3, 0xd9, 0xd8, 0x6c, 0x5d, 0x62, 0xbc, 0xbd, 0x1a, 0xc4, 0x90,
0x6b, 0x9a, 0x5b, 0xea, 0x7f, 0xf2, 0x47, 0x6c, 0x7d, 0x5c, 0xfe, 0xea, 0x5c, 0xf8, 0x27, 0x00,
0x00, 0xff, 0xff, 0xfa, 0x9f, 0xf4, 0xfa, 0x34, 0x0f, 0x00, 0x00,
0x14, 0xc7, 0x3d, 0xad, 0xf3, 0xc3, 0xd3, 0x14, 0xc2, 0xa8, 0x50, 0x63, 0xdc, 0x75, 0x58, 0x50,
0xeb, 0x16, 0x69, 0x37, 0x89, 0x53, 0x04, 0xe5, 0x54, 0xa7, 0x40, 0x2a, 0x51, 0x7e, 0x6c, 0x84,
0x22, 0xe8, 0x21, 0x1a, 0xef, 0x4e, 0xed, 0x45, 0xf6, 0x8e, 0xbb, 0x33, 0x26, 0xb1, 0xa2, 0x50,
0xc4, 0x85, 0x13, 0x02, 0x89, 0x23, 0x17, 0x0e, 0x1c, 0x50, 0x81, 0x7b, 0x8f, 0x1c, 0x38, 0xe4,
0x18, 0x89, 0x0b, 0x27, 0x0b, 0x1c, 0x84, 0x50, 0xfe, 0x84, 0x9e, 0xd0, 0xcc, 0xce, 0x26, 0xbb,
0x8e, 0xd7, 0xeb, 0x20, 0x0b, 0x2e, 0xc9, 0xae, 0xfd, 0xde, 0x9b, 0xcf, 0xfb, 0xbe, 0x99, 0xf7,
0xc6, 0xf0, 0xf9, 0x6d, 0x73, 0x0b, 0xb3, 0x96, 0xe9, 0x7a, 0x9c, 0xf8, 0x1e, 0x6e, 0x9a, 0xbc,
0xdb, 0x26, 0xcc, 0xbc, 0xdf, 0x21, 0x7e, 0xd7, 0x68, 0xfb, 0x94, 0x53, 0xf4, 0xb4, 0x4d, 0x59,
0x4b, 0x18, 0x19, 0xf2, 0xcf, 0xc7, 0x4b, 0x35, 0xc2, 0xf1, 0x52, 0xe1, 0x42, 0x9d, 0xd6, 0xa9,
0xb4, 0x30, 0xc5, 0x53, 0x60, 0x5c, 0x48, 0x88, 0x27, 0xff, 0x2a, 0x93, 0x62, 0x9d, 0xd2, 0x7a,
0x93, 0x98, 0xb8, 0xed, 0x9a, 0xd8, 0xf3, 0x28, 0xc7, 0xdc, 0xa5, 0x5e, 0xf8, 0xed, 0x35, 0xb1,
0x1a, 0x65, 0x66, 0x0d, 0x33, 0x12, 0x60, 0x98, 0x6a, 0x45, 0xb3, 0x8d, 0xeb, 0xae, 0x27, 0x8d,
0x03, 0x5b, 0x7d, 0x05, 0xe6, 0xdf, 0x13, 0x16, 0xab, 0xd4, 0xe3, 0x3e, 0xb6, 0xf9, 0x6d, 0xef,
0x1e, 0xb5, 0xc8, 0xfd, 0x0e, 0x61, 0x1c, 0xe5, 0xe1, 0x0c, 0x76, 0x1c, 0x9f, 0x30, 0x96, 0x07,
0x0b, 0xa0, 0x9c, 0xb3, 0xc2, 0x57, 0xfd, 0x4b, 0x00, 0x9f, 0x1d, 0xe2, 0xc6, 0xda, 0xd4, 0x63,
0x24, 0xd9, 0x0f, 0x59, 0xf0, 0xbc, 0xad, 0x3c, 0x36, 0x5d, 0xef, 0x1e, 0xcd, 0x9f, 0x59, 0x00,
0xe5, 0x73, 0xcb, 0x2f, 0x18, 0x43, 0xf5, 0x31, 0xa2, 0xd1, 0xab, 0xb3, 0xfb, 0xbd, 0x12, 0x38,
0xec, 0x95, 0x32, 0xd6, 0x9c, 0x1d, 0xf9, 0xfc, 0x46, 0xf6, 0xef, 0x6f, 0x4b, 0x40, 0x7f, 0x00,
0x9f, 0x8b, 0x01, 0xad, 0xb9, 0x8c, 0x53, 0xbf, 0x9b, 0x9a, 0x0a, 0x7a, 0x03, 0xc2, 0x63, 0x51,
0x14, 0xcf, 0x65, 0x23, 0x50, 0xd0, 0x10, 0x0a, 0x1a, 0x41, 0x21, 0x43, 0xa6, 0x77, 0x71, 0x9d,
0xa8, 0xa8, 0x56, 0xc4, 0x53, 0x7f, 0x04, 0x60, 0x71, 0x38, 0x81, 0x52, 0xe5, 0x1d, 0x38, 0x43,
0x3c, 0xee, 0xbb, 0x44, 0x20, 0x9c, 0x2d, 0x9f, 0x5b, 0x36, 0x53, 0xb2, 0x5e, 0xa5, 0x0e, 0x51,
0x41, 0x5e, 0xf7, 0xb8, 0xdf, 0xad, 0x66, 0xf7, 0x44, 0xf6, 0x61, 0x14, 0xf4, 0xe6, 0x10, 0xf2,
0x2b, 0xa9, 0xe4, 0x01, 0x4d, 0x0c, 0xfd, 0x93, 0x01, 0xed, 0x58, 0xb5, 0x2b, 0xd6, 0x0e, 0xb5,
0xbb, 0x08, 0x67, 0x6c, 0xea, 0x90, 0x4d, 0xd7, 0x91, 0xda, 0x65, 0xad, 0x69, 0xf1, 0x7a, 0xdb,
0x99, 0x98, 0x74, 0x5f, 0x00, 0x78, 0x31, 0x5a, 0xea, 0x0d, 0x97, 0x37, 0x6e, 0xaa, 0xf2, 0xfc,
0x1f, 0x7b, 0xe9, 0x97, 0xc1, 0x52, 0x1e, 0x09, 0xa2, 0x4a, 0x79, 0x17, 0x3e, 0x11, 0x5b, 0x3a,
0xac, 0xa8, 0x31, 0xc6, 0xda, 0x91, 0xe4, 0x54, 0x41, 0xcf, 0x47, 0x11, 0x26, 0x58, 0xd6, 0x4f,
0xc3, 0x34, 0x6e, 0x36, 0x9b, 0x21, 0xc1, 0x3a, 0xc7, 0x9c, 0xfc, 0x77, 0x87, 0xe2, 0x3b, 0x00,
0x2f, 0x25, 0x20, 0x28, 0x29, 0x6f, 0xc0, 0xe9, 0x16, 0x75, 0x48, 0x33, 0x94, 0xb0, 0x98, 0x20,
0xe1, 0x1d, 0x61, 0xa4, 0x04, 0x53, 0x1e, 0x93, 0x53, 0x6a, 0x43, 0x09, 0x65, 0xe1, 0xad, 0x53,
0x0a, 0x75, 0x09, 0x42, 0xb9, 0xc6, 0xa6, 0x83, 0x39, 0x96, 0x08, 0x73, 0x56, 0x4e, 0x7e, 0x72,
0x0b, 0x73, 0xac, 0x57, 0x54, 0xfa, 0x27, 0x03, 0xab, 0xf4, 0x11, 0xcc, 0x4a, 0x4f, 0x20, 0x3d,
0xe5, 0xb3, 0xfe, 0x01, 0xd4, 0xa4, 0xd3, 0x7a, 0x0b, 0xfb, 0x7c, 0xb2, 0x3c, 0xeb, 0xb0, 0x94,
0x18, 0x5a, 0x11, 0x2d, 0x46, 0x89, 0xaa, 0xc5, 0xc7, 0xbd, 0x52, 0x9e, 0x78, 0x36, 0x75, 0x5c,
0xaf, 0x6e, 0x7e, 0xc4, 0xa8, 0x67, 0x58, 0x78, 0xeb, 0x0e, 0x61, 0x4c, 0x68, 0x19, 0xf0, 0xbe,
0x04, 0xe7, 0xd5, 0x69, 0x49, 0xef, 0x19, 0xfa, 0x5f, 0x00, 0xce, 0x0b, 0xc3, 0xd8, 0xc0, 0xb8,
0x3a, 0x60, 0x5d, 0x9d, 0xef, 0xf7, 0x4a, 0xd3, 0xd2, 0xec, 0xd6, 0x61, 0xaf, 0x74, 0xc6, 0x75,
0x8e, 0x7a, 0x4e, 0x1e, 0xce, 0xd8, 0x3e, 0xc1, 0x9c, 0xfa, 0x32, 0xbb, 0x9c, 0x15, 0xbe, 0xa2,
0xf7, 0x61, 0x4e, 0xe0, 0x6c, 0x36, 0x30, 0x6b, 0xe4, 0xcf, 0x4a, 0xfa, 0x57, 0x1e, 0xf7, 0x4a,
0x2b, 0x75, 0x97, 0x37, 0x3a, 0x35, 0xc3, 0xa6, 0x2d, 0x93, 0x13, 0xcf, 0x21, 0x7e, 0xcb, 0xf5,
0x78, 0xf4, 0xb1, 0xe9, 0xd6, 0x98, 0x59, 0xeb, 0x72, 0xc2, 0x8c, 0x35, 0xb2, 0x5d, 0x15, 0x0f,
0xd6, 0xac, 0x08, 0xb5, 0x86, 0x59, 0x03, 0x3d, 0x03, 0xa7, 0x19, 0xed, 0xf8, 0x36, 0xc9, 0x67,
0xe5, 0x7a, 0xea, 0x4d, 0x80, 0xd4, 0x3a, 0x6e, 0xd3, 0x21, 0x7e, 0x7e, 0x2a, 0x00, 0x51, 0xaf,
0xaa, 0x89, 0x7c, 0x0e, 0xe0, 0x53, 0x11, 0x59, 0x54, 0xa6, 0x6f, 0xc3, 0x5c, 0x90, 0xa9, 0x68,
0x58, 0x20, 0xb2, 0x63, 0x87, 0x35, 0x8d, 0xb8, 0x4a, 0x91, 0xa6, 0x35, 0x6b, 0xab, 0xef, 0x50,
0x51, 0x55, 0x4b, 0x56, 0xba, 0x3a, 0x7b, 0xd8, 0x2b, 0xc9, 0xf7, 0xa0, 0x32, 0x8a, 0xe4, 0x6e,
0x04, 0x84, 0x85, 0x05, 0x8a, 0x9f, 0x70, 0xf0, 0xaf, 0x4f, 0xf8, 0x0f, 0x00, 0xa2, 0x68, 0x74,
0x95, 0xe7, 0x5b, 0x10, 0x1e, 0xe5, 0x19, 0x1e, 0xed, 0xb1, 0x13, 0x0d, 0x4e, 0x79, 0x2e, 0x4c,
0x72, 0x72, 0x07, 0x7d, 0xf9, 0x21, 0x84, 0x53, 0x92, 0x16, 0x7d, 0x03, 0xe0, 0x5c, 0xb4, 0x2d,
0xa3, 0xa4, 0x69, 0x9c, 0x74, 0x3b, 0x2a, 0x2c, 0x8e, 0xef, 0x10, 0x90, 0xe8, 0xe5, 0xcf, 0x7e,
0xfd, 0xf3, 0xeb, 0x33, 0x3a, 0x5a, 0x08, 0xee, 0x77, 0xe1, 0x9d, 0x2c, 0x6c, 0xff, 0xe6, 0x8e,
0x3a, 0xc5, 0xbb, 0xe8, 0x47, 0x00, 0x9f, 0x1c, 0xb8, 0x47, 0xa0, 0xe5, 0x71, 0xd6, 0x8b, 0x5f,
0x7b, 0x0a, 0x95, 0x53, 0xf9, 0x28, 0xcc, 0x45, 0x89, 0x79, 0x0d, 0x95, 0xd3, 0x30, 0xcd, 0x86,
0x42, 0x7b, 0x18, 0xc1, 0x55, 0xb3, 0x72, 0x3c, 0xdc, 0xf8, 0x4d, 0x63, 0x3c, 0xdc, 0x81, 0x61,
0xac, 0x1b, 0x12, 0xb7, 0x8c, 0x2e, 0x0f, 0xe2, 0x3a, 0xc4, 0xdc, 0x51, 0x6d, 0x65, 0xf7, 0x88,
0x9e, 0xa1, 0x9f, 0x00, 0x9c, 0x1f, 0x1c, 0x47, 0x68, 0xe4, 0xca, 0x09, 0xf3, 0xb3, 0xb0, 0x72,
0x3a, 0xa7, 0x34, 0xde, 0x13, 0xf2, 0x32, 0x89, 0xf6, 0x08, 0xc0, 0xf9, 0xc1, 0xf9, 0x31, 0x9a,
0x37, 0x61, 0x8c, 0x8d, 0xe6, 0x4d, 0x1a, 0x51, 0xfa, 0xab, 0x92, 0xb7, 0x82, 0x96, 0x52, 0x79,
0x7d, 0xbc, 0x65, 0xee, 0x1c, 0x8f, 0x9f, 0x5d, 0xf4, 0x33, 0x80, 0xe8, 0xe4, 0xa8, 0x41, 0xd7,
0x47, 0x71, 0x24, 0x4e, 0xbd, 0xc2, 0xcb, 0xa7, 0x75, 0x53, 0x09, 0xbc, 0x26, 0x13, 0xb8, 0x8e,
0x2a, 0xe9, 0x82, 0x8b, 0x20, 0xf1, 0x14, 0x1e, 0xc0, 0xac, 0xdc, 0xce, 0x57, 0x46, 0x6f, 0xcd,
0xe3, 0x3d, 0x5c, 0x4e, 0x37, 0x54, 0x5c, 0x2f, 0x4a, 0x2e, 0x0d, 0x15, 0x47, 0x6d, 0x5c, 0xb4,
0x0d, 0xa7, 0x64, 0x6b, 0x45, 0xa9, 0x81, 0xc3, 0xde, 0x5e, 0xb8, 0x3a, 0x86, 0xa5, 0x62, 0x28,
0x48, 0x86, 0x0b, 0x08, 0x9d, 0x64, 0xa8, 0x5a, 0x7b, 0x7f, 0x68, 0x99, 0xef, 0xfb, 0x5a, 0x66,
0xaf, 0xaf, 0x81, 0xfd, 0xbe, 0x06, 0x7e, 0xef, 0x6b, 0xe0, 0xab, 0x03, 0x2d, 0xb3, 0x7f, 0xa0,
0x65, 0x7e, 0x3b, 0xd0, 0x32, 0x1f, 0x2e, 0x46, 0x66, 0xeb, 0x2a, 0x65, 0xad, 0x0d, 0x11, 0x43,
0x04, 0x72, 0xcc, 0x6d, 0xf5, 0x3f, 0xfe, 0x23, 0xb6, 0x36, 0x2d, 0x7f, 0x75, 0x56, 0xfe, 0x09,
0x00, 0x00, 0xff, 0xff, 0x55, 0xaf, 0xd8, 0x8c, 0x34, 0x0f, 0x00, 0x00,
}
func (this *QueryContractInfoResponse) Equal(that interface{}) bool {
@@ -1005,7 +1005,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient {
func (c *queryClient) ContractInfo(ctx context.Context, in *QueryContractInfoRequest, opts ...grpc.CallOption) (*QueryContractInfoResponse, error) {
out := new(QueryContractInfoResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/ContractInfo", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/ContractInfo", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1014,7 +1014,7 @@ func (c *queryClient) ContractInfo(ctx context.Context, in *QueryContractInfoReq
func (c *queryClient) ContractHistory(ctx context.Context, in *QueryContractHistoryRequest, opts ...grpc.CallOption) (*QueryContractHistoryResponse, error) {
out := new(QueryContractHistoryResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/ContractHistory", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/ContractHistory", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1023,7 +1023,7 @@ func (c *queryClient) ContractHistory(ctx context.Context, in *QueryContractHist
func (c *queryClient) ContractsByCode(ctx context.Context, in *QueryContractsByCodeRequest, opts ...grpc.CallOption) (*QueryContractsByCodeResponse, error) {
out := new(QueryContractsByCodeResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/ContractsByCode", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/ContractsByCode", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1032,7 +1032,7 @@ func (c *queryClient) ContractsByCode(ctx context.Context, in *QueryContractsByC
func (c *queryClient) AllContractState(ctx context.Context, in *QueryAllContractStateRequest, opts ...grpc.CallOption) (*QueryAllContractStateResponse, error) {
out := new(QueryAllContractStateResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/AllContractState", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/AllContractState", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1041,7 +1041,7 @@ func (c *queryClient) AllContractState(ctx context.Context, in *QueryAllContract
func (c *queryClient) RawContractState(ctx context.Context, in *QueryRawContractStateRequest, opts ...grpc.CallOption) (*QueryRawContractStateResponse, error) {
out := new(QueryRawContractStateResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/RawContractState", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/RawContractState", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1050,7 +1050,7 @@ func (c *queryClient) RawContractState(ctx context.Context, in *QueryRawContract
func (c *queryClient) SmartContractState(ctx context.Context, in *QuerySmartContractStateRequest, opts ...grpc.CallOption) (*QuerySmartContractStateResponse, error) {
out := new(QuerySmartContractStateResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/SmartContractState", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/SmartContractState", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1059,7 +1059,7 @@ func (c *queryClient) SmartContractState(ctx context.Context, in *QuerySmartCont
func (c *queryClient) Code(ctx context.Context, in *QueryCodeRequest, opts ...grpc.CallOption) (*QueryCodeResponse, error) {
out := new(QueryCodeResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/Code", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/Code", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1068,7 +1068,7 @@ func (c *queryClient) Code(ctx context.Context, in *QueryCodeRequest, opts ...gr
func (c *queryClient) Codes(ctx context.Context, in *QueryCodesRequest, opts ...grpc.CallOption) (*QueryCodesResponse, error) {
out := new(QueryCodesResponse)
err := c.cc.Invoke(ctx, "/wasmd.x.wasmd.v1beta1.Query/Codes", in, out, opts...)
err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1beta1.Query/Codes", in, out, opts...)
if err != nil {
return nil, err
}
@@ -1138,7 +1138,7 @@ func _Query_ContractInfo_Handler(srv interface{}, ctx context.Context, dec func(
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/ContractInfo",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/ContractInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).ContractInfo(ctx, req.(*QueryContractInfoRequest))
@@ -1156,7 +1156,7 @@ func _Query_ContractHistory_Handler(srv interface{}, ctx context.Context, dec fu
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/ContractHistory",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/ContractHistory",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).ContractHistory(ctx, req.(*QueryContractHistoryRequest))
@@ -1174,7 +1174,7 @@ func _Query_ContractsByCode_Handler(srv interface{}, ctx context.Context, dec fu
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/ContractsByCode",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/ContractsByCode",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).ContractsByCode(ctx, req.(*QueryContractsByCodeRequest))
@@ -1192,7 +1192,7 @@ func _Query_AllContractState_Handler(srv interface{}, ctx context.Context, dec f
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/AllContractState",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/AllContractState",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).AllContractState(ctx, req.(*QueryAllContractStateRequest))
@@ -1210,7 +1210,7 @@ func _Query_RawContractState_Handler(srv interface{}, ctx context.Context, dec f
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/RawContractState",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/RawContractState",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).RawContractState(ctx, req.(*QueryRawContractStateRequest))
@@ -1228,7 +1228,7 @@ func _Query_SmartContractState_Handler(srv interface{}, ctx context.Context, dec
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/SmartContractState",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/SmartContractState",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).SmartContractState(ctx, req.(*QuerySmartContractStateRequest))
@@ -1246,7 +1246,7 @@ func _Query_Code_Handler(srv interface{}, ctx context.Context, dec func(interfac
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/Code",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/Code",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).Code(ctx, req.(*QueryCodeRequest))
@@ -1264,7 +1264,7 @@ func _Query_Codes_Handler(srv interface{}, ctx context.Context, dec func(interfa
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/wasmd.x.wasmd.v1beta1.Query/Codes",
FullMethod: "/cosmwasm.wasm.v1beta1.Query/Codes",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(QueryServer).Codes(ctx, req.(*QueryCodesRequest))
@@ -1273,7 +1273,7 @@ func _Query_Codes_Handler(srv interface{}, ctx context.Context, dec func(interfa
}
var _Query_serviceDesc = grpc.ServiceDesc{
ServiceName: "wasmd.x.wasmd.v1beta1.Query",
ServiceName: "cosmwasm.wasm.v1beta1.Query",
HandlerType: (*QueryServer)(nil),
Methods: []grpc.MethodDesc{
{

View File

@@ -1,5 +1,5 @@
syntax = "proto3";
package wasmd.x.wasmd.v1beta1;
package cosmwasm.wasm.v1beta1;
import "gogoproto/gogo.proto";
import "x/wasm/internal/types/types.proto";

View File

@@ -96,7 +96,7 @@ func (ContractCodeHistoryOperationType) EnumDescriptor() ([]byte, []int) {
// AccessTypeParam
type AccessTypeParam struct {
Value AccessType `protobuf:"varint,1,opt,name=value,proto3,enum=wasmd.x.wasmd.v1beta1.AccessType" json:"value,omitempty" yaml:"value"`
Value AccessType `protobuf:"varint,1,opt,name=value,proto3,enum=cosmwasm.wasm.v1beta1.AccessType" json:"value,omitempty" yaml:"value"`
}
func (m *AccessTypeParam) Reset() { *m = AccessTypeParam{} }
@@ -134,7 +134,7 @@ var xxx_messageInfo_AccessTypeParam proto.InternalMessageInfo
// AccessConfig access control type.
type AccessConfig struct {
Permission AccessType `protobuf:"varint,1,opt,name=permission,proto3,enum=wasmd.x.wasmd.v1beta1.AccessType" json:"permission,omitempty" yaml:"permission"`
Permission AccessType `protobuf:"varint,1,opt,name=permission,proto3,enum=cosmwasm.wasm.v1beta1.AccessType" json:"permission,omitempty" yaml:"permission"`
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty" yaml:"address"`
}
@@ -174,7 +174,7 @@ var xxx_messageInfo_AccessConfig proto.InternalMessageInfo
// Params defines the set of wasm parameters.
type Params struct {
CodeUploadAccess AccessConfig `protobuf:"bytes,1,opt,name=code_upload_access,json=codeUploadAccess,proto3" json:"code_upload_access" yaml:"code_upload_access"`
InstantiateDefaultPermission AccessType `protobuf:"varint,2,opt,name=instantiate_default_permission,json=instantiateDefaultPermission,proto3,enum=wasmd.x.wasmd.v1beta1.AccessType" json:"instantiate_default_permission,omitempty" yaml:"instantiate_default_permission"`
InstantiateDefaultPermission AccessType `protobuf:"varint,2,opt,name=instantiate_default_permission,json=instantiateDefaultPermission,proto3,enum=cosmwasm.wasm.v1beta1.AccessType" json:"instantiate_default_permission,omitempty" yaml:"instantiate_default_permission"`
MaxWasmCodeSize uint64 `protobuf:"varint,3,opt,name=max_wasm_code_size,json=maxWasmCodeSize,proto3" json:"max_wasm_code_size,omitempty" yaml:"max_wasm_code_size"`
}
@@ -307,7 +307,7 @@ var xxx_messageInfo_ContractInfo proto.InternalMessageInfo
// ContractCodeHistoryEntry metadata to a contract.
type ContractCodeHistoryEntry struct {
Operation ContractCodeHistoryOperationType `protobuf:"varint,1,opt,name=operation,proto3,enum=wasmd.x.wasmd.v1beta1.ContractCodeHistoryOperationType" json:"operation,omitempty"`
Operation ContractCodeHistoryOperationType `protobuf:"varint,1,opt,name=operation,proto3,enum=cosmwasm.wasm.v1beta1.ContractCodeHistoryOperationType" json:"operation,omitempty"`
// CodeID is the reference to the stored WASM code
CodeID uint64 `protobuf:"varint,2,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
// Updated Tx position when the operation was executed.
@@ -431,91 +431,91 @@ func (m *Model) XXX_DiscardUnknown() {
var xxx_messageInfo_Model proto.InternalMessageInfo
func init() {
proto.RegisterEnum("wasmd.x.wasmd.v1beta1.AccessType", AccessType_name, AccessType_value)
proto.RegisterEnum("wasmd.x.wasmd.v1beta1.ContractCodeHistoryOperationType", ContractCodeHistoryOperationType_name, ContractCodeHistoryOperationType_value)
proto.RegisterType((*AccessTypeParam)(nil), "wasmd.x.wasmd.v1beta1.AccessTypeParam")
proto.RegisterType((*AccessConfig)(nil), "wasmd.x.wasmd.v1beta1.AccessConfig")
proto.RegisterType((*Params)(nil), "wasmd.x.wasmd.v1beta1.Params")
proto.RegisterType((*CodeInfo)(nil), "wasmd.x.wasmd.v1beta1.CodeInfo")
proto.RegisterType((*ContractInfo)(nil), "wasmd.x.wasmd.v1beta1.ContractInfo")
proto.RegisterType((*ContractCodeHistoryEntry)(nil), "wasmd.x.wasmd.v1beta1.ContractCodeHistoryEntry")
proto.RegisterType((*AbsoluteTxPosition)(nil), "wasmd.x.wasmd.v1beta1.AbsoluteTxPosition")
proto.RegisterType((*Model)(nil), "wasmd.x.wasmd.v1beta1.Model")
proto.RegisterEnum("cosmwasm.wasm.v1beta1.AccessType", AccessType_name, AccessType_value)
proto.RegisterEnum("cosmwasm.wasm.v1beta1.ContractCodeHistoryOperationType", ContractCodeHistoryOperationType_name, ContractCodeHistoryOperationType_value)
proto.RegisterType((*AccessTypeParam)(nil), "cosmwasm.wasm.v1beta1.AccessTypeParam")
proto.RegisterType((*AccessConfig)(nil), "cosmwasm.wasm.v1beta1.AccessConfig")
proto.RegisterType((*Params)(nil), "cosmwasm.wasm.v1beta1.Params")
proto.RegisterType((*CodeInfo)(nil), "cosmwasm.wasm.v1beta1.CodeInfo")
proto.RegisterType((*ContractInfo)(nil), "cosmwasm.wasm.v1beta1.ContractInfo")
proto.RegisterType((*ContractCodeHistoryEntry)(nil), "cosmwasm.wasm.v1beta1.ContractCodeHistoryEntry")
proto.RegisterType((*AbsoluteTxPosition)(nil), "cosmwasm.wasm.v1beta1.AbsoluteTxPosition")
proto.RegisterType((*Model)(nil), "cosmwasm.wasm.v1beta1.Model")
}
func init() { proto.RegisterFile("x/wasm/internal/types/types.proto", fileDescriptor_45de2b3fc8aff6aa) }
var fileDescriptor_45de2b3fc8aff6aa = []byte{
// 1097 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xcf, 0x6f, 0x1b, 0xc5,
0x17, 0xf7, 0xda, 0xce, 0xaf, 0xa9, 0xd5, 0xba, 0xf3, 0x6d, 0xbe, 0x75, 0x4d, 0xb1, 0x9d, 0x2d,
0x88, 0xa4, 0x8d, 0xec, 0x36, 0x20, 0x8a, 0x72, 0xb3, 0xd7, 0x4b, 0xb2, 0x15, 0xb1, 0xad, 0xb1,
0x43, 0x1b, 0x24, 0xb4, 0x1a, 0x7b, 0x27, 0xf6, 0xd0, 0xdd, 0x1d, 0x6b, 0x67, 0x9c, 0xda, 0xfd,
0x0b, 0x90, 0xb9, 0x20, 0x4e, 0x1c, 0xb0, 0x84, 0x04, 0x42, 0xfd, 0x43, 0x38, 0xe4, 0x82, 0xd4,
0x23, 0x27, 0x0b, 0x12, 0x21, 0xc1, 0x35, 0xc7, 0x9e, 0xd0, 0xee, 0x38, 0xf2, 0x42, 0x7e, 0x99,
0x8b, 0x77, 0xdf, 0x9b, 0xf7, 0xf9, 0xbc, 0xf9, 0xbc, 0xf7, 0x66, 0x3d, 0x60, 0xa5, 0x5f, 0x78,
0x81, 0xb9, 0x53, 0xa0, 0xae, 0x20, 0x9e, 0x8b, 0xed, 0x82, 0x18, 0x74, 0x09, 0x97, 0xbf, 0xf9,
0xae, 0xc7, 0x04, 0x83, 0xcb, 0x7e, 0x80, 0x95, 0xef, 0xe7, 0xe5, 0xf3, 0xe0, 0x51, 0x93, 0x08,
0xfc, 0x28, 0x7d, 0xab, 0xcd, 0xda, 0x2c, 0x88, 0x28, 0xf8, 0x6f, 0x32, 0x58, 0x6d, 0x82, 0x1b,
0xc5, 0x56, 0x8b, 0x70, 0xde, 0x18, 0x74, 0x49, 0x0d, 0x7b, 0xd8, 0x81, 0x06, 0x98, 0x3b, 0xc0,
0x76, 0x8f, 0xa4, 0x94, 0x9c, 0xb2, 0x7a, 0x7d, 0x63, 0x25, 0x7f, 0x2e, 0x5f, 0x7e, 0x0a, 0x2b,
0x25, 0x4f, 0xc6, 0xd9, 0xc4, 0x00, 0x3b, 0xf6, 0xa6, 0x1a, 0x20, 0x55, 0x24, 0x19, 0x36, 0xe3,
0xdf, 0x7e, 0x9f, 0x55, 0xd4, 0xef, 0x14, 0x90, 0x90, 0xd1, 0x1a, 0x73, 0xf7, 0x69, 0x1b, 0x3e,
0x03, 0xa0, 0x4b, 0x3c, 0x87, 0x72, 0x4e, 0x99, 0x3b, 0x7b, 0x9a, 0xe5, 0x93, 0x71, 0xf6, 0xa6,
0x4c, 0x33, 0x85, 0xab, 0x28, 0xc4, 0x05, 0xd7, 0xc1, 0x02, 0xb6, 0x2c, 0x8f, 0x70, 0x9e, 0x8a,
0xe6, 0x94, 0xd5, 0xa5, 0x12, 0x3c, 0x19, 0x67, 0xaf, 0x4b, 0xcc, 0x64, 0x41, 0x45, 0xa7, 0x21,
0x93, 0xed, 0xfd, 0x11, 0x05, 0xf3, 0x81, 0x72, 0x0e, 0x05, 0x80, 0x2d, 0x66, 0x11, 0xb3, 0xd7,
0xb5, 0x19, 0xb6, 0x4c, 0x1c, 0xe4, 0x0e, 0x36, 0x78, 0x6d, 0xe3, 0xde, 0xa5, 0x1b, 0x94, 0xca,
0x4a, 0x2b, 0x87, 0xe3, 0x6c, 0xe4, 0x64, 0x9c, 0xbd, 0x23, 0x53, 0x9e, 0x25, 0x53, 0x51, 0xd2,
0x77, 0xee, 0x06, 0x3e, 0x09, 0x85, 0xdf, 0x28, 0x20, 0x43, 0x5d, 0x2e, 0xb0, 0x2b, 0x28, 0x16,
0xc4, 0xb4, 0xc8, 0x3e, 0xee, 0xd9, 0xc2, 0x0c, 0xd5, 0x28, 0x3a, 0x6b, 0x8d, 0xd6, 0x4e, 0xc6,
0xd9, 0x77, 0x65, 0xf2, 0xcb, 0x29, 0x55, 0x74, 0x37, 0x14, 0x50, 0x96, 0xeb, 0xb5, 0x69, 0x25,
0x9f, 0x00, 0xe8, 0xe0, 0xbe, 0xe9, 0x27, 0x32, 0x03, 0x19, 0x9c, 0xbe, 0x24, 0xa9, 0x58, 0x4e,
0x59, 0x8d, 0x97, 0xde, 0x9e, 0x2a, 0x3c, 0x1b, 0xa3, 0xa2, 0x1b, 0x0e, 0xee, 0x3f, 0xc5, 0xdc,
0xd1, 0x98, 0x45, 0xea, 0xf4, 0xa5, 0x1c, 0x83, 0x88, 0xfa, 0x8b, 0x02, 0x16, 0x7d, 0x97, 0xe1,
0xee, 0x33, 0xf8, 0x16, 0x58, 0x0a, 0x10, 0x1d, 0xcc, 0x3b, 0x41, 0x81, 0x13, 0x68, 0xd1, 0x77,
0x6c, 0x63, 0xde, 0x81, 0x29, 0xb0, 0xd0, 0xf2, 0x08, 0x16, 0xcc, 0x93, 0x5d, 0x44, 0xa7, 0x26,
0xfc, 0x3f, 0x98, 0xe7, 0xac, 0xe7, 0xb5, 0xe4, 0x4e, 0x96, 0xd0, 0xc4, 0xf2, 0x11, 0xcd, 0x1e,
0xb5, 0x2d, 0xe2, 0xa5, 0xe2, 0x12, 0x31, 0x31, 0xe1, 0x33, 0x00, 0xc3, 0x85, 0x68, 0x05, 0x7d,
0x4a, 0xcd, 0xcd, 0xde, 0xd2, 0xb8, 0xdf, 0x52, 0x74, 0x33, 0x44, 0x22, 0x17, 0xd4, 0x9f, 0x15,
0x90, 0xd0, 0x98, 0x2b, 0x3c, 0xdc, 0x12, 0x81, 0xa6, 0x7b, 0x60, 0x21, 0xd0, 0x44, 0xad, 0x40,
0x51, 0xbc, 0x04, 0x8e, 0xc6, 0xd9, 0xf9, 0x40, 0x72, 0x19, 0xcd, 0xfb, 0x4b, 0x86, 0x75, 0x89,
0xb6, 0x5b, 0x60, 0x0e, 0x5b, 0x0e, 0x75, 0x27, 0xd2, 0xa4, 0xe1, 0x7b, 0x6d, 0xdc, 0x24, 0xf6,
0x44, 0x97, 0x34, 0xa0, 0x36, 0x61, 0x21, 0xd6, 0x44, 0xca, 0xda, 0x45, 0x52, 0x9a, 0x9c, 0xd9,
0x3d, 0x41, 0x1a, 0xfd, 0x1a, 0xe3, 0x54, 0x50, 0xe6, 0xa2, 0x53, 0xe4, 0x66, 0xfc, 0x4f, 0x7f,
0xfc, 0xbf, 0x8a, 0x82, 0xd4, 0xa9, 0x0c, 0x7f, 0xaf, 0xdb, 0x94, 0x0b, 0xe6, 0x0d, 0x74, 0x57,
0x78, 0x03, 0xb8, 0x0b, 0x96, 0x58, 0x97, 0x78, 0x58, 0x4c, 0x0f, 0xea, 0xe3, 0x0b, 0x32, 0x9d,
0xc3, 0x51, 0x3d, 0x85, 0xfa, 0xa3, 0x89, 0xa6, 0x4c, 0xe1, 0x4a, 0x45, 0x2f, 0xac, 0x94, 0x06,
0x16, 0x7a, 0x5d, 0x2b, 0xd0, 0x18, 0xfb, 0xcf, 0x1a, 0x27, 0x48, 0x98, 0x07, 0x31, 0x87, 0xb7,
0x83, 0xe2, 0x25, 0x4a, 0x77, 0xdf, 0x8c, 0xb3, 0x29, 0xe2, 0xb6, 0x98, 0x45, 0xdd, 0x76, 0xe1,
0x0b, 0xce, 0xdc, 0x3c, 0xc2, 0x2f, 0x76, 0x08, 0xe7, 0xb8, 0x4d, 0x90, 0x1f, 0xa8, 0x22, 0x00,
0xcf, 0xd2, 0xc1, 0x15, 0x90, 0x68, 0xda, 0xac, 0xf5, 0xdc, 0xec, 0x10, 0xda, 0xee, 0x08, 0xd9,
0x5e, 0x74, 0x2d, 0xf0, 0x6d, 0x07, 0x2e, 0x78, 0x07, 0x2c, 0x8a, 0xbe, 0x49, 0x5d, 0x8b, 0xf4,
0xa5, 0x26, 0xb4, 0x20, 0xfa, 0x86, 0x6f, 0xaa, 0x14, 0xcc, 0xed, 0x30, 0x8b, 0xd8, 0xf0, 0x09,
0x88, 0x3d, 0x27, 0x03, 0x39, 0xee, 0xa5, 0x8f, 0xde, 0x8c, 0xb3, 0x1f, 0xb4, 0xa9, 0xe8, 0xf4,
0x9a, 0xf9, 0x16, 0x73, 0x0a, 0x82, 0xb8, 0x96, 0x7f, 0xfc, 0x5c, 0x11, 0x7e, 0xb5, 0x69, 0x93,
0x17, 0x9a, 0x03, 0x41, 0x78, 0x7e, 0x9b, 0xf4, 0x4b, 0xfe, 0x0b, 0xf2, 0x49, 0xfc, 0xb9, 0x90,
0x5f, 0xe9, 0x68, 0x70, 0x78, 0xa4, 0x71, 0xff, 0x2f, 0x05, 0x80, 0xe9, 0xd7, 0x00, 0x7e, 0x08,
0x6e, 0x17, 0x35, 0x4d, 0xaf, 0xd7, 0xcd, 0xc6, 0x5e, 0x4d, 0x37, 0x77, 0x2b, 0xf5, 0x9a, 0xae,
0x19, 0x1f, 0x1b, 0x7a, 0x39, 0x19, 0x49, 0xdf, 0x19, 0x8e, 0x72, 0xcb, 0xd3, 0xe0, 0x5d, 0x97,
0x77, 0x49, 0x8b, 0xee, 0x53, 0x62, 0xc1, 0x75, 0x00, 0xc3, 0xb8, 0x4a, 0xb5, 0x54, 0x2d, 0xef,
0x25, 0x95, 0xf4, 0xad, 0xe1, 0x28, 0x97, 0x9c, 0x42, 0x2a, 0xac, 0xc9, 0xac, 0x01, 0x7c, 0x0c,
0x52, 0xe1, 0xe8, 0x6a, 0xe5, 0x93, 0x3d, 0xb3, 0x58, 0x2e, 0x23, 0xbd, 0x5e, 0x4f, 0x46, 0xff,
0x9d, 0xa6, 0xea, 0xda, 0x83, 0xa2, 0xfc, 0xfe, 0xc2, 0x0d, 0xb0, 0x1c, 0x06, 0xea, 0x9f, 0xea,
0x68, 0x2f, 0xc8, 0x14, 0x4b, 0xdf, 0x1e, 0x8e, 0x72, 0xff, 0x9b, 0xa2, 0xf4, 0x03, 0xe2, 0x0d,
0xfc, 0x64, 0xe9, 0xc5, 0x2f, 0x7f, 0xc8, 0x44, 0x5e, 0xfd, 0x98, 0x89, 0xdc, 0xff, 0x29, 0x06,
0x72, 0x57, 0x0d, 0x1d, 0x24, 0xe0, 0xa1, 0x56, 0xad, 0x34, 0x50, 0x51, 0x6b, 0x98, 0x5a, 0xb5,
0xac, 0x9b, 0xdb, 0x46, 0xbd, 0x51, 0x45, 0x7b, 0x66, 0xb5, 0xa6, 0xa3, 0x62, 0xc3, 0xa8, 0x56,
0xce, 0x2b, 0x4d, 0x61, 0x38, 0xca, 0x3d, 0xb8, 0x8a, 0x3b, 0x5c, 0xb0, 0xa7, 0x60, 0x6d, 0xa6,
0x34, 0x46, 0xc5, 0x68, 0x24, 0x95, 0xf4, 0xea, 0x70, 0x94, 0x7b, 0xe7, 0x2a, 0x7e, 0xc3, 0xa5,
0x02, 0x7e, 0x0e, 0xd6, 0x67, 0x22, 0xde, 0x31, 0xb6, 0x50, 0xb1, 0xa1, 0x27, 0xa3, 0xe9, 0x07,
0xc3, 0x51, 0xee, 0xbd, 0xab, 0xb8, 0x77, 0x68, 0xdb, 0xc3, 0x82, 0xcc, 0x4c, 0xbf, 0xa5, 0x57,
0xf4, 0xba, 0x51, 0x4f, 0xc6, 0x66, 0xa3, 0xdf, 0x22, 0x2e, 0xe1, 0x94, 0xa7, 0xe3, 0x7e, 0xb3,
0x4a, 0xe8, 0xf0, 0xf7, 0x4c, 0xe4, 0xd5, 0x51, 0x46, 0x39, 0x3c, 0xca, 0x28, 0xaf, 0x8f, 0x32,
0xca, 0x6f, 0x47, 0x19, 0xe5, 0xeb, 0xe3, 0x4c, 0xe4, 0xf5, 0x71, 0x26, 0xf2, 0xeb, 0x71, 0x26,
0xf2, 0xd9, 0xc3, 0xd0, 0x39, 0xd0, 0x18, 0x77, 0xfc, 0x7f, 0x8f, 0xe0, 0x9e, 0x63, 0x15, 0xfa,
0x93, 0xe7, 0x3f, 0x2f, 0x3c, 0xcd, 0xf9, 0xe0, 0xfa, 0xf2, 0xfe, 0xdf, 0x01, 0x00, 0x00, 0xff,
0xff, 0x56, 0x10, 0xb5, 0xc6, 0x10, 0x09, 0x00, 0x00,
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xcf, 0x8f, 0xdb, 0xc4,
0x17, 0x8f, 0x93, 0xec, 0xaf, 0x69, 0xd4, 0xa6, 0xf3, 0xed, 0x7e, 0x9b, 0x86, 0x92, 0x64, 0x5d,
0x10, 0xdb, 0x1f, 0x4a, 0xda, 0x82, 0x28, 0xea, 0x2d, 0x71, 0xcc, 0xae, 0x2b, 0x36, 0x89, 0x26,
0x59, 0xda, 0x45, 0x42, 0xd6, 0xc4, 0x9e, 0x4d, 0x86, 0xda, 0x9e, 0xc8, 0x33, 0xd9, 0x26, 0xfd,
0x0b, 0x50, 0xb8, 0x20, 0x4e, 0x1c, 0x88, 0x84, 0x04, 0x42, 0xfd, 0x43, 0x38, 0xec, 0x05, 0xa9,
0x47, 0x4e, 0x11, 0xec, 0x0a, 0x09, 0xae, 0x7b, 0xec, 0x09, 0xd9, 0x93, 0x55, 0x0c, 0xfb, 0x2b,
0x5c, 0x1c, 0xbf, 0x37, 0xef, 0xf3, 0x79, 0xf3, 0x79, 0xef, 0x8d, 0x33, 0x60, 0x6d, 0x50, 0x7a,
0x81, 0xb9, 0x5b, 0xa2, 0x9e, 0x20, 0xbe, 0x87, 0x9d, 0x92, 0x18, 0xf6, 0x08, 0x97, 0xcf, 0x62,
0xcf, 0x67, 0x82, 0xc1, 0x55, 0x8b, 0x71, 0x37, 0x08, 0x2a, 0x86, 0x8f, 0xbd, 0x07, 0x6d, 0x22,
0xf0, 0x83, 0xec, 0xb5, 0x0e, 0xeb, 0xb0, 0x30, 0xa2, 0x14, 0xbc, 0xc9, 0x60, 0xb5, 0x0d, 0xae,
0x94, 0x2d, 0x8b, 0x70, 0xde, 0x1a, 0xf6, 0x48, 0x03, 0xfb, 0xd8, 0x85, 0x06, 0x58, 0xd8, 0xc3,
0x4e, 0x9f, 0x64, 0x94, 0x82, 0xb2, 0x7e, 0xf9, 0xe1, 0x5a, 0xf1, 0x54, 0xbe, 0xe2, 0x0c, 0x56,
0x49, 0x1f, 0x4d, 0xf2, 0xa9, 0x21, 0x76, 0x9d, 0xc7, 0x6a, 0x88, 0x54, 0x91, 0x64, 0x78, 0x9c,
0xfc, 0xf6, 0xfb, 0xbc, 0xa2, 0x7e, 0xa7, 0x80, 0x94, 0x8c, 0xd6, 0x98, 0xb7, 0x4b, 0x3b, 0xf0,
0x19, 0x00, 0x3d, 0xe2, 0xbb, 0x94, 0x73, 0xca, 0xbc, 0xf9, 0xd3, 0xac, 0x1e, 0x4d, 0xf2, 0x57,
0x65, 0x9a, 0x19, 0x5c, 0x45, 0x11, 0x2e, 0x78, 0x0f, 0x2c, 0x61, 0xdb, 0xf6, 0x09, 0xe7, 0x99,
0x78, 0x41, 0x59, 0x5f, 0xa9, 0xc0, 0xa3, 0x49, 0xfe, 0xb2, 0xc4, 0x4c, 0x17, 0x54, 0x74, 0x1c,
0x32, 0xdd, 0xde, 0x1f, 0x71, 0xb0, 0x18, 0x2a, 0xe7, 0x50, 0x00, 0x68, 0x31, 0x9b, 0x98, 0xfd,
0x9e, 0xc3, 0xb0, 0x6d, 0xe2, 0x30, 0x77, 0xb8, 0xc1, 0x4b, 0x0f, 0x6f, 0x9d, 0xbb, 0x41, 0xa9,
0xac, 0xb2, 0xb6, 0x3f, 0xc9, 0xc7, 0x8e, 0x26, 0xf9, 0x1b, 0x32, 0xe5, 0x49, 0x32, 0x15, 0xa5,
0x03, 0xe7, 0x76, 0xe8, 0x93, 0x50, 0xf8, 0x8d, 0x02, 0x72, 0xd4, 0xe3, 0x02, 0x7b, 0x82, 0x62,
0x41, 0x4c, 0x9b, 0xec, 0xe2, 0xbe, 0x23, 0xcc, 0x48, 0x8d, 0xe2, 0xf3, 0xd6, 0xe8, 0xf6, 0xd1,
0x24, 0xff, 0xae, 0x4c, 0x7e, 0x3e, 0xa5, 0x8a, 0x6e, 0x46, 0x02, 0xaa, 0x72, 0xbd, 0x31, 0xab,
0xe4, 0x13, 0x00, 0x5d, 0x3c, 0x30, 0x83, 0x3c, 0x66, 0x28, 0x83, 0xd3, 0x97, 0x24, 0x93, 0x28,
0x28, 0xeb, 0xc9, 0xca, 0xdb, 0x33, 0x85, 0x27, 0x63, 0x54, 0x74, 0xc5, 0xc5, 0x83, 0xa7, 0x98,
0xbb, 0x1a, 0xb3, 0x49, 0x93, 0xbe, 0x94, 0x63, 0x10, 0x53, 0x7f, 0x51, 0xc0, 0x72, 0xe0, 0x32,
0xbc, 0x5d, 0x06, 0xdf, 0x02, 0x2b, 0x21, 0xa2, 0x8b, 0x79, 0x37, 0x2c, 0x70, 0x0a, 0x2d, 0x07,
0x8e, 0x4d, 0xcc, 0xbb, 0x30, 0x03, 0x96, 0x2c, 0x9f, 0x60, 0xc1, 0x7c, 0xd9, 0x45, 0x74, 0x6c,
0xc2, 0xff, 0x83, 0x45, 0xce, 0xfa, 0xbe, 0x25, 0x77, 0xb2, 0x82, 0xa6, 0x56, 0x80, 0x68, 0xf7,
0xa9, 0x63, 0x13, 0x3f, 0x93, 0x94, 0x88, 0xa9, 0x09, 0x9f, 0x01, 0x18, 0x2d, 0x84, 0x15, 0xf6,
0x29, 0xb3, 0x30, 0x7f, 0x4b, 0x93, 0x41, 0x4b, 0xd1, 0xd5, 0x08, 0x89, 0x5c, 0x50, 0x7f, 0x56,
0x40, 0x4a, 0x63, 0x9e, 0xf0, 0xb1, 0x25, 0x42, 0x4d, 0xb7, 0xc0, 0x52, 0xa8, 0x89, 0xda, 0xa1,
0xa2, 0x64, 0x05, 0x1c, 0x4c, 0xf2, 0x8b, 0xa1, 0xe4, 0x2a, 0x5a, 0x0c, 0x96, 0x0c, 0xfb, 0x1c,
0x6d, 0xd7, 0xc0, 0x02, 0xb6, 0x5d, 0xea, 0x4d, 0xa5, 0x49, 0x23, 0xf0, 0x3a, 0xb8, 0x4d, 0x9c,
0xa9, 0x2e, 0x69, 0x40, 0x6d, 0xca, 0x42, 0xec, 0xa9, 0x94, 0xdb, 0x67, 0x49, 0x69, 0x73, 0xe6,
0xf4, 0x05, 0x69, 0x0d, 0x1a, 0x8c, 0x53, 0x41, 0x99, 0x87, 0x8e, 0x91, 0x8f, 0x93, 0x7f, 0x06,
0xe3, 0xff, 0x55, 0x1c, 0x64, 0x8e, 0x65, 0x04, 0x7b, 0xdd, 0xa4, 0x5c, 0x30, 0x7f, 0xa8, 0x7b,
0xc2, 0x1f, 0xc2, 0x6d, 0xb0, 0xc2, 0x7a, 0xc4, 0xc7, 0x62, 0x76, 0x50, 0x1f, 0x9d, 0x91, 0xe9,
0x14, 0x8e, 0xfa, 0x31, 0x34, 0x18, 0x4d, 0x34, 0x63, 0x8a, 0x56, 0x2a, 0x7e, 0x66, 0xa5, 0x34,
0xb0, 0xd4, 0xef, 0xd9, 0xa1, 0xc6, 0xc4, 0x7f, 0xd6, 0x38, 0x45, 0xc2, 0x22, 0x48, 0xb8, 0xbc,
0x13, 0x16, 0x2f, 0x55, 0xb9, 0xf9, 0x66, 0x92, 0xcf, 0x10, 0xcf, 0x62, 0x36, 0xf5, 0x3a, 0xa5,
0x2f, 0x38, 0xf3, 0x8a, 0x08, 0xbf, 0xd8, 0x22, 0x9c, 0xe3, 0x0e, 0x41, 0x41, 0xa0, 0x8a, 0x00,
0x3c, 0x49, 0x07, 0xd7, 0x40, 0xaa, 0xed, 0x30, 0xeb, 0xb9, 0xd9, 0x25, 0xb4, 0xd3, 0x15, 0xb2,
0xbd, 0xe8, 0x52, 0xe8, 0xdb, 0x0c, 0x5d, 0xf0, 0x06, 0x58, 0x16, 0x03, 0x93, 0x7a, 0x36, 0x19,
0x48, 0x4d, 0x68, 0x49, 0x0c, 0x8c, 0xc0, 0x54, 0x29, 0x58, 0xd8, 0x62, 0x36, 0x71, 0xe0, 0x13,
0x90, 0x78, 0x4e, 0x86, 0x72, 0xdc, 0x2b, 0x1f, 0xbd, 0x99, 0xe4, 0x3f, 0xe8, 0x50, 0xd1, 0xed,
0xb7, 0x8b, 0x16, 0x73, 0x4b, 0x82, 0x78, 0x76, 0x70, 0xfc, 0x3c, 0x11, 0x7d, 0x75, 0x68, 0x9b,
0x97, 0xda, 0x43, 0x41, 0x78, 0x71, 0x93, 0x0c, 0x2a, 0xc1, 0x0b, 0x0a, 0x48, 0x82, 0xb9, 0x90,
0x5f, 0xe9, 0x78, 0x78, 0x78, 0xa4, 0x71, 0xe7, 0x2f, 0x05, 0x80, 0xd9, 0xd7, 0x00, 0x7e, 0x08,
0xae, 0x97, 0x35, 0x4d, 0x6f, 0x36, 0xcd, 0xd6, 0x4e, 0x43, 0x37, 0xb7, 0x6b, 0xcd, 0x86, 0xae,
0x19, 0x1f, 0x1b, 0x7a, 0x35, 0x1d, 0xcb, 0xde, 0x18, 0x8d, 0x0b, 0xab, 0xb3, 0xe0, 0x6d, 0x8f,
0xf7, 0x88, 0x45, 0x77, 0x29, 0xb1, 0xe1, 0x3d, 0x00, 0xa3, 0xb8, 0x5a, 0xbd, 0x52, 0xaf, 0xee,
0xa4, 0x95, 0xec, 0xb5, 0xd1, 0xb8, 0x90, 0x9e, 0x41, 0x6a, 0xac, 0xcd, 0xec, 0x21, 0x7c, 0x04,
0x32, 0xd1, 0xe8, 0x7a, 0xed, 0x93, 0x1d, 0xb3, 0x5c, 0xad, 0x22, 0xbd, 0xd9, 0x4c, 0xc7, 0xff,
0x9d, 0xa6, 0xee, 0x39, 0xc3, 0xb2, 0xfc, 0xfe, 0xc2, 0x87, 0x60, 0x35, 0x0a, 0xd4, 0x3f, 0xd5,
0xd1, 0x4e, 0x98, 0x29, 0x91, 0xbd, 0x3e, 0x1a, 0x17, 0xfe, 0x37, 0x43, 0xe9, 0x7b, 0xc4, 0x1f,
0x06, 0xc9, 0xb2, 0xcb, 0x5f, 0xfe, 0x90, 0x8b, 0xbd, 0xfa, 0x31, 0x17, 0xbb, 0xf3, 0x53, 0x02,
0x14, 0x2e, 0x1a, 0x3a, 0x48, 0xc0, 0x7d, 0xad, 0x5e, 0x6b, 0xa1, 0xb2, 0xd6, 0x32, 0xb5, 0x7a,
0x55, 0x37, 0x37, 0x8d, 0x66, 0xab, 0x8e, 0x76, 0xcc, 0x7a, 0x43, 0x47, 0xe5, 0x96, 0x51, 0xaf,
0x9d, 0x56, 0x9a, 0xd2, 0x68, 0x5c, 0xb8, 0x7b, 0x11, 0x77, 0xb4, 0x60, 0x4f, 0xc1, 0xed, 0xb9,
0xd2, 0x18, 0x35, 0xa3, 0x95, 0x56, 0xb2, 0xeb, 0xa3, 0x71, 0xe1, 0x9d, 0x8b, 0xf8, 0x0d, 0x8f,
0x0a, 0xf8, 0x39, 0xb8, 0x37, 0x17, 0xf1, 0x96, 0xb1, 0x81, 0xca, 0x2d, 0x3d, 0x1d, 0xcf, 0xde,
0x1d, 0x8d, 0x0b, 0xef, 0x5d, 0xc4, 0xbd, 0x45, 0x3b, 0x3e, 0x16, 0x64, 0x6e, 0xfa, 0x0d, 0xbd,
0xa6, 0x37, 0x8d, 0x66, 0x3a, 0x31, 0x1f, 0xfd, 0x06, 0xf1, 0x08, 0xa7, 0x3c, 0x9b, 0x0c, 0x9a,
0x55, 0x41, 0xfb, 0xbf, 0xe7, 0x62, 0xaf, 0x0e, 0x72, 0xca, 0xfe, 0x41, 0x4e, 0x79, 0x7d, 0x90,
0x53, 0x7e, 0x3b, 0xc8, 0x29, 0x5f, 0x1f, 0xe6, 0x62, 0xaf, 0x0f, 0x73, 0xb1, 0x5f, 0x0f, 0x73,
0xb1, 0xcf, 0xee, 0x47, 0xce, 0x81, 0xc6, 0xb8, 0x1b, 0xfc, 0x7b, 0x84, 0xf7, 0x1c, 0xbb, 0x34,
0x98, 0xfe, 0xfe, 0xf3, 0xc2, 0xd3, 0x5e, 0x0c, 0xaf, 0x2f, 0xef, 0xff, 0x1d, 0x00, 0x00, 0xff,
0xff, 0xfa, 0x50, 0x0a, 0xcc, 0x10, 0x09, 0x00, 0x00,
}
func (this *AccessTypeParam) Equal(that interface{}) bool {

View File

@@ -1,5 +1,5 @@
syntax = "proto3";
package wasmd.x.wasmd.v1beta1;
package cosmwasm.wasm.v1beta1;
import "gogoproto/gogo.proto";