Coda by Ian Macalinao
    Preparing search index...

    Interface InternalTransferUnlockedInput<TAccountRegistrar, TAccountVoter, TAccountVoterAuthority>

    interface InternalTransferUnlockedInput<
        TAccountRegistrar extends string = string,
        TAccountVoter extends string = string,
        TAccountVoterAuthority extends string = string,
    > {
        amount: number | bigint;
        registrar: Address<TAccountRegistrar>;
        sourceDepositEntryIndex: number;
        targetDepositEntryIndex: number;
        voter: Address<TAccountVoter>;
        voterAuthority: TransactionSigner<TAccountVoterAuthority>;
    }

    Type Parameters

    • TAccountRegistrar extends string = string
    • TAccountVoter extends string = string
    • TAccountVoterAuthority extends string = string
    Index

    Properties

    amount: number | bigint
    registrar: Address<TAccountRegistrar>
    sourceDepositEntryIndex: number
    targetDepositEntryIndex: number
    voter: Address<TAccountVoter>
    voterAuthority: TransactionSigner<TAccountVoterAuthority>