UNPKG

astra-cl-sdk-dev

Version:

⚒️ An SDK for building applications on top of Astra CL

21 lines (20 loc) 512 B
import { BigintIsh } from 'astra-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 amber (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;