Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Zetazzz committed Feb 17, 2025
1 parent 2f9450f commit 06a62f1
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/encoding/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"lint": "eslint . --fix"
},
"dependencies": {
"@interchainjs/math": "1.9.11",
"base64-js": "^1.3.0",
"bech32": "^1.1.4",
"readonly-date": "^1.0.0"
Expand Down
1 change: 1 addition & 0 deletions packages/encoding/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ export { fromBech32, normalizeBech32, toBech32 } from "./bech32";
export { fromHex, toHex } from "./hex";
export { fromRfc3339, toRfc3339 } from "./rfc3339";
export { fromUtf8, toUtf8 } from "./utf8";
export { toAccAddress, longify, decodeCosmosSdkDecFromProto } from "./utils";
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { fromHex } from "@interchainjs/encoding";
import { fromHex } from "./hex";

import { decodeCosmosSdkDecFromProto } from "./utils";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { fromAscii, fromBech32 } from "@interchainjs/encoding";
import { fromAscii } from "./ascii";
import { fromBech32 } from "./bech32";
import { Decimal, Uint64 } from "@interchainjs/math";

/**
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
"lint": "eslint . --fix"
},
"dependencies": {
"@chain-registry/v2": "1.71.71",
"@chain-registry/v2-types": "0.53.72",
"@interchainjs/types": "1.9.11",
"bech32": "^2.0.0",
"decimal.js": "^10.4.3"
Expand Down
1 change: 0 additions & 1 deletion packages/utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ export * from "./arrays";
export * from "./typechecks";
export * from "./chain";
export * from "./rpc";
export * from "./utils";
export * from "./logs";
export * from "./events";
12 changes: 12 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,18 @@
resolved "https://registry.yarnpkg.com/@chain-registry/v2-types/-/v2-types-0.53.68.tgz#83173c3e79c7c89a382c4017e15db71970038847"
integrity sha512-MCK9RKJ67VYWCJ0HtnDYJIottx4paoo6wKMbH3s6xWFzLVwufJWi0iKMoppVOIXWk+yr+h9W3puaLJPnYNez9A==

"@chain-registry/[email protected]", "@chain-registry/v2-types@^0.53.40":
version "0.53.72"
resolved "https://registry.yarnpkg.com/@chain-registry/v2-types/-/v2-types-0.53.72.tgz#3621cc1e94cacb430c657c2af63d4825950b880f"
integrity sha512-HIbDFK0R1aZTbXdTN7FOZI+z3lHt4ZQWRYDctUk3IwvGxOC04gYCa45SfsHx4YpqALXa0hu9Acj5fUSp4mnZ5w==

"@chain-registry/[email protected]":
version "1.71.71"
resolved "https://registry.yarnpkg.com/@chain-registry/v2/-/v2-1.71.71.tgz#648eab79a487a2680c77b85fab96d5c5d5fb3eea"
integrity sha512-JdzJHRduw58io8ZOKy7mnAt9oFJqWSa5Bn5srWXG5326ztUCe1MLd9yZMMCos57mc4UFrOJm8Gr9V7lKtEZvjQ==
dependencies:
"@chain-registry/v2-types" "^0.53.40"

"@chain-registry/v2@^1.65.6":
version "1.71.121"
resolved "https://registry.yarnpkg.com/@chain-registry/v2/-/v2-1.71.121.tgz#38baa88c2d6eb59e8996a0bc2b754b2f492468d9"
Expand Down

0 comments on commit 06a62f1

Please sign in to comment.