UNPKG

@arkane-network/arkane-connect

Version:

Arkane Connect - api library for 3th parties

15 lines (14 loc) 399 B
import { TransactionRequest } from '../../TransactionRequest'; export interface EthereumContractCallInput { type: string; value: string; } export declare class EthereumContractCallExecutionRequest extends TransactionRequest { gasPrice?: number; gas?: number; nonce?: number; to: string; value: number; functionName: string; inputs: EthereumContractCallInput[]; }