mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-04-03 23:36:05 +00:00
18 lines
487 B
Protocol Buffer
18 lines
487 B
Protocol Buffer
syntax = "proto3";
|
|
package zgc.wrappeda0gibase.v1;
|
|
|
|
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;
|
|
|
|
message Supply {
|
|
bytes cap = 1; // big endian
|
|
bytes initialSupply = 2; // big endian
|
|
bytes supply = 3; // big endian
|
|
}
|