-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dynamic extrinsic signing support (#389)
* extrinsics: Add dynamic types for extrinsics, add new rpc endpoint * extrinsic: Add errors to validation funcs * extrinsic: Generate extrinsic payload and signature based on metadata * rpc: Extract submit and watch func * extrinsic: Add more comments * extrinsic: Add support for AssetID signed field. * extrinsic: Add support for PrevalidateAttests signed extension * extrinsic: Add support for CheckNetworkMembership signed extra * chore: Update encode/decode tests for types, fix imports format * test: Adjust APIs, registry types, and tests * rpc: Re-add pending extrinsics retrieval * lib: Add extrinsic decoder, adjust tests, types, and rpc * registry: Add extra check for generic extrinsic type, add test * extrinsic: Add more tests * lib: Drop old metadata examples, fix linter * CI: Install docker-compose * tests: Fix state tests * registry: Remove unused Acala signature struct
- Loading branch information
Showing
93 changed files
with
3,825 additions
and
7,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,12 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Install compose | ||
run: | | ||
sudo curl -SL https://github.com/docker/compose/releases/download/v2.29.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose | ||
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose | ||
sudo chmod +x /usr/bin/docker-compose | ||
docker compose version | ||
- name: Run tests | ||
run: make test-dockerized | ||
- name: Upload coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.