Coin Transfers
Interface
interface iCoinTransfer<T extends NumberType> {
to: string; // Recipient BitBadges address
coins: iCosmosCoin<T>[];
overrideFromWithApproverAddress: boolean; // By default (false), this is the initiator address. In the case of a collection approval, approver address is the mint escrow address.
overrideToWithInitiator: boolean; // By default (false), this is the to address specified
}
interface iCosmosCoin<T extends NumberType> {
amount: T;
denom: string; // Any Cosmos SDK denomination (e.g., "ubadge", "uatom", "uosmo")
}Mint Escrow Address
Generation
Properties
Auto-Escrow During Collection Creation
Example
Last updated