mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00
Remove planetmint-go
from API endpoints (#287)
* feat: let the ci check if there are malformed api endpoints Signed-off-by: Julian Strobl <jmastr@mailbox.org>
This commit is contained in:
parent
525d6a8da6
commit
ee4089f847
12
.github/workflows/audit.yaml
vendored
12
.github/workflows/audit.yaml
vendored
@ -23,6 +23,18 @@ jobs:
|
||||
- name: Build
|
||||
run: go build -v ./...
|
||||
|
||||
proto:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Check proto files
|
||||
run: |
|
||||
if [ "$(find . -name 'query.proto' -exec grep 'option (google.api.http).* = ./planetmint/planetmint-go/' {} \; | wc -l)" -gt 0 ]; then exit 1; fi
|
||||
|
||||
ignite:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
518
docs/static/openapi.yml
vendored
518
docs/static/openapi.yml
vendored
@ -46640,6 +46640,256 @@ paths:
|
||||
additionalProperties: {}
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/dao/challenges:
|
||||
get:
|
||||
summary: Queries a list of Challenges items.
|
||||
operationId: PlanetmintgoDaoChallenges
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
challenges:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
initiator:
|
||||
type: string
|
||||
challenger:
|
||||
type: string
|
||||
challengee:
|
||||
type: string
|
||||
height:
|
||||
type: string
|
||||
format: int64
|
||||
success:
|
||||
type: boolean
|
||||
finished:
|
||||
type: boolean
|
||||
pagination:
|
||||
type: object
|
||||
properties:
|
||||
next_key:
|
||||
type: string
|
||||
format: byte
|
||||
description: |-
|
||||
next_key is the key to be passed to PageRequest.key to
|
||||
query the next page most efficiently. It will be empty if
|
||||
there are no more results.
|
||||
total:
|
||||
type: string
|
||||
format: uint64
|
||||
title: >-
|
||||
total is total number of results available if
|
||||
PageRequest.count_total
|
||||
|
||||
was set, its value is undefined otherwise
|
||||
description: >-
|
||||
PageResponse is to be embedded in gRPC response messages where
|
||||
the
|
||||
|
||||
corresponding request message has used PageRequest.
|
||||
|
||||
message SomeResponse {
|
||||
repeated Bar results = 1;
|
||||
PageResponse page = 2;
|
||||
}
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
code:
|
||||
type: integer
|
||||
format: int32
|
||||
message:
|
||||
type: string
|
||||
details:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
'@type':
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: pagination.key
|
||||
description: |-
|
||||
key is a value returned in PageResponse.next_key to begin
|
||||
querying the next page most efficiently. Only one of offset or key
|
||||
should be set.
|
||||
in: query
|
||||
required: false
|
||||
type: string
|
||||
format: byte
|
||||
- name: pagination.offset
|
||||
description: >-
|
||||
offset is a numeric offset that can be used when key is unavailable.
|
||||
|
||||
It is less efficient than using key. Only one of offset or key
|
||||
should
|
||||
|
||||
be set.
|
||||
in: query
|
||||
required: false
|
||||
type: string
|
||||
format: uint64
|
||||
- name: pagination.limit
|
||||
description: >-
|
||||
limit is the total number of results to be returned in the result
|
||||
page.
|
||||
|
||||
If left empty it will default to a value to be set by each app.
|
||||
in: query
|
||||
required: false
|
||||
type: string
|
||||
format: uint64
|
||||
- name: pagination.count_total
|
||||
description: >-
|
||||
count_total is set to true to indicate that the result set should
|
||||
include
|
||||
|
||||
a count of the total number of items available for pagination in
|
||||
UIs.
|
||||
|
||||
count_total is only respected when offset is used. It is ignored
|
||||
when key
|
||||
|
||||
is set.
|
||||
in: query
|
||||
required: false
|
||||
type: boolean
|
||||
- name: pagination.reverse
|
||||
description: >-
|
||||
reverse is set to true if results are to be returned in the
|
||||
descending order.
|
||||
|
||||
|
||||
Since: cosmos-sdk 0.43
|
||||
in: query
|
||||
required: false
|
||||
type: boolean
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/dao/get_challenge/{height}:
|
||||
get:
|
||||
summary: Queries a list of GetChallenge items.
|
||||
operationId: PlanetmintgoDaoGetChallenge
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
challenge:
|
||||
type: object
|
||||
properties:
|
||||
initiator:
|
||||
type: string
|
||||
challenger:
|
||||
type: string
|
||||
challengee:
|
||||
type: string
|
||||
height:
|
||||
type: string
|
||||
format: int64
|
||||
success:
|
||||
type: boolean
|
||||
finished:
|
||||
type: boolean
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
code:
|
||||
type: integer
|
||||
format: int32
|
||||
message:
|
||||
type: string
|
||||
details:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
'@type':
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: height
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
format: int64
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/dao/get_distribution/{height}:
|
||||
get:
|
||||
summary: Queries a list of GetDistribution items.
|
||||
operationId: PlanetmintgoDaoGetDistribution
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
distribution:
|
||||
type: object
|
||||
properties:
|
||||
daoAddr:
|
||||
type: string
|
||||
daoAmount:
|
||||
type: string
|
||||
daoTxID:
|
||||
type: string
|
||||
investorAddr:
|
||||
type: string
|
||||
investorAmount:
|
||||
type: string
|
||||
investorTxID:
|
||||
type: string
|
||||
popAddr:
|
||||
type: string
|
||||
popAmount:
|
||||
type: string
|
||||
popTxID:
|
||||
type: string
|
||||
firstPop:
|
||||
type: string
|
||||
format: int64
|
||||
lastPop:
|
||||
type: string
|
||||
format: int64
|
||||
proposer:
|
||||
type: string
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
code:
|
||||
type: integer
|
||||
format: int32
|
||||
message:
|
||||
type: string
|
||||
details:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
'@type':
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: height
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
format: int64
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/dao/get_mint_requests_by_hash/{hash}:
|
||||
get:
|
||||
summary: Queries a list of GetMintRequestsByHash items.
|
||||
@ -46963,164 +47213,26 @@ paths:
|
||||
type: boolean
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/planetmint-go/dao/challenges:
|
||||
/planetmint/machine/get_liquid_assets_by_machineid/{machineID}:
|
||||
get:
|
||||
summary: Queries a list of Challenges items.
|
||||
operationId: PlanetmintgoDaoChallenges
|
||||
summary: Queries a list of GetLiquidAssetsByMachineid items.
|
||||
operationId: PlanetmintgoMachineGetLiquidAssetsByMachineid
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
challenges:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
initiator:
|
||||
type: string
|
||||
challenger:
|
||||
type: string
|
||||
challengee:
|
||||
type: string
|
||||
height:
|
||||
type: string
|
||||
format: int64
|
||||
success:
|
||||
type: boolean
|
||||
finished:
|
||||
type: boolean
|
||||
pagination:
|
||||
liquidAssetEntry:
|
||||
type: object
|
||||
properties:
|
||||
next_key:
|
||||
machineID:
|
||||
type: string
|
||||
format: byte
|
||||
description: |-
|
||||
next_key is the key to be passed to PageRequest.key to
|
||||
query the next page most efficiently. It will be empty if
|
||||
there are no more results.
|
||||
total:
|
||||
machineAddress:
|
||||
type: string
|
||||
format: uint64
|
||||
title: >-
|
||||
total is total number of results available if
|
||||
PageRequest.count_total
|
||||
|
||||
was set, its value is undefined otherwise
|
||||
description: >-
|
||||
PageResponse is to be embedded in gRPC response messages where
|
||||
the
|
||||
|
||||
corresponding request message has used PageRequest.
|
||||
|
||||
message SomeResponse {
|
||||
repeated Bar results = 1;
|
||||
PageResponse page = 2;
|
||||
}
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
code:
|
||||
type: integer
|
||||
format: int32
|
||||
message:
|
||||
type: string
|
||||
details:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
'@type':
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: pagination.key
|
||||
description: |-
|
||||
key is a value returned in PageResponse.next_key to begin
|
||||
querying the next page most efficiently. Only one of offset or key
|
||||
should be set.
|
||||
in: query
|
||||
required: false
|
||||
type: string
|
||||
format: byte
|
||||
- name: pagination.offset
|
||||
description: >-
|
||||
offset is a numeric offset that can be used when key is unavailable.
|
||||
|
||||
It is less efficient than using key. Only one of offset or key
|
||||
should
|
||||
|
||||
be set.
|
||||
in: query
|
||||
required: false
|
||||
type: string
|
||||
format: uint64
|
||||
- name: pagination.limit
|
||||
description: >-
|
||||
limit is the total number of results to be returned in the result
|
||||
page.
|
||||
|
||||
If left empty it will default to a value to be set by each app.
|
||||
in: query
|
||||
required: false
|
||||
type: string
|
||||
format: uint64
|
||||
- name: pagination.count_total
|
||||
description: >-
|
||||
count_total is set to true to indicate that the result set should
|
||||
include
|
||||
|
||||
a count of the total number of items available for pagination in
|
||||
UIs.
|
||||
|
||||
count_total is only respected when offset is used. It is ignored
|
||||
when key
|
||||
|
||||
is set.
|
||||
in: query
|
||||
required: false
|
||||
type: boolean
|
||||
- name: pagination.reverse
|
||||
description: >-
|
||||
reverse is set to true if results are to be returned in the
|
||||
descending order.
|
||||
|
||||
|
||||
Since: cosmos-sdk 0.43
|
||||
in: query
|
||||
required: false
|
||||
type: boolean
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/planetmint-go/dao/get_challenge/{height}:
|
||||
get:
|
||||
summary: Queries a list of GetChallenge items.
|
||||
operationId: PlanetmintgoDaoGetChallenge
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
challenge:
|
||||
type: object
|
||||
properties:
|
||||
initiator:
|
||||
assetID:
|
||||
type: string
|
||||
challenger:
|
||||
type: string
|
||||
challengee:
|
||||
type: string
|
||||
height:
|
||||
type: string
|
||||
format: int64
|
||||
success:
|
||||
type: boolean
|
||||
finished:
|
||||
registered:
|
||||
type: boolean
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
@ -47141,76 +47253,10 @@ paths:
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: height
|
||||
- name: machineID
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
format: int64
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/planetmint-go/dao/get_distribution/{height}:
|
||||
get:
|
||||
summary: Queries a list of GetDistribution items.
|
||||
operationId: PlanetmintgoDaoGetDistribution
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
distribution:
|
||||
type: object
|
||||
properties:
|
||||
daoAddr:
|
||||
type: string
|
||||
daoAmount:
|
||||
type: string
|
||||
daoTxID:
|
||||
type: string
|
||||
investorAddr:
|
||||
type: string
|
||||
investorAmount:
|
||||
type: string
|
||||
investorTxID:
|
||||
type: string
|
||||
popAddr:
|
||||
type: string
|
||||
popAmount:
|
||||
type: string
|
||||
popTxID:
|
||||
type: string
|
||||
firstPop:
|
||||
type: string
|
||||
format: int64
|
||||
lastPop:
|
||||
type: string
|
||||
format: int64
|
||||
proposer:
|
||||
type: string
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
code:
|
||||
type: integer
|
||||
format: int32
|
||||
message:
|
||||
type: string
|
||||
details:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
'@type':
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: height
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
format: int64
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/machine/get_machine_by_address/{address}:
|
||||
@ -47440,52 +47486,6 @@ paths:
|
||||
additionalProperties: {}
|
||||
tags:
|
||||
- Query
|
||||
/planetmint/planetmint-go/machine/get_liquid_assets_by_machineid/{machineID}:
|
||||
get:
|
||||
summary: Queries a list of GetLiquidAssetsByMachineid items.
|
||||
operationId: PlanetmintgoMachineGetLiquidAssetsByMachineid
|
||||
responses:
|
||||
'200':
|
||||
description: A successful response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
liquidAssetEntry:
|
||||
type: object
|
||||
properties:
|
||||
machineID:
|
||||
type: string
|
||||
machineAddress:
|
||||
type: string
|
||||
assetID:
|
||||
type: string
|
||||
registered:
|
||||
type: boolean
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
code:
|
||||
type: integer
|
||||
format: int32
|
||||
message:
|
||||
type: string
|
||||
details:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
'@type':
|
||||
type: string
|
||||
additionalProperties: {}
|
||||
parameters:
|
||||
- name: machineID
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
tags:
|
||||
- Query
|
||||
definitions:
|
||||
cosmos.auth.v1beta1.AddressBytesToStringResponse:
|
||||
type: object
|
||||
|
@ -50,18 +50,18 @@ service Query {
|
||||
|
||||
// Queries a list of GetChallenge items.
|
||||
rpc GetChallenge (QueryGetChallengeRequest) returns (QueryGetChallengeResponse) {
|
||||
option (google.api.http).get = "/planetmint/planetmint-go/dao/get_challenge/{height}";
|
||||
option (google.api.http).get = "/planetmint/dao/get_challenge/{height}";
|
||||
|
||||
}
|
||||
|
||||
// Queries a list of Challenges items.
|
||||
rpc Challenges (QueryChallengesRequest) returns (QueryChallengesResponse) {
|
||||
option (google.api.http).get = "/planetmint/planetmint-go/dao/challenges";
|
||||
option (google.api.http).get = "/planetmint/dao/challenges";
|
||||
}
|
||||
|
||||
// Queries a list of GetDistribution items.
|
||||
rpc GetDistribution (QueryGetDistributionRequest) returns (QueryGetDistributionResponse) {
|
||||
option (google.api.http).get = "/planetmint/planetmint-go/dao/get_distribution/{height}";
|
||||
option (google.api.http).get = "/planetmint/dao/get_distribution/{height}";
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ service Query {
|
||||
|
||||
// Queries a list of GetLiquidAssetsByMachineid items.
|
||||
rpc GetLiquidAssetsByMachineid (QueryGetLiquidAssetsByMachineidRequest) returns (QueryGetLiquidAssetsByMachineidResponse) {
|
||||
option (google.api.http).get = "/planetmint/planetmint-go/machine/get_liquid_assets_by_machineid/{machineID}";
|
||||
option (google.api.http).get = "/planetmint/machine/get_liquid_assets_by_machineid/{machineID}";
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -769,67 +769,67 @@ func init() { proto.RegisterFile("planetmintgo/dao/query.proto", fileDescriptor_
|
||||
|
||||
var fileDescriptor_07bad0eeb5b27724 = []byte{
|
||||
// 969 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4f, 0x8f, 0xdb, 0x44,
|
||||
0x18, 0xc6, 0xd7, 0x6d, 0x59, 0xb4, 0x6f, 0x16, 0x01, 0x43, 0xbb, 0x04, 0xef, 0x6e, 0xd8, 0x7a,
|
||||
0x0b, 0xec, 0xa6, 0xad, 0xdd, 0xa6, 0x4b, 0x4b, 0x51, 0xab, 0x8a, 0x80, 0xba, 0xed, 0xa1, 0xa2,
|
||||
0xf8, 0xc0, 0xa1, 0x97, 0x30, 0x49, 0x46, 0xb6, 0x45, 0xe2, 0x49, 0x3d, 0x0e, 0x62, 0xb5, 0xda,
|
||||
0x0b, 0x37, 0x6e, 0x48, 0xfd, 0x00, 0x70, 0x41, 0x42, 0x1c, 0x10, 0xdc, 0x11, 0xe7, 0x1e, 0x2b,
|
||||
0x71, 0xe1, 0x84, 0xd0, 0x2e, 0x12, 0x5f, 0x03, 0x79, 0xfc, 0x3a, 0x1e, 0x67, 0x62, 0x27, 0x95,
|
||||
0x7a, 0x89, 0xc6, 0x9e, 0xf7, 0xcf, 0x6f, 0x9e, 0xf1, 0x3c, 0x13, 0xd8, 0x18, 0x0d, 0x68, 0xc8,
|
||||
0xe2, 0x61, 0x10, 0xc6, 0x1e, 0x77, 0xfa, 0x94, 0x3b, 0x8f, 0xc7, 0x2c, 0x3a, 0xb0, 0x47, 0x11,
|
||||
0x8f, 0x39, 0x79, 0x4d, 0x9d, 0xb5, 0xfb, 0x94, 0x9b, 0x67, 0x3d, 0xee, 0x71, 0x39, 0xe9, 0x24,
|
||||
0xa3, 0x34, 0xce, 0xdc, 0xf0, 0x38, 0xf7, 0x06, 0xcc, 0xa1, 0xa3, 0xc0, 0xa1, 0x61, 0xc8, 0x63,
|
||||
0x1a, 0x07, 0x3c, 0x14, 0x38, 0xdb, 0xec, 0x71, 0x31, 0xe4, 0xc2, 0xe9, 0x52, 0xc1, 0xd2, 0xf2,
|
||||
0xce, 0x57, 0x57, 0xbb, 0x2c, 0xa6, 0x57, 0x9d, 0x11, 0xf5, 0x82, 0x50, 0x06, 0x63, 0xec, 0xa6,
|
||||
0xc6, 0x33, 0xa2, 0x11, 0x1d, 0x66, 0xa5, 0xb6, 0xb5, 0xe9, 0x64, 0xd8, 0x89, 0xd8, 0xe3, 0x31,
|
||||
0x13, 0x31, 0x06, 0x5d, 0xa8, 0x0c, 0xca, 0x4a, 0x9d, 0xd7, 0xa2, 0x22, 0x16, 0x08, 0x31, 0xa6,
|
||||
0x61, 0x8f, 0x61, 0xc8, 0x96, 0x16, 0xd2, 0xf3, 0xe9, 0x60, 0xc0, 0x42, 0x2f, 0x8b, 0x78, 0x9d,
|
||||
0x0e, 0x83, 0x90, 0x3b, 0xf2, 0x17, 0x5f, 0xed, 0x6a, 0x49, 0xfd, 0x40, 0xc4, 0x51, 0xd0, 0x1d,
|
||||
0x27, 0xcb, 0xec, 0xf0, 0xa8, 0xcf, 0xa2, 0x34, 0xd4, 0x3a, 0x0b, 0xe4, 0xb3, 0x44, 0x8e, 0x87,
|
||||
0x72, 0x89, 0x6e, 0xca, 0x67, 0x3d, 0x80, 0x37, 0x0a, 0x6f, 0xc5, 0x88, 0x87, 0x82, 0x91, 0xeb,
|
||||
0xb0, 0x9c, 0x4a, 0x51, 0x37, 0xb6, 0x8c, 0x9d, 0x5a, 0xab, 0x6e, 0x4f, 0x6f, 0x8e, 0x9d, 0x66,
|
||||
0xb4, 0xcf, 0x3c, 0xfd, 0xfb, 0xed, 0x25, 0x17, 0xa3, 0xad, 0x1b, 0x70, 0x5e, 0x96, 0xdb, 0x67,
|
||||
0xf1, 0x83, 0x20, 0x8c, 0xb1, 0x8b, 0x68, 0x1f, 0xdc, 0xa3, 0xc2, 0xc7, 0x27, 0x42, 0xe0, 0x8c,
|
||||
0x4f, 0x85, 0x2f, 0x4b, 0xaf, 0xb8, 0x72, 0x6c, 0x31, 0xb0, 0xaa, 0x12, 0x11, 0xeb, 0x0e, 0xd4,
|
||||
0x86, 0xf9, 0x2c, 0xb2, 0x6d, 0xea, 0x6c, 0x4a, 0x09, 0x57, 0xcd, 0xb0, 0x6e, 0x23, 0x5f, 0xb1,
|
||||
0xc7, 0x47, 0xfd, 0x7e, 0xc4, 0x44, 0xa6, 0x09, 0xa9, 0xc3, 0xcb, 0x34, 0x7d, 0x83, 0x88, 0xd9,
|
||||
0xa3, 0xe5, 0x23, 0x65, 0x49, 0x3a, 0x52, 0xb6, 0x61, 0x55, 0xe9, 0x99, 0x49, 0xd8, 0xa8, 0xc4,
|
||||
0x14, 0x6e, 0x21, 0xc7, 0xba, 0x0d, 0x6f, 0x65, 0x7a, 0xb8, 0x93, 0x2f, 0x25, 0x03, 0xdc, 0x82,
|
||||
0x5a, 0x77, 0xc0, 0x7b, 0x5f, 0xde, 0x63, 0x81, 0xe7, 0xa7, 0x32, 0x9c, 0x76, 0xd5, 0x57, 0xd6,
|
||||
0x23, 0x30, 0x67, 0xa5, 0x23, 0xe0, 0x2d, 0x80, 0xfc, 0xf3, 0x43, 0xbc, 0x0d, 0x1d, 0x4f, 0xc9,
|
||||
0x54, 0xe2, 0x2d, 0x0a, 0x6f, 0xca, 0xda, 0xf9, 0xf4, 0x44, 0xb9, 0xbb, 0x00, 0xf9, 0x21, 0xc3,
|
||||
0xc2, 0xef, 0xda, 0xe9, 0x89, 0xb4, 0x93, 0x13, 0x69, 0xa7, 0x07, 0x1e, 0x4f, 0xa4, 0xfd, 0x90,
|
||||
0x7a, 0xd9, 0xa2, 0x5c, 0x25, 0xd3, 0xfa, 0xc5, 0x80, 0xba, 0xde, 0x03, 0xe9, 0xef, 0x43, 0x2d,
|
||||
0xa7, 0x49, 0xd4, 0x3d, 0x3d, 0x0f, 0xbf, 0xbd, 0x92, 0x7c, 0xa4, 0x3f, 0xfd, 0xf7, 0x6b, 0xd3,
|
||||
0x70, 0xd5, 0x5c, 0xb2, 0x5f, 0xe0, 0x3d, 0x25, 0x79, 0xdf, 0x9b, 0xcb, 0x9b, 0x72, 0x14, 0x80,
|
||||
0x5b, 0xc8, 0xbb, 0xcf, 0xe2, 0x8f, 0xb3, 0x53, 0x9b, 0x89, 0xb2, 0x06, 0xcb, 0xbe, 0xba, 0x51,
|
||||
0xf8, 0x64, 0x7d, 0x9e, 0x6f, 0xb1, 0x92, 0x83, 0x8b, 0xbc, 0x09, 0x2b, 0x93, 0xe3, 0x8f, 0x42,
|
||||
0xae, 0xeb, 0x4b, 0xcc, 0xf3, 0xf2, 0x68, 0xeb, 0x0b, 0x58, 0x93, 0x75, 0x27, 0x93, 0x2f, 0x7c,
|
||||
0x7b, 0x7e, 0x36, 0xf0, 0x13, 0x50, 0x5b, 0x20, 0xf8, 0x5d, 0x80, 0x09, 0x4a, 0xb6, 0x39, 0x55,
|
||||
0xe4, 0xea, 0xde, 0x28, 0x99, 0x2f, 0x6e, 0x6b, 0xde, 0x87, 0xf5, 0x4c, 0xe6, 0x4f, 0x14, 0x6f,
|
||||
0x9c, 0xb7, 0x3b, 0x1e, 0x6c, 0xcc, 0x4e, 0xc3, 0x75, 0xee, 0xc3, 0xaa, 0x6a, 0xb5, 0xa8, 0xe6,
|
||||
0xb6, 0xbe, 0x52, 0x35, 0xfb, 0xd3, 0xc4, 0x8f, 0xdd, 0x42, 0x62, 0xeb, 0x7b, 0x80, 0x97, 0x64,
|
||||
0x27, 0x32, 0x86, 0xe5, 0xd4, 0x54, 0xc9, 0x05, 0xbd, 0x8c, 0xee, 0xdd, 0xe6, 0x3b, 0x73, 0xa2,
|
||||
0x52, 0x52, 0xab, 0xf1, 0xcd, 0x9f, 0xff, 0x3e, 0x39, 0x55, 0x27, 0x6b, 0x4e, 0x1e, 0xae, 0x5c,
|
||||
0x76, 0xe4, 0x77, 0x03, 0xce, 0xcd, 0xb4, 0x5d, 0x72, 0xad, 0xa4, 0x41, 0x95, 0xbb, 0x9b, 0x7b,
|
||||
0xcf, 0x97, 0x84, 0x90, 0x1f, 0x48, 0xc8, 0x16, 0xb9, 0x32, 0x0d, 0xe9, 0xb1, 0xb8, 0x53, 0xb8,
|
||||
0x51, 0x3b, 0xdd, 0x83, 0x4e, 0x72, 0x65, 0x38, 0x87, 0xc9, 0xef, 0x11, 0xf9, 0xc3, 0x80, 0x73,
|
||||
0x33, 0xfd, 0xb8, 0x14, 0xbf, 0xca, 0xfc, 0x4b, 0xf1, 0x2b, 0x2d, 0xdf, 0xfa, 0x50, 0xe2, 0xef,
|
||||
0x91, 0xd6, 0x34, 0xbe, 0x86, 0x8e, 0x57, 0x89, 0x73, 0x88, 0x83, 0x23, 0xf2, 0x83, 0x01, 0xaf,
|
||||
0x14, 0x7c, 0x9a, 0x5c, 0x2c, 0x97, 0x50, 0xbb, 0x0c, 0xcc, 0x4b, 0x8b, 0x05, 0x23, 0xe8, 0x9e,
|
||||
0x04, 0xb5, 0xc9, 0xa5, 0x59, 0x3a, 0xe7, 0xd6, 0xe8, 0x1c, 0x2a, 0xb7, 0xc9, 0x11, 0xf9, 0xd6,
|
||||
0x80, 0x9a, 0x62, 0xc5, 0x64, 0xb7, 0xa4, 0xa7, 0x7e, 0x25, 0x98, 0xcd, 0x45, 0x42, 0x11, 0x6e,
|
||||
0x5b, 0xc2, 0x6d, 0x92, 0xf5, 0x69, 0x38, 0xd5, 0xb3, 0x7f, 0x34, 0x60, 0x55, 0xb5, 0x4c, 0xd2,
|
||||
0x2c, 0x17, 0x60, 0xda, 0x8b, 0xcd, 0x8b, 0x0b, 0xc5, 0x22, 0xce, 0x2d, 0x89, 0x73, 0x9d, 0xec,
|
||||
0xa9, 0x38, 0xf9, 0xf0, 0x32, 0xfe, 0xe3, 0x4a, 0x94, 0x9b, 0x18, 0x97, 0x73, 0xe8, 0xa3, 0x66,
|
||||
0x4f, 0x0c, 0x80, 0xdc, 0x1f, 0xc9, 0x4e, 0x49, 0x67, 0xcd, 0xa5, 0xcd, 0xdd, 0x05, 0x22, 0x91,
|
||||
0xf0, 0x8a, 0x24, 0x6c, 0x92, 0x9d, 0x6a, 0x42, 0xc5, 0x56, 0x7f, 0x33, 0xe0, 0xd5, 0x29, 0x4b,
|
||||
0x23, 0x97, 0xcb, 0x45, 0x99, 0xe1, 0x98, 0xa6, 0xbd, 0x68, 0x38, 0x42, 0xde, 0x91, 0x90, 0x37,
|
||||
0xc9, 0x8d, 0xf9, 0x32, 0xaa, 0xc6, 0x38, 0x51, 0xb2, 0x7d, 0xff, 0xe9, 0x71, 0xc3, 0x78, 0x76,
|
||||
0xdc, 0x30, 0xfe, 0x39, 0x6e, 0x18, 0xdf, 0x9d, 0x34, 0x96, 0x9e, 0x9d, 0x34, 0x96, 0xfe, 0x3a,
|
||||
0x69, 0x2c, 0x3d, 0x72, 0xbc, 0x20, 0xf6, 0xc7, 0x5d, 0xbb, 0xc7, 0x87, 0xe5, 0xc5, 0xbf, 0x96,
|
||||
0xe5, 0xe3, 0x83, 0x11, 0x13, 0xdd, 0x65, 0xf9, 0x5f, 0xf8, 0xda, 0xff, 0x01, 0x00, 0x00, 0xff,
|
||||
0xff, 0x38, 0x68, 0x51, 0x55, 0x8a, 0x0c, 0x00, 0x00,
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcf, 0x6f, 0x1b, 0x45,
|
||||
0x14, 0xc7, 0xb3, 0x6d, 0x09, 0xca, 0x73, 0x10, 0x30, 0xb4, 0xc1, 0x6c, 0x1c, 0x93, 0x6e, 0x4a,
|
||||
0xc9, 0x8f, 0x76, 0x87, 0xb8, 0xe1, 0xa7, 0xa8, 0x10, 0x06, 0x35, 0xed, 0xa1, 0xa2, 0xec, 0x81,
|
||||
0x43, 0x2f, 0x66, 0x6c, 0x8f, 0x76, 0x57, 0xd8, 0x3b, 0xee, 0xce, 0x1a, 0x11, 0x45, 0xb9, 0x20,
|
||||
0x71, 0xe0, 0x86, 0xc4, 0x81, 0x2b, 0x12, 0x17, 0xc4, 0x01, 0xf1, 0x07, 0x20, 0xce, 0x3d, 0x56,
|
||||
0xe2, 0xc2, 0x09, 0xa1, 0x04, 0x89, 0xbf, 0x80, 0x3b, 0xda, 0xd9, 0xb7, 0xde, 0xb1, 0xc7, 0x6b,
|
||||
0x1b, 0x29, 0x17, 0x6b, 0x76, 0xe7, 0xfb, 0xde, 0xfb, 0xcc, 0x9b, 0x9d, 0xef, 0x18, 0x6a, 0x83,
|
||||
0x1e, 0x8b, 0x78, 0xd2, 0x0f, 0xa3, 0xc4, 0x17, 0xb4, 0xcb, 0x04, 0x7d, 0x34, 0xe4, 0xf1, 0x91,
|
||||
0x3b, 0x88, 0x45, 0x22, 0xc8, 0x73, 0xfa, 0xac, 0xdb, 0x65, 0xc2, 0xbe, 0xec, 0x0b, 0x5f, 0xa8,
|
||||
0x49, 0x9a, 0x8e, 0x32, 0x9d, 0x5d, 0xf3, 0x85, 0xf0, 0x7b, 0x9c, 0xb2, 0x41, 0x48, 0x59, 0x14,
|
||||
0x89, 0x84, 0x25, 0xa1, 0x88, 0x24, 0xce, 0xee, 0x76, 0x84, 0xec, 0x0b, 0x49, 0xdb, 0x4c, 0xf2,
|
||||
0x2c, 0x3d, 0xfd, 0x7c, 0xbf, 0xcd, 0x13, 0xb6, 0x4f, 0x07, 0xcc, 0x0f, 0x23, 0x25, 0x46, 0xed,
|
||||
0x86, 0xc1, 0x33, 0x60, 0x31, 0xeb, 0xe7, 0xa9, 0xb6, 0x8c, 0xe9, 0x74, 0xd8, 0x8a, 0xf9, 0xa3,
|
||||
0x21, 0x97, 0x09, 0x8a, 0xae, 0xcd, 0x14, 0xe5, 0xa9, 0xae, 0x1a, 0xaa, 0x98, 0x87, 0x52, 0x0e,
|
||||
0x59, 0xd4, 0xe1, 0x28, 0xd9, 0x34, 0x24, 0x9d, 0x80, 0xf5, 0x7a, 0x3c, 0xf2, 0x73, 0xc5, 0xf3,
|
||||
0xac, 0x1f, 0x46, 0x82, 0xaa, 0x5f, 0x7c, 0xb5, 0x63, 0x04, 0x75, 0x43, 0x99, 0xc4, 0x61, 0x7b,
|
||||
0x98, 0x2e, 0xb3, 0x25, 0xe2, 0x2e, 0x8f, 0x33, 0xa9, 0x73, 0x19, 0xc8, 0xc7, 0x69, 0x3b, 0x1e,
|
||||
0xa8, 0x25, 0x7a, 0x19, 0x9f, 0x73, 0x1f, 0x5e, 0x18, 0x7b, 0x2b, 0x07, 0x22, 0x92, 0x9c, 0xbc,
|
||||
0x01, 0xcb, 0x59, 0x2b, 0xaa, 0xd6, 0xa6, 0xb5, 0x5d, 0x69, 0x54, 0xdd, 0xc9, 0xcd, 0x71, 0xb3,
|
||||
0x88, 0xe6, 0xa5, 0xc7, 0x7f, 0xbe, 0xbc, 0xe4, 0xa1, 0xda, 0x79, 0x13, 0xae, 0xaa, 0x74, 0x87,
|
||||
0x3c, 0xb9, 0x1f, 0x46, 0x09, 0x56, 0x91, 0xcd, 0xa3, 0xbb, 0x4c, 0x06, 0xf8, 0x44, 0x08, 0x5c,
|
||||
0x0a, 0x98, 0x0c, 0x54, 0xea, 0x15, 0x4f, 0x8d, 0x1d, 0x0e, 0xce, 0xac, 0x40, 0xc4, 0x7a, 0x0f,
|
||||
0x2a, 0xfd, 0x62, 0x16, 0xd9, 0x36, 0x4c, 0x36, 0x2d, 0x85, 0xa7, 0x47, 0x38, 0xb7, 0x91, 0x6f,
|
||||
0xbc, 0xc6, 0xfb, 0xdd, 0x6e, 0xcc, 0x65, 0xde, 0x13, 0x52, 0x85, 0xa7, 0x59, 0xf6, 0x06, 0x11,
|
||||
0xf3, 0x47, 0x27, 0x40, 0xca, 0x92, 0x70, 0xa4, 0x6c, 0xc2, 0xaa, 0x56, 0x33, 0x6f, 0x61, 0x7d,
|
||||
0x26, 0xa6, 0xf4, 0xc6, 0x62, 0x9c, 0xdb, 0xf0, 0x52, 0xde, 0x0f, 0x6f, 0xf4, 0xa5, 0xe4, 0x80,
|
||||
0x9b, 0x50, 0x69, 0xf7, 0x44, 0xe7, 0xb3, 0xbb, 0x3c, 0xf4, 0x83, 0xac, 0x0d, 0x17, 0x3d, 0xfd,
|
||||
0x95, 0xf3, 0x10, 0xec, 0x69, 0xe1, 0x08, 0xf8, 0x2e, 0x40, 0xf1, 0xf9, 0x21, 0x5e, 0xcd, 0xc4,
|
||||
0xd3, 0x22, 0x35, 0xbd, 0xc3, 0xe0, 0x45, 0x95, 0xbb, 0x98, 0x1e, 0x75, 0xee, 0x0e, 0x40, 0x71,
|
||||
0xc8, 0x30, 0xf1, 0x75, 0x37, 0x3b, 0x91, 0x6e, 0x7a, 0x22, 0xdd, 0xec, 0xc0, 0xe3, 0x89, 0x74,
|
||||
0x1f, 0x30, 0x3f, 0x5f, 0x94, 0xa7, 0x45, 0x3a, 0x3f, 0x5b, 0x50, 0x35, 0x6b, 0x20, 0xfd, 0x3d,
|
||||
0xa8, 0x14, 0x34, 0x69, 0x77, 0x2f, 0xce, 0xc3, 0x6f, 0xae, 0xa4, 0x1f, 0xe9, 0x8f, 0xff, 0xfc,
|
||||
0xb2, 0x6b, 0x79, 0x7a, 0x2c, 0x39, 0x1c, 0xe3, 0xbd, 0xa0, 0x78, 0x5f, 0x9d, 0xcb, 0x9b, 0x71,
|
||||
0x8c, 0x01, 0x37, 0x90, 0xf7, 0x90, 0x27, 0x1f, 0xe4, 0xa7, 0x36, 0x6f, 0xca, 0x1a, 0x2c, 0x07,
|
||||
0xfa, 0x46, 0xe1, 0x93, 0xf3, 0x49, 0xb1, 0xc5, 0x5a, 0x0c, 0x2e, 0xf2, 0x6d, 0x58, 0x19, 0x1d,
|
||||
0x7f, 0x6c, 0xe4, 0xba, 0xb9, 0xc4, 0x22, 0xae, 0x50, 0x3b, 0x9f, 0xc2, 0x9a, 0xca, 0x3b, 0x9a,
|
||||
0x3c, 0xf7, 0xed, 0xf9, 0xc9, 0xc2, 0x4f, 0x40, 0x2f, 0x81, 0xe0, 0x77, 0x00, 0x46, 0x28, 0xf9,
|
||||
0xe6, 0xcc, 0x22, 0xd7, 0xf7, 0x46, 0x8b, 0x3c, 0xbf, 0xad, 0x79, 0x1d, 0xd6, 0xf3, 0x36, 0x7f,
|
||||
0xa8, 0x79, 0xe3, 0xbc, 0xdd, 0xf1, 0xa1, 0x36, 0x3d, 0x0c, 0xd7, 0x79, 0x08, 0xab, 0xba, 0xd5,
|
||||
0x62, 0x37, 0xb7, 0xcc, 0x95, 0xea, 0xd1, 0x1f, 0xa5, 0x7e, 0xec, 0x8d, 0x05, 0x36, 0xfe, 0x5d,
|
||||
0x81, 0xa7, 0x54, 0x25, 0x32, 0x84, 0xe5, 0xcc, 0x54, 0xc9, 0x35, 0x33, 0x8d, 0xe9, 0xdd, 0xf6,
|
||||
0x2b, 0x73, 0x54, 0x19, 0xa9, 0x53, 0xff, 0xf2, 0xf7, 0xbf, 0xbf, 0xbd, 0x50, 0x25, 0x6b, 0xb4,
|
||||
0x90, 0x6b, 0x97, 0x1d, 0xf9, 0xd5, 0x82, 0x2b, 0x53, 0x6d, 0x97, 0xdc, 0x2a, 0x29, 0x30, 0xcb,
|
||||
0xdd, 0xed, 0x83, 0xff, 0x17, 0x84, 0x90, 0x6f, 0x29, 0xc8, 0x06, 0x79, 0x6d, 0x12, 0xd2, 0xe7,
|
||||
0x49, 0x6b, 0xec, 0x46, 0x6d, 0xb5, 0x8f, 0x5a, 0xe9, 0x95, 0x41, 0x8f, 0xd3, 0xdf, 0x13, 0xf2,
|
||||
0x9b, 0x05, 0x57, 0xa6, 0xfa, 0x71, 0x29, 0xfe, 0x2c, 0xf3, 0x2f, 0xc5, 0x9f, 0x69, 0xf9, 0xce,
|
||||
0x3b, 0x0a, 0xff, 0x80, 0x34, 0x26, 0xf1, 0x0d, 0x74, 0xbc, 0x4a, 0xe8, 0x31, 0x0e, 0x4e, 0xc8,
|
||||
0xf7, 0x16, 0x3c, 0x33, 0xe6, 0xd3, 0x64, 0xaf, 0xbc, 0x85, 0xc6, 0x65, 0x60, 0xdf, 0x58, 0x4c,
|
||||
0x8c, 0xa0, 0x07, 0x0a, 0xd4, 0x25, 0x37, 0xa6, 0xf5, 0xb9, 0xb0, 0x46, 0x7a, 0xac, 0xdd, 0x26,
|
||||
0x27, 0xe4, 0x6b, 0x0b, 0x2a, 0x9a, 0x15, 0x93, 0x9d, 0x92, 0x9a, 0xe6, 0x95, 0x60, 0xef, 0x2e,
|
||||
0x22, 0x45, 0xb8, 0x2d, 0x05, 0xb7, 0x41, 0xd6, 0x27, 0xe1, 0x74, 0xcf, 0xfe, 0xce, 0x82, 0x55,
|
||||
0xdd, 0x32, 0xc9, 0x6e, 0x79, 0x03, 0x26, 0xbd, 0xd8, 0xde, 0x5b, 0x48, 0x8b, 0x38, 0xae, 0xc2,
|
||||
0xd9, 0x26, 0xd7, 0xa7, 0xf5, 0x6a, 0x64, 0x55, 0xf4, 0x38, 0xc0, 0x2e, 0x7d, 0x65, 0x01, 0x14,
|
||||
0x8e, 0x48, 0xb6, 0x4b, 0x6a, 0x19, 0xbe, 0x6c, 0xef, 0x2c, 0xa0, 0x44, 0x26, 0x47, 0x31, 0xd5,
|
||||
0x88, 0x3d, 0xc9, 0xa4, 0x59, 0xe7, 0x0f, 0x16, 0x3c, 0x3b, 0x61, 0x5b, 0xe4, 0x66, 0xf9, 0xc2,
|
||||
0xa7, 0xb8, 0xa2, 0xed, 0x2e, 0x2a, 0x47, 0xac, 0x7d, 0x85, 0xb5, 0x47, 0x76, 0xa6, 0xb5, 0x4a,
|
||||
0xb7, 0xbb, 0x51, 0xb7, 0x9a, 0xf7, 0x1e, 0x9f, 0xd6, 0xad, 0x27, 0xa7, 0x75, 0xeb, 0xaf, 0xd3,
|
||||
0xba, 0xf5, 0xcd, 0x59, 0x7d, 0xe9, 0xc9, 0x59, 0x7d, 0xe9, 0x8f, 0xb3, 0xfa, 0xd2, 0x43, 0xea,
|
||||
0x87, 0x49, 0x30, 0x6c, 0xbb, 0x1d, 0xd1, 0xd7, 0xd3, 0x15, 0xc3, 0x9b, 0xbe, 0xa0, 0x5f, 0xa8,
|
||||
0xf4, 0xc9, 0xd1, 0x80, 0xcb, 0xf6, 0xb2, 0xfa, 0x87, 0x7b, 0xeb, 0xbf, 0x00, 0x00, 0x00, 0xff,
|
||||
0xff, 0xb0, 0xc0, 0xe8, 0x46, 0x60, 0x0c, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
@ -798,11 +798,11 @@ var (
|
||||
|
||||
pattern_Query_Reissuances_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"planetmint", "dao", "reissuances"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
|
||||
pattern_Query_GetChallenge_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"planetmint", "planetmint-go", "dao", "get_challenge", "height"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
pattern_Query_GetChallenge_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"planetmint", "dao", "get_challenge", "height"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
|
||||
pattern_Query_Challenges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"planetmint", "planetmint-go", "dao", "challenges"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
pattern_Query_Challenges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"planetmint", "dao", "challenges"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
|
||||
pattern_Query_GetDistribution_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"planetmint", "planetmint-go", "dao", "get_distribution", "height"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
pattern_Query_GetDistribution_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"planetmint", "dao", "get_distribution", "height"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -493,52 +493,51 @@ func init() {
|
||||
func init() { proto.RegisterFile("planetmintgo/machine/query.proto", fileDescriptor_bf7841d43d757203) }
|
||||
|
||||
var fileDescriptor_bf7841d43d757203 = []byte{
|
||||
// 705 bytes of a gzipped FileDescriptorProto
|
||||
// 701 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x41, 0x4f, 0x13, 0x41,
|
||||
0x18, 0xed, 0x12, 0x05, 0x19, 0x2e, 0x66, 0xa8, 0x09, 0xd9, 0xd4, 0x52, 0xe6, 0x20, 0x68, 0x62,
|
||||
0x37, 0x80, 0x52, 0x11, 0x8c, 0xb6, 0x41, 0x0d, 0x91, 0x1a, 0xa8, 0x9c, 0x34, 0x66, 0x33, 0xdd,
|
||||
0x27, 0x80, 0x52, 0x11, 0x54, 0xda, 0x20, 0x86, 0x68, 0x13, 0xa8, 0x9e, 0x34, 0x66, 0x33, 0xdd,
|
||||
0x4e, 0x96, 0x8d, 0xed, 0xce, 0xb2, 0x33, 0x4b, 0xd8, 0x90, 0x1e, 0xf4, 0x17, 0x98, 0xf8, 0x8f,
|
||||
0x3c, 0x71, 0x31, 0x21, 0xf1, 0xe2, 0x45, 0x63, 0xc0, 0xbb, 0x7f, 0xc1, 0x74, 0x76, 0x76, 0xbb,
|
||||
0xd0, 0xe9, 0x4a, 0xf5, 0xd4, 0xe9, 0xd7, 0xf7, 0xbe, 0xef, 0xbd, 0x6f, 0xe7, 0x75, 0x41, 0xc9,
|
||||
0x6b, 0x63, 0x97, 0xf0, 0x8e, 0xe3, 0x72, 0x9b, 0x1a, 0x1d, 0x6c, 0xed, 0x39, 0x2e, 0x31, 0xf6,
|
||||
0x03, 0xe2, 0x87, 0x65, 0xcf, 0xa7, 0x9c, 0xc2, 0x7c, 0x1a, 0x51, 0x96, 0x08, 0x3d, 0x6f, 0x53,
|
||||
0x9b, 0x0a, 0x80, 0xd1, 0x3b, 0x45, 0x58, 0xbd, 0x60, 0x53, 0x6a, 0xb7, 0x89, 0x81, 0x3d, 0xc7,
|
||||
0xc0, 0xae, 0x4b, 0x39, 0xe6, 0x0e, 0x75, 0x99, 0xfc, 0xf5, 0x8e, 0x45, 0x59, 0x87, 0x32, 0xa3,
|
||||
0x89, 0x99, 0x1c, 0x61, 0x1c, 0x2c, 0x36, 0x09, 0xc7, 0x8b, 0x86, 0x87, 0x6d, 0xc7, 0x15, 0x60,
|
||||
0x89, 0x9d, 0x53, 0xea, 0xf2, 0xb0, 0x8f, 0x3b, 0x71, 0x3b, 0xa4, 0x84, 0xc8, 0x4f, 0x89, 0x99,
|
||||
0x57, 0x62, 0xda, 0xce, 0x7e, 0xe0, 0xb4, 0x4c, 0xcc, 0x18, 0xe1, 0x11, 0x10, 0xe5, 0x01, 0xdc,
|
||||
0xe9, 0x29, 0xda, 0x16, 0x13, 0x1a, 0x64, 0x3f, 0x20, 0x8c, 0xa3, 0x1d, 0x30, 0x7d, 0xae, 0xca,
|
||||
0x3c, 0xea, 0x32, 0x02, 0x1f, 0x82, 0xf1, 0x48, 0xc9, 0x8c, 0x56, 0xd2, 0x16, 0xa6, 0x96, 0x0a,
|
||||
0x65, 0xd5, 0x8e, 0xca, 0x11, 0xab, 0x76, 0xe5, 0xf8, 0xc7, 0x6c, 0xae, 0x21, 0x19, 0xa8, 0x0a,
|
||||
0xe6, 0x44, 0xcb, 0xe7, 0x84, 0xd7, 0x23, 0x5c, 0x2d, 0xdc, 0x0e, 0x9a, 0x6d, 0xc7, 0x7a, 0x41,
|
||||
0x42, 0x39, 0x17, 0x16, 0xc0, 0xa4, 0x17, 0xd7, 0xc4, 0x8c, 0xc9, 0x46, 0xbf, 0x80, 0xde, 0x02,
|
||||
0x94, 0xd5, 0x42, 0x8a, 0xac, 0x80, 0x09, 0x29, 0x44, 0xaa, 0xbc, 0xa9, 0x56, 0x29, 0x5b, 0x34,
|
||||
0x62, 0x34, 0x7a, 0x02, 0x4a, 0x71, 0xfb, 0x5d, 0x3f, 0x60, 0xbc, 0xea, 0x5a, 0x7b, 0xd4, 0x7f,
|
||||
0xc5, 0x31, 0x0f, 0x58, 0x4a, 0xa0, 0x84, 0x3b, 0xad, 0x58, 0x60, 0x52, 0x40, 0x56, 0xdf, 0xa3,
|
||||
0xa2, 0x83, 0xd4, 0x97, 0xd9, 0x02, 0x96, 0xc0, 0x94, 0xc3, 0xb0, 0xc5, 0x9d, 0x03, 0xcc, 0x49,
|
||||
0x6b, 0x66, 0xac, 0xa4, 0x2d, 0x5c, 0x6b, 0xa4, 0x4b, 0x68, 0x0d, 0xcc, 0x0e, 0x6c, 0xa1, 0xda,
|
||||
0x6a, 0xf9, 0x84, 0x25, 0x2a, 0x67, 0xc0, 0x04, 0x8e, 0x2a, 0x72, 0x40, 0xfc, 0x15, 0xbd, 0xe9,
|
||||
0x7b, 0x1c, 0x24, 0xff, 0xef, 0x02, 0x9f, 0x81, 0x5b, 0x71, 0xf3, 0x2d, 0x71, 0xd3, 0xaa, 0xbd,
|
||||
0x8b, 0xc6, 0x6a, 0x61, 0x3d, 0xb6, 0x37, 0xb8, 0xc6, 0xcd, 0x8d, 0x0b, 0x3b, 0xd8, 0xdc, 0x40,
|
||||
0x87, 0x60, 0xfe, 0xaf, 0x7d, 0xa4, 0xd6, 0x3a, 0xb8, 0xde, 0xee, 0x43, 0x9e, 0xba, 0xdc, 0x0f,
|
||||
0xa5, 0xe8, 0x39, 0xb5, 0xe8, 0x54, 0xc3, 0xc6, 0x00, 0x75, 0xe9, 0xfb, 0x04, 0xb8, 0x2a, 0x46,
|
||||
0xc3, 0xf7, 0x1a, 0x18, 0x8f, 0xee, 0x31, 0x5c, 0x50, 0x77, 0x1a, 0x8c, 0x8d, 0x7e, 0xfb, 0x12,
|
||||
0xc8, 0x48, 0x38, 0x42, 0x1f, 0xbe, 0xfe, 0xfa, 0x34, 0x56, 0x80, 0xba, 0xd1, 0xa7, 0x5c, 0x88,
|
||||
0x3b, 0xfc, 0xa2, 0x81, 0x1b, 0xca, 0xbb, 0x0e, 0x2b, 0x19, 0x83, 0xb2, 0x02, 0xa6, 0x3f, 0x18,
|
||||
0x9d, 0x28, 0x05, 0x57, 0x85, 0xe0, 0x35, 0xb8, 0xaa, 0x12, 0x6c, 0x13, 0x6e, 0xca, 0xb3, 0xd9,
|
||||
0x0c, 0xcd, 0x28, 0xb2, 0xe6, 0x3b, 0x12, 0x1a, 0x47, 0x49, 0x7c, 0xbb, 0xf0, 0x58, 0x03, 0x79,
|
||||
0x55, 0x34, 0xe0, 0x4a, 0xb6, 0xaa, 0x61, 0x69, 0xd4, 0x2b, 0x23, 0xf3, 0xa4, 0x99, 0xc7, 0xc2,
|
||||
0xcc, 0x2a, 0xac, 0x0c, 0x33, 0xc3, 0x7b, 0x54, 0x13, 0x0b, 0xae, 0xc9, 0x04, 0xd9, 0x38, 0x4a,
|
||||
0x52, 0xda, 0x85, 0x9f, 0x35, 0x30, 0xad, 0xc8, 0x10, 0xbc, 0x7f, 0xc9, 0xfd, 0x9e, 0x0f, 0xac,
|
||||
0xbe, 0x32, 0x2a, 0x4d, 0xfa, 0x58, 0x17, 0x3e, 0x56, 0xe0, 0xbd, 0x4b, 0x3c, 0x14, 0xf9, 0x17,
|
||||
0x60, 0x1c, 0xc9, 0x43, 0x17, 0xfe, 0xd6, 0x80, 0x3e, 0x3c, 0x63, 0x70, 0x3d, 0x5b, 0x54, 0x76,
|
||||
0xc4, 0xf5, 0x47, 0xff, 0xc8, 0x96, 0xce, 0x76, 0x85, 0xb3, 0x97, 0x70, 0x2b, 0xed, 0xac, 0x7f,
|
||||
0xbc, 0x9b, 0x7a, 0xab, 0xf5, 0x7c, 0xa6, 0xdf, 0x6c, 0xac, 0xe7, 0x36, 0x79, 0x56, 0xc9, 0x63,
|
||||
0xdb, 0xdc, 0xe8, 0xd6, 0xea, 0xc7, 0xa7, 0x45, 0xed, 0xe4, 0xb4, 0xa8, 0xfd, 0x3c, 0x2d, 0x6a,
|
||||
0x1f, 0xcf, 0x8a, 0xb9, 0x93, 0xb3, 0x62, 0xee, 0xdb, 0x59, 0x31, 0xf7, 0x7a, 0xd9, 0x76, 0xf8,
|
||||
0x5e, 0xd0, 0x2c, 0x5b, 0xb4, 0x33, 0x7c, 0xe2, 0x61, 0x32, 0x93, 0x87, 0x1e, 0x61, 0xcd, 0x71,
|
||||
0xf1, 0x0e, 0x5d, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x49, 0xdc, 0x55, 0xd7, 0x4d, 0x08, 0x00,
|
||||
0x00,
|
||||
0x3c, 0x71, 0x31, 0x92, 0x78, 0xf1, 0x64, 0x14, 0xfc, 0x21, 0xa6, 0xb3, 0xb3, 0xdb, 0x85, 0x6e,
|
||||
0x57, 0xaa, 0xa7, 0x4e, 0xbf, 0xbe, 0xf7, 0x7d, 0xef, 0x7d, 0x3b, 0xaf, 0x0b, 0x4a, 0x6e, 0x9b,
|
||||
0x38, 0x54, 0x74, 0x6c, 0x47, 0x58, 0x0c, 0x77, 0x88, 0xb9, 0x67, 0x3b, 0x14, 0xef, 0xfb, 0xd4,
|
||||
0x0b, 0xca, 0xae, 0xc7, 0x04, 0x83, 0xf9, 0x24, 0xa2, 0xac, 0x10, 0x7a, 0xde, 0x62, 0x16, 0x93,
|
||||
0x00, 0xdc, 0x3b, 0x85, 0x58, 0xbd, 0x60, 0x31, 0x66, 0xb5, 0x29, 0x26, 0xae, 0x8d, 0x89, 0xe3,
|
||||
0x30, 0x41, 0x84, 0xcd, 0x1c, 0xae, 0x7e, 0xbd, 0x63, 0x32, 0xde, 0x61, 0x1c, 0x37, 0x09, 0x57,
|
||||
0x23, 0xf0, 0xc1, 0x62, 0x93, 0x0a, 0xb2, 0x88, 0x5d, 0x62, 0xd9, 0x8e, 0x04, 0x2b, 0xec, 0x5c,
|
||||
0xaa, 0x2e, 0x97, 0x78, 0xa4, 0x13, 0xb5, 0x43, 0xa9, 0x10, 0xf5, 0xa9, 0x30, 0xf3, 0xa9, 0x98,
|
||||
0xb6, 0xbd, 0xef, 0xdb, 0x2d, 0x83, 0x70, 0x4e, 0x45, 0x08, 0x44, 0x79, 0x00, 0x77, 0x7b, 0x8a,
|
||||
0x76, 0xe4, 0x84, 0x06, 0xdd, 0xf7, 0x29, 0x17, 0x68, 0x17, 0x4c, 0x9f, 0xab, 0x72, 0x97, 0x39,
|
||||
0x9c, 0xc2, 0x87, 0x60, 0x3c, 0x54, 0x32, 0xa3, 0x95, 0xb4, 0x85, 0xa9, 0xa5, 0x42, 0x39, 0x6d,
|
||||
0x47, 0xe5, 0x90, 0x55, 0xbb, 0x72, 0xfc, 0x63, 0x36, 0xd7, 0x50, 0x0c, 0x54, 0x05, 0x73, 0xb2,
|
||||
0xe5, 0x33, 0x2a, 0xea, 0x21, 0xae, 0x16, 0xec, 0xf8, 0xcd, 0xb6, 0x6d, 0x3e, 0xa7, 0x81, 0x9a,
|
||||
0x0b, 0x0b, 0x60, 0xd2, 0x8d, 0x6a, 0x72, 0xc6, 0x64, 0xa3, 0x5f, 0x40, 0x6f, 0x01, 0xca, 0x6a,
|
||||
0xa1, 0x44, 0x56, 0xc0, 0x84, 0x12, 0xa2, 0x54, 0xde, 0x4c, 0x57, 0xa9, 0x5a, 0x34, 0x22, 0x34,
|
||||
0xda, 0x00, 0xa5, 0xa8, 0xfd, 0x2b, 0xcf, 0xe7, 0xa2, 0xea, 0x98, 0x7b, 0xcc, 0x7b, 0x29, 0x88,
|
||||
0xf0, 0x79, 0x42, 0xa0, 0x82, 0xdb, 0xad, 0x48, 0x60, 0x5c, 0x40, 0x66, 0xdf, 0x63, 0x4a, 0x07,
|
||||
0xa5, 0x2f, 0xb3, 0x05, 0x2c, 0x81, 0x29, 0x9b, 0x13, 0x53, 0xd8, 0x07, 0x44, 0xd0, 0xd6, 0xcc,
|
||||
0x58, 0x49, 0x5b, 0xb8, 0xd6, 0x48, 0x96, 0xd0, 0x1a, 0x98, 0x1d, 0xd8, 0x42, 0xb5, 0xd5, 0xf2,
|
||||
0x28, 0x8f, 0x55, 0xce, 0x80, 0x09, 0x12, 0x56, 0xd4, 0x80, 0xe8, 0x2b, 0x7a, 0xd3, 0xf7, 0x38,
|
||||
0x48, 0xfe, 0xdf, 0x05, 0x6e, 0x81, 0x5b, 0x51, 0xf3, 0x17, 0xf2, 0xa6, 0x55, 0x7b, 0x17, 0x8d,
|
||||
0xd7, 0x82, 0x7a, 0x64, 0x6f, 0x70, 0x8d, 0xdb, 0x9b, 0x17, 0x76, 0xb0, 0xbd, 0x89, 0x0e, 0xc1,
|
||||
0xfc, 0x5f, 0xfb, 0x28, 0xad, 0x75, 0x70, 0xbd, 0xdd, 0x87, 0x3c, 0x75, 0x84, 0x17, 0x28, 0xd1,
|
||||
0x73, 0xe9, 0xa2, 0x13, 0x0d, 0x1b, 0x03, 0xd4, 0xa5, 0xaf, 0x13, 0xe0, 0xaa, 0x1c, 0x0d, 0xdf,
|
||||
0x6b, 0x60, 0x3c, 0xbc, 0xc7, 0x70, 0x21, 0xbd, 0xd3, 0x60, 0x6c, 0xf4, 0xdb, 0x97, 0x40, 0x86,
|
||||
0xc2, 0x11, 0xfa, 0xf0, 0xed, 0xf7, 0xa7, 0xb1, 0x02, 0xd4, 0x71, 0x9f, 0x72, 0x21, 0xee, 0xf0,
|
||||
0x8b, 0x06, 0x6e, 0xa4, 0xde, 0x75, 0x58, 0xc9, 0x18, 0x94, 0x15, 0x30, 0xfd, 0xc1, 0xe8, 0x44,
|
||||
0x25, 0xb8, 0x2a, 0x05, 0xaf, 0xc1, 0xd5, 0x34, 0xc1, 0x16, 0x15, 0x86, 0x3a, 0x1b, 0xcd, 0xc0,
|
||||
0x08, 0x23, 0x6b, 0xbc, 0xa3, 0x01, 0x3e, 0x8a, 0xe3, 0xdb, 0x85, 0xc7, 0x1a, 0xc8, 0xa7, 0x45,
|
||||
0x03, 0xae, 0x64, 0xab, 0x1a, 0x96, 0x46, 0xbd, 0x32, 0x32, 0x4f, 0x99, 0x79, 0x22, 0xcd, 0xac,
|
||||
0xc2, 0xca, 0x30, 0x33, 0xa2, 0x47, 0x35, 0x88, 0xe4, 0x1a, 0x5c, 0x92, 0xf1, 0x51, 0x9c, 0xd2,
|
||||
0x2e, 0xfc, 0xac, 0x81, 0xe9, 0x94, 0x0c, 0xc1, 0xfb, 0x97, 0xdc, 0xef, 0xf9, 0xc0, 0xea, 0x2b,
|
||||
0xa3, 0xd2, 0x94, 0x8f, 0x75, 0xe9, 0x63, 0x05, 0xde, 0xbb, 0xc4, 0x43, 0x51, 0x7f, 0x01, 0xf8,
|
||||
0x48, 0x1d, 0xba, 0xf0, 0x97, 0x06, 0xf4, 0xe1, 0x19, 0x83, 0xeb, 0xd9, 0xa2, 0xb2, 0x23, 0xae,
|
||||
0x3f, 0xfa, 0x47, 0xb6, 0x72, 0xb6, 0x25, 0x9d, 0x6d, 0xc0, 0xc7, 0xc3, 0x9c, 0x25, 0xdf, 0x65,
|
||||
0xbc, 0xe7, 0x2f, 0x7e, 0x3a, 0xf1, 0x83, 0xda, 0xde, 0xec, 0xd6, 0xea, 0xc7, 0xa7, 0x45, 0xed,
|
||||
0xe4, 0xb4, 0xa8, 0xfd, 0x3c, 0x2d, 0x6a, 0x1f, 0xcf, 0x8a, 0xb9, 0x93, 0xb3, 0x62, 0xee, 0xfb,
|
||||
0x59, 0x31, 0xf7, 0x7a, 0xd9, 0xb2, 0xc5, 0x9e, 0xdf, 0x2c, 0x9b, 0xac, 0x93, 0x9c, 0xd1, 0x3f,
|
||||
0xde, 0xb5, 0x18, 0x3e, 0x8c, 0x67, 0x8a, 0xc0, 0xa5, 0xbc, 0x39, 0x2e, 0xdf, 0x9a, 0xcb, 0x7f,
|
||||
0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0x3b, 0x35, 0x9b, 0x3f, 0x08, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
@ -541,7 +541,7 @@ var (
|
||||
|
||||
pattern_Query_GetMachineByAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"planetmint", "machine", "get_machine_by_address", "address"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
|
||||
pattern_Query_GetLiquidAssetsByMachineid_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"planetmint", "planetmint-go", "machine", "get_liquid_assets_by_machineid", "machineID"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
pattern_Query_GetLiquidAssetsByMachineid_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"planetmint", "machine", "get_liquid_assets_by_machineid", "machineID"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||
)
|
||||
|
||||
var (
|
||||
|
Loading…
x
Reference in New Issue
Block a user