UNPKG

@ultron.foundation/v3-sdk

Version:

⚒️ An SDK for building applications on top of Ultron V3

22 lines 557 B
import { BigintIsh } from '@ultron.foundation/sdk'; import { Hex } from 'viem'; /** * Generated method parameters for executing a call. */ export interface MethodParameters { /** * The hex encoded calldata to perform the given operation */ calldata: Hex; /** * The amount of ether (wei) to send in hex. */ value: Hex; } /** * Converts a big int to a hex string * @param bigintIsh * @returns The hex encoded calldata */ export declare function toHex(bigintIsh: BigintIsh): Hex; //# sourceMappingURL=calldata.d.ts.map