Skip to content

TransactionDescription

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:54

When using the [[Interface-parseTransaction]] to automatically match a transaction data to its function for parsing, a TransactionDescription is returned.

new TransactionDescription(
fragment,
selector,
args,
value): TransactionDescription;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:82

@_ignore:

ParameterType
fragmentFunctionFragment
selectorstring
argsResult
valuebigint

TransactionDescription

readonly args: Result;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:66

The arguments passed to the Function from the transaction data.


readonly fragment: FunctionFragment;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:58

The matching fragment from the transaction data.


readonly name: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:62

The name of the Function from the transaction data.


readonly selector: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:74

The selector for the Function from the transaction data.


readonly signature: string;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:70

The full Function signature from the transaction data.


readonly value: bigint;

Defined in: node_modules/.pnpm/ethers@6.15.0/node_modules/ethers/lib.esm/abi/interface.d.ts:78

The value (in wei) from the transaction.