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;
}
