TransactionSigner

type TransactionSigner<TAddress> = 
  | TransactionModifyingSigner<TAddress>
  | TransactionPartialSigner<TAddress>
| TransactionSendingSigner<TAddress>;

Defines a signer capable of signing transactions.

Type Parameters

Type ParameterDefault type
TAddress extends stringstring

See

On this page