This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Web3 = require("web3"); | |
const bip39 = require("bip39"); | |
const hdkey = require("ethereumjs-wallet/hdkey"); | |
const EncryptData = require("./ek"); | |
const BN = require("bignumber.js"); | |
const TX = require("ethereumjs-tx"); | |
const UNIT_GWEI = 1000000000; | |
const RPCMainNetNode = "https://mainnet.infura.io/v3/key"; | |
const initializationVector = "initializationVector"; |