@iam4x/bsc-scan
Version:
An efficient BNB and token balance scanner
15 lines • 505 B
TypeScript
import type { Provider } from '../types';
declare type BlockTag = string | number;
interface TransactionRequest {
to: string;
data: string;
}
export interface EthersProviderLike {
call(transaction: TransactionRequest, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>;
}
/**
* Ethers.js provider, which can be used with an instance of the Ethers.js Provider class.
*/
declare const provider: Provider<EthersProviderLike>;
export default provider;
//# sourceMappingURL=ethers.d.ts.map