Type alias ExecuteMsg

ExecuteMsg: {
    transfer_nft: {
        recipient: string;
        token_id: string;
    };
} | {
    send_nft: {
        contract: string;
        msg: Binary;
        token_id: string;
    };
} | {
    approve: {
        expires?: Expiration | null;
        spender: string;
        token_id: string;
    };
} | {
    revoke: {
        spender: string;
        token_id: string;
    };
} | {
    approve_all: {
        expires?: Expiration | null;
        operator: string;
    };
} | {
    revoke_all: {
        operator: string;
    };
} | {
    mint: {
        extension: Empty;
        owner: string;
        token_id: string;
        token_uri?: string | null;
    };
} | {
    burn: {
        token_id: string;
    };
} | {
    extension: {
        msg: Empty;
    };
} | {
    update_ownership: Action;
}

©2020 - 2023 Oraichain Foundation