Skip to content

Commit

Permalink
fix $HUNT decimals (#135)
Browse files Browse the repository at this point in the history
* Add HUNT treasury addresses

* mend

* adjust for decimals

* fix format script

Signed-off-by: Nguyen Le Vu Long <[email protected]>

* fix lint-staged

Signed-off-by: Nguyen Le Vu Long <[email protected]>

---------

Signed-off-by: Nguyen Le Vu Long <[email protected]>
Co-authored-by: nmelentjevs <[email protected]>
Co-authored-by: melon <[email protected]>
  • Loading branch information
3 people authored Sep 29, 2023
1 parent c8d4973 commit f92df42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"scripts": {
"build": "rimraf build && rollup -c rollup.config.js",
"test": "jest",
"format": "prettier --write **/*.ts && eslint --fix --ext .ts",
"check-format": "prettier --check **/*.{ts,tsx} && eslint --ext .ts,.tsx .",
"format": "prettier --write **/*.ts && eslint --fix --ext .ts .",
"check-format": "prettier --check **/*.ts && eslint --ext .ts .",
"run-market-cap": "ts-node internal/main.ts",
"prepare": "husky install"
},
Expand All @@ -37,8 +37,10 @@
"axios": "^1.3.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --ext .ts,.tsx --fix",
"*{tsx,ts}": "prettier --write"
"*.ts": [
"prettier --write",
"eslint --fix --ext .ts"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import gensFetcher from "./tokens/gens";
import gensxFetcher from "./tokens/gensx";
import geroFetcher from "./tokens/gero";
import herbFetcher from "./tokens/herb";
import huntFetcher from "./tokens/hunt";
import hoskyFetcher from "./tokens/hosky";
import huntFetcher from "./tokens/hunt";
import iagFetcher from "./tokens/iag";
import ibtcFetcher from "./tokens/ibtc";
import iethFetcher from "./tokens/ieth";
Expand Down

0 comments on commit f92df42

Please sign in to comment.