UNPKG

@tetherto/wdk-wallet-evm

Version:

A simple package to manage BIP-32 wallets for evm blockchains.

13 lines (12 loc) 929 B
export { default } from "./src/wallet-manager-evm.js"; export { default as WalletAccountReadOnlyEvm } from "./src/wallet-account-read-only-evm.js"; export { default as WalletAccountEvm } from "./src/wallet-account-evm.js"; export type EvmTransactionReceipt = import("ethers").TransactionReceipt; export type FeeRates = import("@tetherto/wdk-wallet").FeeRates; export type KeyPair = import("@tetherto/wdk-wallet").KeyPair; export type TransactionResult = import("@tetherto/wdk-wallet").TransactionResult; export type TransferOptions = import("@tetherto/wdk-wallet").TransferOptions; export type TransferResult = import("@tetherto/wdk-wallet").TransferResult; export type EvmTransaction = import("./src/wallet-account-read-only-evm.js").EvmTransaction; export type EvmWalletConfig = import("./src/wallet-account-read-only-evm.js").EvmWalletConfig; export type ApproveOptions = import("./src/wallet-account-evm.js").ApproveOptions;