Skip to content

Commit

Permalink
add comment to proto
Browse files Browse the repository at this point in the history
  • Loading branch information
dssei committed Sep 13, 2024
1 parent 31314df commit 703463c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/proto/proto/cosmos/bank/v1beta1/bank.proto
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ message Metadata {
string symbol = 6;
}

// AllowList represents a list of allowed addresses to transact the denom.
message AllowList {
option (gogoproto.equal) = true;

Expand Down
3 changes: 3 additions & 0 deletions packages/proto/src/codegen/cosmos/bank/v1beta1/bank.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,20 +269,23 @@ export interface MetadataSDKType {
name: string;
symbol: string;
}
/** AllowList represents a list of allowed addresses to transact the denom. */
export interface AllowList {
addresses: string[];
}
export interface AllowListProtoMsg {
typeUrl: "/cosmos.bank.v1beta1.AllowList";
value: Uint8Array;
}
/** AllowList represents a list of allowed addresses to transact the denom. */
export interface AllowListAmino {
addresses?: string[];
}
export interface AllowListAminoMsg {
type: "cosmos-sdk/AllowList";
value: AllowListAmino;
}
/** AllowList represents a list of allowed addresses to transact the denom. */
export interface AllowListSDKType {
addresses: string[];
}
Expand Down

0 comments on commit 703463c

Please sign in to comment.