@dethcrypto/eth-sdk
Version:
🛠Generate type-safe, lightweight SDK for your Ethereum smart contracts
5 lines (4 loc) • 347 B
TypeScript
import { AsyncOrSync } from 'ts-essentials';
import type { NetworkSymbol } from '../abi-management/networks';
import type { Address, EthSdkContracts } from './types';
export declare function traverseContractsMap(contracts: EthSdkContracts, traverse: (network: NetworkSymbol, path: string[], address: Address) => AsyncOrSync<void>): Promise<void>;