UNPKG

@iguanadex/v3-sdk

Version:

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

22 lines 549 B
import { BigintIsh } from '@iguanadex/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