UNPKG

@aryze/reforge-sdk

Version:

SDK for interacting with reForge from ARYZE.

17 lines (16 loc) 345 B
import { JsonRpcSigner } from 'ethers'; export interface ISupported { [key: string]: string; } export interface ISupportedList { [key: string]: string[]; } export interface IWalletData { signer?: JsonRpcSigner; rpcUrl?: string; privateKey?: string; } export type TXRequest = { tx: string; walletData: IWalletData; };