Skip to content

Commit 767aaee

Browse files
committed
fix(xc-admin/frontend): handle large upd_product proposals
This change updates @pythnetwork/client package that has a change that allows encoding large upd_product proposals. More info on [the PR](pyth-network/pyth-client-js#79) in the pyth-client-js repo.
1 parent ce1e0c0 commit 767aaee

File tree

9 files changed

+126
-87
lines changed

9 files changed

+126
-87
lines changed

contract_manager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@cosmjs/stargate": "^0.32.3",
2828
"@injectivelabs/networks": "^1.14.6",
2929
"@mysten/sui.js": "^0.49.1",
30-
"@pythnetwork/client": "^2.21.0",
30+
"@pythnetwork/client": "^2.21.1",
3131
"@pythnetwork/contract-manager": "workspace:*",
3232
"@pythnetwork/cosmwasm-deploy-tools": "workspace:*",
3333
"@pythnetwork/entropy-sdk-solidity": "workspace:*",

governance/xc_admin/packages/crank_executor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@certusone/wormhole-sdk": "^0.9.9",
2424
"@coral-xyz/anchor": "^0.29.0",
2525
"@project-serum/anchor": "^0.25.0",
26-
"@pythnetwork/client": "^2.9.0",
26+
"@pythnetwork/client": "^2.21.1",
2727
"@pythnetwork/xc-admin-common": "workspace:*",
2828
"@solana/web3.js": "^1.73.0",
2929
"@sqds/mesh": "^1.0.6",

governance/xc_admin/packages/crank_pythnet_relayer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@certusone/wormhole-sdk": "^0.9.9",
2424
"@coral-xyz/anchor": "^0.29.0",
25-
"@pythnetwork/client": "^2.9.0",
25+
"@pythnetwork/client": "^2.21.1",
2626
"@pythnetwork/xc-admin-common": "workspace:*",
2727
"@solana/web3.js": "^1.73.0",
2828
"@sqds/mesh": "^1.0.6",

governance/xc_admin/packages/proposer_server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"dependencies": {
2323
"@coral-xyz/anchor": "^0.29.0",
24-
"@pythnetwork/client": "^2.17.0",
24+
"@pythnetwork/client": "^2.21.1",
2525
"@pythnetwork/xc-admin-common": "workspace:*",
2626
"@solana/web3.js": "^1.76.0",
2727
"@sqds/mesh": "^1.0.6",

governance/xc_admin/packages/xc_admin_cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@coral-xyz/anchor": "^0.29.0",
2424
"@ledgerhq/hw-transport": "^6.27.10",
2525
"@ledgerhq/hw-transport-node-hid": "^6.27.10",
26-
"@pythnetwork/client": "^2.9.0",
26+
"@pythnetwork/client": "^2.21.1",
2727
"@pythnetwork/pyth-solana-receiver": "workspace:*",
2828
"@pythnetwork/solana-utils": "workspace:^",
2929
"@pythnetwork/xc-admin-common": "workspace:*",

governance/xc_admin/packages/xc_admin_common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@injectivelabs/sdk-ts": "^1.10.72",
3131
"@injectivelabs/token-metadata": "~1.10.42",
3232
"@project-serum/anchor": "^0.25.0",
33-
"@pythnetwork/client": "^2.17.0",
33+
"@pythnetwork/client": "^2.21.1",
3434
"@pythnetwork/pyth-solana-receiver": "workspace:*",
3535
"@pythnetwork/solana-utils": "workspace:*",
3636
"@solana/buffer-layout": "^4.0.1",

governance/xc_admin/packages/xc_admin_frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@coral-xyz/anchor": "^0.29.0",
1313
"@headlessui/react": "^1.7.7",
14-
"@pythnetwork/client": "^2.21.0",
14+
"@pythnetwork/client": "^2.21.1",
1515
"@pythnetwork/solana-utils": "workspace:^",
1616
"@pythnetwork/xc-admin-common": "workspace:*",
1717
"@radix-ui/react-label": "^2.0.0",

pnpm-lock.yaml

+119-79
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

target_chains/sui/cli/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"dependencies": {
1313
"@certusone/wormhole-sdk": "^0.9.12",
1414
"@mysten/sui.js": "^0.49.1",
15-
"@pythnetwork/client": "^2.17.0",
1615
"@pythnetwork/contract-manager": "workspace:*",
1716
"@pythnetwork/price-service-client": "^1.4.0",
1817
"@pythnetwork/price-service-sdk": "^1.2.0",

0 commit comments

Comments
 (0)