UNPKG

@astonic-io/astonic-sdk

Version:

Official SDK for interacting with the Astonic Protocol

8 lines (7 loc) 363 B
import { PopulatedTransaction, ethers, providers } from 'ethers'; import { IChainClient } from './interfaces'; export declare class TestChainClient implements IChainClient { getSigner(): Promise<ethers.Signer | providers.Provider>; getChainId(): Promise<number>; populateTransaction(tx: PopulatedTransaction): Promise<providers.TransactionRequest>; }