tornado-oracles/package.json
tornadocontrib c9f43ff292
Remove broken external oracle and fixed EIP-1559 gasPrice calculation
* Updated 1inch Oracle link and use multicall3 ( because this is the only contract supported on sepolia )
* Simplify EIP-1559 gasPrice calculation ( EIP-1559 removes necessity of using external oracles, just enough premium of basefee will ensure transaction being mined )
* Apply respective premium for fees ( Only applied on V6 Oracle class )
* Removed @tornado/gas-price-oracle oracle
2024-11-23 18:43:55 +00:00

52 lines
1.4 KiB
JSON

{
"name": "@tornado/tornado-oracles",
"version": "3.4.0",
"description": "Oracles for Tornado-specific transactions & actions",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"build:abi": "yarn typechain --target ethers-v5 --out-dir src/contracts ./abis/*.abi.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build && npm run build:esm",
"prepublish": "npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "https://git.tornado.ws/tornado-packages/tornado-oracles.git"
},
"keywords": [
"Gas",
"price",
"Gas",
"Gas",
"limit",
"Oracle"
],
"author": "Theo",
"license": "MIT",
"dependencies": {
"@tornado/tornado-config": "^2.0.0",
"@types/node": "^20.5.1",
"bignumber.js": "^9.1.1",
"ethers": "5.7"
},
"devDependencies": {
"@typechain/ethers-v5": "^11.1.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"registry": "https://git.tornado.ws/api/packages/tornado-packages/npm"
}
}