export * from "./accounts"; export * from "./contracts"; export * from "./stats"; export * from "./transactions"; export declare type BscScanOptions = { apikey?: string; baseUrl?: string; }; export declare type APIResponse = { status: "1" | "0"; message: string; result: T; }; export declare type Token = { blockHash: string; blockNumber: string; confirmations: string; contractAddress: string; cumulativeGasUsed: string; from: string; gas: string; gasPrice: string; gasUsed: string; hash: string; input: string; nonce: string; timeStamp: string; to: string; tokenDecimal: string; tokenName: string; tokenSymbol: string; transactionIndex: string; }; export declare type BEP20 = Token & { value: string; }; export declare type ERC721 = Token & { tokenID: string; };