wallets-wrapper
Version:
How to install
10 lines (9 loc) • 319 B
TypeScript
import { ethers } from 'ethers';
import { SendSignedTransaction } from '../../../models';
import { ChainIds } from './enums';
export interface StandardContractProps {
signer?: ethers.providers.JsonRpcSigner;
address: string;
network?: ChainIds;
sendSignedTransaction?: SendSignedTransaction;
}