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.
Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”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:
Parameters
Section titled “Parameters”Parameter | Type |
---|---|
fragment | FunctionFragment |
selector | string |
args | Result |
value | bigint |
Returns
Section titled “Returns”TransactionDescription
Properties
Section titled “Properties”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
.
fragment
Section titled “fragment”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
.
selector
Section titled “selector”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
.
signature
Section titled “signature”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.