Properties
| Property | Type | Description |
|---|---|---|
to | EvmAddress | The target address for the call. |
value? | bigint | The value to send with the call (in wei). |
data? | Hex | The data to send with the call. |
type EvmCall = {
to: EvmAddress;
value?: bigint;
data?: Hex;
};
| Property | Type | Description |
|---|---|---|
to | EvmAddress | The target address for the call. |
value? | bigint | The value to send with the call (in wei). |
data? | Hex | The data to send with the call. |
Was this page helpful?