Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/lerna.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ jobs:
run: npx lerna run test
- name: Lint
run: npx lerna run lint
- name: Generate ABIs
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added these steps to the existing lerna pipeline instead of making a separate workflow. i think it should be faster this way because it doesn't have to install all of the npm packages in a separate thing, but def open to doing it a different way.

run: npx lerna run generate-abi
- name: Check Solidity ABI
run: git diff --exit-code target_chains/ethereum/sdk/solidity/abis/
152 changes: 144 additions & 8 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"target_chains/cosmwasm/sdk/js",
"target_chains/ethereum/contracts",
"target_chains/ethereum/sdk/js",
"target_chains/ethereum/sdk/solidity",
"third_party/pyth/p2w-relay",
"wormhole_attester/sdk/js"
],
Expand Down
2 changes: 1 addition & 1 deletion price_pusher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"dependencies": {
"@injectivelabs/sdk-ts": "^1.0.484",
"@pythnetwork/price-service-client": "*",
"@pythnetwork/pyth-sdk-solidity": "^2.2.0",
"@pythnetwork/pyth-sdk-solidity": "*",
"@truffle/hdwallet-provider": "^2.1.3",
"joi": "^17.6.0",
"web3": "^1.8.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@pythnetwork/pyth-evm-js": "^1.0.1",
"@pythnetwork/pyth-sdk-solidity": "^1.0.1",
"@pythnetwork/pyth-evm-js": "*",
"@pythnetwork/pyth-sdk-solidity": "*",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
Expand Down
2 changes: 1 addition & 1 deletion target_chains/ethereum/sdk/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
],
"license": "Apache-2.0",
"devDependencies": {
"@pythnetwork/pyth-sdk-solidity": "^2.2.0",
"@pythnetwork/pyth-sdk-solidity": "*",
"@truffle/hdwallet-provider": "^2.1.5",
"@types/ethereum-protocol": "^1.0.2",
"@types/jest": "^29.4.0",
Expand Down
Loading