@tetherto/wdk-wallet-evm-erc-4337
Version:
A simple package to manage BIP-32 wallets for evm blockchains, which implement the erc-4337 standard and its account abstraction features
13 lines (12 loc) • 1.01 kB
TypeScript
export { default } from "./src/wallet-manager-evm-erc-4337.js";
export { default as WalletAccountReadOnlyEvmErc4337 } from "./src/wallet-account-read-only-evm-erc-4337.js";
export { default as WalletAccountEvmErc4337 } from "./src/wallet-account-evm-erc-4337.js";
export type FeeRates = import("@tetherto/wdk-wallet-evm").FeeRates;
export type KeyPair = import("@tetherto/wdk-wallet-evm").KeyPair;
export type EvmTransaction = import("@tetherto/wdk-wallet-evm").EvmTransaction;
export type TransactionResult = import("@tetherto/wdk-wallet-evm").TransactionResult;
export type TransferOptions = import("@tetherto/wdk-wallet-evm").TransferOptions;
export type TransferResult = import("@tetherto/wdk-wallet-evm").TransferResult;
export type EvmTransactionReceipt = import("@tetherto/wdk-wallet-evm").EvmTransactionReceipt;
export type ApproveOptions = import("@tetherto/wdk-wallet-evm").ApproveOptions;
export type EvmErc4337WalletConfig = import("./src/wallet-manager-evm-erc-4337.js").EvmErc4337WalletConfig;