UNPKG

@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

34 lines (26 loc) 1.65 kB
// Copyright 2024 Tether Operations Limited // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. 'use strict' /** @typedef {import('@tetherto/wdk-wallet-evm').FeeRates} FeeRates */ /** @typedef {import('@tetherto/wdk-wallet-evm').KeyPair} KeyPair */ /** @typedef {import('@tetherto/wdk-wallet-evm').EvmTransaction} EvmTransaction */ /** @typedef {import('@tetherto/wdk-wallet-evm').TransactionResult} TransactionResult */ /** @typedef {import('@tetherto/wdk-wallet-evm').TransferOptions} TransferOptions */ /** @typedef {import('@tetherto/wdk-wallet-evm').TransferResult} TransferResult */ /** @typedef {import('@tetherto/wdk-wallet-evm').EvmTransactionReceipt} EvmTransactionReceipt */ /** @typedef {import('@tetherto/wdk-wallet-evm').ApproveOptions} ApproveOptions */ /** @typedef {import('./src/wallet-manager-evm-erc-4337.js').EvmErc4337WalletConfig} EvmErc4337WalletConfig */ 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'