-
Notifications
You must be signed in to change notification settings - Fork 18
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
Introduce protocol version 3 #4741
Conversation
* fix(iota-framework): fixed `CoinManager` metadata immutability validation * feat: create the protocol version `3` * fix(iota-framework): `CoinManager` maximum supply check is fixed * fix(iota-framework-snapshot): the snapshot is updated * fix: update test snapshots * fix(iota-framework): removed extra assert from the `CoinManager::add_additional_metadata` function * fix(iota-framework-snapshot): the snapshot is updated * fix: update test snapshots * fix(iota-json-rpc-tests): changed the coin package serialization in `create_and_mint_coins` * fix(iota-graphql-e2e-tests): the snapshots update
#4759) * feat(iota-framework): added clock-based methods to the timelock module * fix(iota-framework-snapshot): update the snapshot * fix: update test snapshots * fix(iota-graphql-e2e-tests): the snapshots update
… relocation (#19672)` (#4712) * Merge from sui@59f115b * Update snapshots and the generated files * Set relocate_event_module config in version 3 * Remove the new config from old snapshots * Update the openrpc.json * Add regression test * Convert the modification for version_2.snap * Add protocol config change record * Fix typo * Fmt
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 4 Skipped Deployments
|
…st fix (#4769) * fix(iota-framework): the `test_expiration_time_is_passed` timelock test fix * fix(iota-framework): added a `test_unlock_with_clock_expiration_time_is_passed` test
…why there are 2 events from the nft module
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
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 apart from the fmt issue
Co-authored-by: Levente Pap <levente.pap@iota.org>
604ab48
to
6135a14
Compare
/// The error returned if you try to edit immutable metadata | ||
const ENoMutableMetadata: u64 = 5; | ||
/// The maximum supply supported by `CoinManager` | ||
const MAX_SUPPLY: u64 = 18_446_744_073_709_551_614u64; |
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.
Is there a reason this decreased by 1 from the number used below?
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.
See #4595
Description of change
Feature branch to introduce protocol version 3