Skip to content

Commit 91a7a23

Browse files
committed
chore: rebuild pnpm lockfile
1 parent c905fbe commit 91a7a23

File tree

9 files changed

+8140
-7908
lines changed

9 files changed

+8140
-7908
lines changed

apps/price_pusher/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"@pythnetwork/pyth-ton-js": "workspace:*",
7272
"@pythnetwork/solana-utils": "workspace:*",
7373
"@solana/web3.js": "^1.93.0",
74+
"@ton/core": "^0.59.0",
7475
"@ton/crypto": "^3.3.0",
7576
"@ton/ton": "^15.1.0",
7677
"@types/pino": "^7.0.5",

governance/xc_admin/packages/xc_admin_cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@solana/web3.js": "^1.73.0",
3434
"@sqds/mesh": "^1.0.6",
3535
"commander": "^9.5.0",
36-
"typescript": "^4.9.4"
36+
"typescript": "catalog:"
3737
},
3838
"dev-dependencies": {
3939
"ts-node": "^10.9.2"

governance/xc_admin/packages/xc_admin_frontend/components/tabs/General.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ const General = ({ proposerServerUrl }: { proposerServerUrl: string }) => {
201201
uploadAnchor.setAttribute('type', 'file')
202202
uploadAnchor.setAttribute('accept', '.json')
203203
uploadAnchor.addEventListener('change', (e) => {
204+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
204205
const file = (e.target as HTMLInputElement).files![0]
205206
const reader = new FileReader()
206207
reader.onload = (e) => {

governance/xc_admin/packages/xc_admin_frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"prettier": "catalog:",
6262
"prettier-plugin-tailwindcss": "^0.1.13",
6363
"tailwindcss": "^3.1.8",
64-
"typescript": "^5.4.5",
64+
"typescript": "catalog:",
6565
"vercel": "^37.12.1"
6666
}
6767
}

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@
2323
},
2424
"pnpm": {
2525
"overrides": {
26-
"@injectivelabs/[email protected]>@injectivelabs/token-metadata": "1.10.42",
27-
"@solana/web3.js@^1.93.0": "1.92.3"
28-
},
29-
"patchedDependencies": {
30-
26+
"@solana/[email protected]>rpc-websockets": "7.11.0"
3127
}
3228
}
3329
}

patches/[email protected]

Lines changed: 0 additions & 13 deletions
This file was deleted.

pnpm-lock.yaml

Lines changed: 8131 additions & 7876 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

target_chains/cosmwasm/tools/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"author": "",
1414
"license": "Apache-2.0",
1515
"dependencies": {
16-
"@chain-registry/types": "^0.43.6",
1716
"@cosmjs/cosmwasm-stargate": "^0.32.3",
1817
"@cosmjs/encoding": "^0.32.3",
1918
"@cosmjs/proto-signing": "^0.32.3",
@@ -22,11 +21,11 @@
2221
"@injectivelabs/networks": "^1.14.6",
2322
"@injectivelabs/sdk-ts": "1.14.7",
2423
"@ltd/j-toml": "^1.38.0",
24+
"@osmonauts/utils": "^1.18.0",
2525
"@pythnetwork/price-service-client": "workspace:*",
2626
"@pythnetwork/xc-admin-common": "workspace:*",
2727
"@terra-money/terra.js": "^3.1.10",
2828
"adm-zip": "^0.5.10",
29-
"chain-registry": "^1.45.1",
3029
"dotenv": "^16.0.0",
3130
"ethers": "^5.4.4",
3231
"long": "^5.2.3",

target_chains/cosmwasm/tools/src/ci/deployer/osmosis.ts

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { getSigningOsmosisClient, cosmwasm, estimateOsmoFee } from "osmojs";
2-
import { chains } from "chain-registry";
3-
import { Chain } from "@chain-registry/types";
1+
import { getSigningOsmosisClient, cosmwasm } from "osmojs";
2+
import { estimateOsmoFee } from "@osmonauts/utils";
43
import { readFileSync } from "fs";
54
import { DeliverTxResponse, calculateFee } from "@cosmjs/stargate";
65
import { wasmTypes } from "@cosmjs/cosmwasm-stargate/build/modules/wasm/messages";
@@ -16,16 +15,10 @@ export type OsmosisHost = {
1615
};
1716

1817
export class OsmosisDeployer implements Deployer {
19-
private chain: Chain;
2018
constructor(
2119
private endpoint: string,
2220
private mnemonic: string,
23-
) {
24-
const c = chains.find(({ chain_name }) => chain_name === "osmosis");
25-
if (c === undefined)
26-
throw new Error("Could not find Osmosis in chain registry");
27-
this.chain = c;
28-
}
21+
) {}
2922

3023
private async getAccountAddress(): Promise<string> {
3124
const signer = await DirectSecp256k1HdWallet.fromMnemonic(this.mnemonic);

0 commit comments

Comments
 (0)