@tetherto/wdk-wallet-evm
Version:
A simple package to manage BIP-32 wallets for evm blockchains.
17 lines (15 loc) • 405 B
JavaScript
require('@nomicfoundation/hardhat-ethers')
/** @type {import('hardhat/config').HardhatUserConfig} */
module.exports = {
networks: {
hardhat: {
accounts: {
mnemonic: 'anger burst story spy face pattern whale quit delay fiction ball solve',
path: "m/44'/60'/0'/0",
initialIndex: 0,
count: 1,
accountsBalance: '1000000000000000000000'
}
}
}
}