Type alias CandyGuardsRemainingAccount

CandyGuardsRemainingAccount: {
    isSigner: false;
    address: PublicKey;
    isWritable: boolean;
} | {
    isSigner: true;
    address: Signer;
    isWritable: boolean;
}

A remain account to push to the mint or route instruction. When isSigner is true, the address attribute must be Signer and it will be pushed to the signers array of the transaction.

Generated using TypeDoc