UNPKG

@dappykit/sdk

Version:

Web3 SDK for DApps

20 lines (19 loc) 593 B
import { SDK } from '../../src'; import { INetworkConfig } from '../../src/network-config'; import 'dotenv/config'; /** * Wait time for transaction to be mined in milliseconds */ export declare const WAIT_TX_MS = 20000; export declare const OP_SEPOLIA_MNEMONIC: string; export declare function isNoData(): boolean; export declare function isNoMnemonic(): boolean; export declare const EMPTY_MULTIHASH: { hash: string; hashFunction: number; size: number; }; /** * Create SDK instance */ export declare function createSdk(config: INetworkConfig, mnemonic: string): Promise<SDK>;