Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Augment update to use metadata v15 #2191

Merged
merged 5 commits into from
Oct 21, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/e2e-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{env.TAG_FROM_UI}}
ref: ${{github.event.inputs.branch}}
- name: Set Env Vars
run: |
echo "API_AUGMENT_VERSION=$(echo ${{ env.TAG_FROM_UI }} | sed 's/^v//')" >> $GITHUB_ENV
Expand Down
631 changes: 316 additions & 315 deletions e2e/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
"@helia/unixfs": "^4.0.0",
"@noble/curves": "^1.6.0",
"@polkadot-api/merkleize-metadata": "^1.1.7",
"@polkadot/api": "14.0.1",
"@polkadot/types": "14.0.1",
"@polkadot/util": "13.1.1",
"helia": "^5.0.0",
"@polkadot/api": "14.1.1",
"@polkadot/types": "14.1.1",
"@polkadot/util": "13.2.1",
"helia": "^5.0.1",
"multiformats": "^13.3.0",
"rxjs": "^7.8.1",
"workerpool": "^9.2.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@eslint/js": "^9.13.0",
"@types/mocha": "^10.0.9",
"@types/workerpool": "^6.4.7",
"eslint": "^9.12.0",
"eslint": "^9.13.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.11.0",
"mocha": "^10.7.3",
Expand All @@ -43,6 +43,6 @@
"sinon": "^19.0.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
"typescript-eslint": "^8.10.0"
}
}
2 changes: 1 addition & 1 deletion e2e/stateful-pallet-storage/handlePaginated.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ describe('📗 Stateful Pallet Storage Paginated', function () {

const paginated_add_result_1 = ExtrinsicHelper.upsertPage(providerKeys, schemaId, msa_id, page_id, payload_1, 0);
await assert.rejects(paginated_add_result_1.signAndSend('current'), {
message: 'Target page hash does not match current page hash',
name: 'StalePageState',
section: 'statefulStorage',
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Message is not always included in the result from testnet due to how the wasm is compressed

});
});
});
Expand Down
Loading
Loading