lotus-v4-sdk
Version:
⚒️ An SDK for building applications on top of Lotus V4
21 lines (20 loc) • 515 B
TypeScript
import { BigintIsh } from '@uniswap/sdk-core';
/**
* Generated method parameters for executing a call.
*/
export interface MethodParameters {
/**
* The hex encoded calldata to perform the given operation
*/
calldata: string;
/**
* The amount of ether (wei) to send in hex.
*/
value: string;
}
/**
* Converts a big int to a hex string
* @param bigintIsh
* @returns The hex encoded calldata
*/
export declare function toHex(bigintIsh: BigintIsh): string;