-
Notifications
You must be signed in to change notification settings - Fork 28
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
feat: add support for foreignAssets
pallet
#362
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀 Some notes:
The more metadata we add to the tests in txwrapper-dev the higher the chance the CI is going to timeout and fail the tests... It's still an unresolved issue we don't understand. But just wanted to put that as a reminder for us.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docs update ?
We only do doc updates before a release now since it updates 400 files. |
ss58Format: 2, | ||
tokenDecimals: 10, | ||
tokenSymbol: 'DOT', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to double check, shouldn't the prefix version of the AssetHub
be zero? Similar to Polkadot?
Similar to ss58-registry and Asset Hub chain Spec? The prefix == 2 is dedicated to kusama
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, thanks for catching that!
Not yet, we are going to do the docs before the releases, as to not clutter the PRs |
Maybe have this reflected somewhere ? In the release process (if its not there already) ? |
Done #363 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks clean to me (with my limited knowledge of ts), nice job here 👍
This pull request has been mentioned on Polkadot Forum. There might be relevant details there: https://forum.polkadot.network/t/parity-tech-update-for-march/7226/1 |
Added support for the
foreignAssets
instance of theassets
pallet. Also fixed the tests that used thekusama asset hub
and previously referencedpolkadot asset hub
, added the PAH metadata and registry, and added tests for theforeignAssets
pallet.Closes #361