tornado-oracles/package.json
Theo 0d3ea02015 Bump library version to 2.0.0:
- Fix BSC gas price estimation: use 'instant' price for gas instead of 'fast', because 'fast' is about 1 GWEI, and 'instant' about 3 GWEI, and 'fast' transaction can take more than 2-3 hours to execute
	- Remove unnecessary parameter type in all functions that used to get gas price(-s)
2023-08-28 09:51:24 -07:00

52 lines
1.3 KiB
JSON

{
"name": "@tornado/tornado-oracles",
"version": "2.0.0",
"description": "Gas oracle for Tornado-specific transactions",
"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"
},
"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/gas-price-oracle": "^0.5.3",
"@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"
}
}