Skip to content

Commit

Permalink
chore(deps-dev): Bump wrangler from 3.19.0 to 3.21.0 (#135)
Browse files Browse the repository at this point in the history
* chore(deps-dev): Bump wrangler from 3.19.0 to 3.21.0

Bumps [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) from 3.19.0 to 3.21.0.
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/wrangler/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/[email protected]/packages/wrangler)

---
updated-dependencies:
- dependency-name: wrangler
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update mlc_config.json

* lockfile

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ankur Banerjee <[email protected]>
  • Loading branch information
dependabot[bot] and ankurdotb authored Dec 19, 2023
1 parent 498b908 commit 4600565
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 77 deletions.
3 changes: 3 additions & 0 deletions .github/linters/mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"ignorePatterns": [
{
"pattern": "^https://resolver.cheqd.net/"
},
{
"pattern": "^https://twitter.com/"
}
],
"retryOn429": true
Expand Down
179 changes: 108 additions & 71 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"wrangler": "^3.19.0"
"wrangler": "^3.21.0"
},
"private": true
}
2 changes: 1 addition & 1 deletion src/handlers/liquidBalance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function handler(request: Request): Promise<Response> {
account?.base_vesting_account?.base_account?.sequence !== '0'
? Number(
(await (await api.getAvailableBalance(address)).find((b) => b.denom === 'ncheq')?.amount) ?? '0'
)
)
: 0;
let rewards = Number((await await api.distributionGetRewards(address)) ?? '0');
let delegated = Number(
Expand Down

0 comments on commit 4600565

Please sign in to comment.