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

255 prepare foucoco runtime upgrade to include zenlinklptoken changes in the runtime #277

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
52e82a6
first iteration: fixes the development-runtime package.
b-yap May 30, 2023
e162d93
fixed some errors in foucoco runtime. Not yet finished.
b-yap May 30, 2023
a7140a8
new iteration, fixing `foucoco-runtime`
b-yap Jun 1, 2023
dc26263
set network to None
b-yap Jun 1, 2023
2d0d06d
fix foucoco runtime and update spacewalk tag
b-yap Jun 6, 2023
790e207
bring back `FungiblesAdapter`
b-yap Jun 6, 2023
9105148
fix amplitude-runtime
b-yap Jun 7, 2023
62f6052
fix pendulum-runtime
b-yap Jun 7, 2023
218ed78
fix node
b-yap Jun 7, 2023
31da48c
cleanup some test build errors
b-yap Jun 8, 2023
46700b7
add .lock
b-yap Jun 8, 2023
7799c7a
fix test build issues
b-yap Jun 8, 2023
19dceb0
fix test build issues of parachain-staking.
b-yap Jun 12, 2023
0e20e72
https://github.com/pendulum-chain/pendulum/pull/242#discussion_r12263…
b-yap Jun 13, 2023
1b1cbdc
partially fixed test integration test cases
b-yap Jun 14, 2023
5d5c62d
fixed test integration test cases
b-yap Jun 14, 2023
e9ac19a
remove extern crate core
b-yap Jun 14, 2023
b1d0371
revert comment println
b-yap Jun 14, 2023
302bf39
Implemented initial draft code for the conversion between ZenlinkAsse…
adelarja Jun 14, 2023
9988ad4
added PARA_CHAIN_ID constant
adelarja Jun 14, 2023
d9f5b03
Fixed shifting issue
adelarja Jun 14, 2023
c003c2b
Improved format and added hard-coded values for Stellar assets
adelarja Jun 14, 2023
fe5b292
Added BRL, TZS and USDC issuers
adelarja Jun 15, 2023
94282f4
Added StellarNative
adelarja Jun 15, 2023
81fa633
Added Err(()) return to match statement
adelarja Jun 15, 2023
6f1ff80
Fixed type issues
adelarja Jun 15, 2023
b63df99
Added TryFrom for WrappedCurrency to CurrencyId. Improved format
adelarja Jun 16, 2023
82cb978
changed 'zenlink_id_to_currency_id' function
adelarja Jun 16, 2023
aaa621d
Added unit tests for the conversion functions
adelarja Jun 16, 2023
73c7e81
Abstracted methods into separate file
adelarja Jun 19, 2023
5bf9a43
Changed module
adelarja Jun 19, 2023
a5564d3
Refactored runtime configuration of zenlink
adelarja Jun 19, 2023
19abbde
Improved code format. Added unit tests
adelarja Jun 20, 2023
e573c15
Update Cargo.toml
adelarja Jun 20, 2023
d8c0655
Update Cargo.toml
adelarja Jun 20, 2023
901d3c4
Extended statement to check also the issuer in the match of conversio…
adelarja Jun 21, 2023
2a53682
Merge branch '241-update-spacewalk-dependencies-and-configure-the-lp-…
adelarja Jun 21, 2023
db97794
Renamed test varible and test name.
adelarja Jun 21, 2023
1239e98
Refactored zenlink_id_to_currency_id function. Now it checks that the…
adelarja Jun 21, 2023
c8ce574
Added unit test for Err result when converting between zenlink asset …
adelarja Jun 21, 2023
406f1b1
Merge branch '241-update-spacewalk-dependencies-and-configure-the-lp-…
adelarja Jun 29, 2023
dd6ef35
Merged branches to test
adelarja Jun 29, 2023
3f1399d
Bumped spec_version and transaction_version numbers.
adelarja Jun 29, 2023
c34634e
Asset type is checked now. renamed variables
adelarja Jul 6, 2023
7f45510
Added stellar module with issuer definitions.
adelarja Jul 6, 2023
ee098ab
Changed spacewalk dependency commit hash
adelarja Jul 6, 2023
b4733f5
Fixed spacewalk dependencies in node
adelarja Jul 7, 2023
6d3df88
Implemented GenerateLpAssetId to change the generate_lp_asset_id func…
adelarja Jul 10, 2023
234b35f
last runtime upgrade
adelarja Jul 11, 2023
5ba5cde
Fixed merge conflicts
adelarja Jul 17, 2023
bd7f29d
Bumped spec_version to 18, and transaction_version to 26.
adelarja Jul 17, 2023
3c6e60c
Replaced Cargo.lock by main file
adelarja Jul 17, 2023
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
48 changes: 25 additions & 23 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions runtime/foucoco/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("amplitude"),
impl_name: create_runtime_str!("amplitude"),
authoring_version: 1,
spec_version: 14,
spec_version: 18,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 25,
transaction_version: 26,
state_version: 1,
};

Expand Down
Loading