-
Notifications
You must be signed in to change notification settings - Fork 7
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: Upgrade parachain 1.21.0 #61
Merged
+2,373
−2,207
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ff4ead3
chore: added combined types generated from kintsugi mainner, kintsugi…
bvotteler dd4d971
chore: bump lib, move interbtc-types dependency to dev deps
bvotteler 09dcd8c
feat: add LpToken pairs to schema, update encoding and string convers…
bvotteler 5b97780
Merge branch 'master' into feat-zenlink-amm
bvotteler c57e4ed
chore: generate db migration files
bvotteler 7965acb
chore: Fix docs on updating SQL schema. Resolves interlay/interbtc-sq…
bvotteler e9a4c25
chore: bump version
bvotteler 75cdaa7
chore: rename LpToken -> PooledToken, and LpTokenPair -> LpToken
bvotteler 64b5191
chore: bump polkadot/util-crypto dependency to aligh with indirect deps
bvotteler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"outDir": "src/types", | ||
"specVersions": "indexer/combined.chainVersions.jsonl", | ||
"typesBundle": "indexer/typesBundle.json", | ||
"events": [ | ||
"BTCRelay.StoreMainChainHeader", | ||
"Escrow.Deposit", | ||
"Escrow.Withdraw", | ||
"Issue.CancelIssue", | ||
"Issue.ExecuteIssue", | ||
"Issue.IssuePeriodChange", | ||
"Issue.RequestIssue", | ||
"Oracle.FeedValues", | ||
"Redeem.CancelRedeem", | ||
"Redeem.ExecuteRedeem", | ||
"Redeem.RequestRedeem", | ||
"Redeem.RedeemPeriodChange", | ||
"Security.UpdateActiveBlock", | ||
"Tokens.Transfer", | ||
"VaultRegistry.RegisterVault", | ||
"VaultRegistry.IncreaseLockedCollateral", | ||
"VaultRegistry.DecreaseLockedCollateral", | ||
"ZenlinkProtocol.AssetSwap", | ||
"ZenlinkProtocol.LiquidityAdded", | ||
"ZenlinkProtocol.LiquidityRemoved" | ||
], | ||
"calls": [ | ||
"BTCRelay.store_block_header", | ||
"System.set_storage" | ||
], | ||
"storage": [ | ||
"Issue.IssuePeriod", | ||
"Redeem.RedeemPeriod" | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = class Data1673950446387 { | ||
name = 'Data1673950446387' | ||
|
||
async up(db) { | ||
await db.query(`ALTER TABLE "cumulative_volume" DROP COLUMN "type"`) | ||
await db.query(`ALTER TABLE "cumulative_volume" ADD "type" character varying(12) NOT NULL`) | ||
await db.query(`ALTER TABLE "cumulative_volume_per_currency_pair" DROP COLUMN "type"`) | ||
await db.query(`ALTER TABLE "cumulative_volume_per_currency_pair" ADD "type" character varying(12) NOT NULL`) | ||
} | ||
|
||
async down(db) { | ||
await db.query(`ALTER TABLE "cumulative_volume" ADD "type" character varying(10) NOT NULL`) | ||
await db.query(`ALTER TABLE "cumulative_volume" DROP COLUMN "type"`) | ||
await db.query(`ALTER TABLE "cumulative_volume_per_currency_pair" ADD "type" character varying(10) NOT NULL`) | ||
await db.query(`ALTER TABLE "cumulative_volume_per_currency_pair" DROP COLUMN "type"`) | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Great update of the readme! 👏