@pangolindex/sdk
Version:
🛠An SDK for building applications on top of Pangolin.
21 lines (20 loc) • 513 B
TypeScript
import { BigintIsh } from '../../constants';
/**
* 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;