UNPKG

@codegame.dev/wallet-cli

Version:

A CLI tool for managing wallets across multiple blockchains, supporting operations like wallet creation, balance checking, transfers, and fee estimation.

3 lines 100 B
export const sleep = (ms: number) => { return new Promise(resolve => setTimeout(resolve, ms)); }