@zetachain/addresses-tools
Advanced tools
Comparing version 0.0.1 to 0.0.4
{ | ||
"name": "@zetachain/addresses-tools", | ||
"version": "0.0.1", | ||
"license": "MIT", | ||
"version": "0.0.4", | ||
"license": "MIT", | ||
"type": "module", | ||
"author": "zetachain", | ||
@@ -6,0 +7,0 @@ "publishConfig": { |
@@ -9,3 +9,3 @@ import type { NetworksUserConfig } from "hardhat/types"; | ||
gasPrice: 80000000000, | ||
url: `https://archive.athens2.zetachain.com/evm`, | ||
url: `https://rpc.ankr.com/zetachain_evm_testnet`, | ||
}, | ||
@@ -12,0 +12,0 @@ "bsc-localnet": { |
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["./src", "./src/**/*.json"], | ||
"compilerOptions": { | ||
"baseUrl": "./src", | ||
"outDir": "./dist", | ||
"rootDir": "./src", | ||
"paths": { | ||
"~/*": [ | ||
"./*" | ||
] | ||
"ts-node": { | ||
// these options are overrides used only by ts-node | ||
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable | ||
"compilerOptions": { | ||
"module": "ES2015" | ||
} | ||
}, | ||
"compilerOptions": { | ||
"target": "ES2018", | ||
"module": "ES2015", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"outDir": "dist", | ||
"declaration": true, | ||
"resolveJsonModule": true, | ||
"allowSyntheticDefaultImports": true, | ||
}, | ||
"exclude": [".yarn", "node_modules"] | ||
} |
15009
384
Yes