MsgCreateDenom defines the message structure for the CreateDenom gRPC service method. It allows an account to create a new denom. It requires a sender address and a sub denomination. The (sender_address, sub_denomination) tuple must be unique and cannot be re-used.

The resulting denom created is defined as <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is originally set to be the creator, but this can be changed later. The token denom does not indicate the current admin.

interface MsgCreateDenomAmino {
    sender?: string;
    subdenom?: string;
}

Properties

Properties

sender?: string
subdenom?: string

subdenom can be up to 44 "alphanumeric" characters long.