UNPKG

@astonic-io/astonic-sdk

Version:

Official SDK for interacting with the Astonic Protocol

7 lines (6 loc) 272 B
import { ethers, providers } from 'ethers'; export interface IChainClient { getSigner(): Promise<ethers.Signer | providers.Provider>; getChainId(): Promise<number>; populateTransaction(tx: ethers.PopulatedTransaction): Promise<providers.TransactionRequest>; }