@dolltoken/v2-sdk
Version:
⚒️ An SDK for building applications on top of Doll V2
16 lines (15 loc) • 409 B
TypeScript
import { BigintIsh } from '@dolltoken/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;
}
export declare function toHex(bigintIsh: BigintIsh): string;