57aa950a2f
* type definitions * remove Object.assign(), use BigNumber * path custom ethers provider to constructor. test * providers test * using gas-price-oracle v0.5.0 * manager params provider type * provider type fix * update deps * maxPriorityFee param, tests fix * fix: cancel/replace * fix: gasParams check * fix: handleRpcError with web3 provider Co-authored-by: Danil Kovtonyuk <danx.kov@gmail.com>
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "tx-manager",
|
|
"version": "0.4.9",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"scripts": {
|
|
"eslint": "eslint --ext .js --ignore-path .gitignore .",
|
|
"prettier:check": "prettier --check . --config .prettierrc",
|
|
"prettier:fix": "prettier --write . --config .prettierrc",
|
|
"lint": "yarn eslint && yarn prettier:check",
|
|
"test": "mocha --timeout 300000"
|
|
},
|
|
"keywords": [],
|
|
"author": "Roman Semenov <semenov.roma@gmail.com>",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/tornadocash/tx-manager.git"
|
|
},
|
|
"files": [
|
|
"src/*",
|
|
"index.d.ts"
|
|
],
|
|
"dependencies": {
|
|
"async-mutex": "^0.2.4",
|
|
"ethers": "^5.4.6",
|
|
"gas-price-oracle": "^0.5.0",
|
|
"web3-core-promievent": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"dotenv": "^8.2.0",
|
|
"eslint": "^7.10.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"mocha": "^8.1.3",
|
|
"prettier": "^2.1.2",
|
|
"web3": "^1.7.4",
|
|
"why-is-node-running": "^2.2.0"
|
|
}
|
|
}
|