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