Interface IAccountSignerMeta<TAddress, TSigner>

An extension of the IAccountMeta type that keeps track of its transaction signer.

interface IAccountSignerMeta<
    TAddress extends string = string,
    TSigner extends TransactionSigner<TAddress> = TransactionSigner<TAddress>,
> {
    address: Address<TAddress>;
    role: WRITABLE_SIGNER | READONLY_SIGNER;
    signer: TSigner;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

address: Address<TAddress>
signer: TSigner