mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-01-24 05:55:18 +00:00
37 lines
970 B
Protocol Buffer
37 lines
970 B
Protocol Buffer
syntax = "proto3";
|
|
package zgc.wrappeda0gibase;
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
import "gogoproto/gogo.proto";
|
|
import "google/api/annotations.proto";
|
|
import "google/protobuf/any.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
option go_package = "github.com/0glabs/0g-chain/x/wrapped-a0gi-base/types";
|
|
option (gogoproto.goproto_getters_all) = false;
|
|
|
|
// Query defines the gRPC querier service for the wrapped a0gi base module
|
|
service Query {
|
|
rpc GetWA0GI(GetWA0GIRequest) returns (GetWA0GIResponse) {
|
|
option (google.api.http).get = "/0g/wrapped-a0gi-base/get-wa0gi";
|
|
}
|
|
rpc MinterSupply(MinterSupplyRequest) returns (MinterSupplyResponse) {
|
|
option (google.api.http).get = "/0g/wrapped-a0gi-base/minter-supply";
|
|
}
|
|
}
|
|
|
|
message GetWA0GIRequest {}
|
|
|
|
message GetWA0GIResponse {
|
|
bytes address = 1;
|
|
}
|
|
|
|
message MinterSupplyRequest {
|
|
bytes address = 1;
|
|
}
|
|
|
|
message MinterSupplyResponse {
|
|
bytes cap = 1; // big endian
|
|
bytes supply = 2; // big endian
|
|
}
|