-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Para threads to MMR Root (#1288)
* add back in para threads * fix out of bounds error * forward compatible * fix comment * move function back up * move again * Smoke test on westend (#1291) * Initialize for westend * Update beacon checkpoint * add back in para threads * fix out of bounds error * Smoke tests on westend * Load config from env * Cleanup env * Remove penpal code * Cleanup * Update smoke tests * Add westend env * crontab smoke tests * Split as two tests * Fix typo * Remove assets/parachain non-exist * Revert change * Wait config from env * Load interval from env * Add alarm check no transfer * Adds paseo UI (#1276) * adds paseo UI * remove muse and bump versions * remove muse and bump versions * remove veth token * paseo things * fix subscan urls * revert version * fix versions * Update api package * Fix the merge * Remove unused * Fix find on-chain checkpoint (#1294) * fix wrap around * logs * doesnt have to be in the same period * testing something * fix * adds test and config * writer * fix compilation * remove temp building relayer * comment * bump version --------- Co-authored-by: Alistair Singh <[email protected]> Co-authored-by: Clara van Staden <[email protected]> --------- Co-authored-by: Ron <[email protected]> Co-authored-by: Clara van Staden <[email protected]>
- Loading branch information
1 parent
02a325b
commit 230cbbe
Showing
39 changed files
with
1,312 additions
and
227 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
source_up_if_exists | ||
|
||
export ETH_NETWORK=sepolia | ||
export POLKADOT_NETWORK=westend | ||
|
||
# Endpoints | ||
export BRIDGE_HUB_WS_URL=wss://westend-bridge-hub-rpc.polkadot.io | ||
export ASSET_HUB_WS_URL=wss://westend-asset-hub-rpc.polkadot.io | ||
export RELAY_CHAIN_WS_URL=wss://westend-rpc.polkadot.io | ||
export ETHEREUM_HTTP_API=https://sepolia.infura.io/v3/*** | ||
export ETHEREUM_API=wss://sepolia.infura.io/ws/v3/*** | ||
|
||
# Contract address | ||
export GATEWAY_PROXY_CONTRACT=9ed8b47bc3417e3bd0507adc06e56e2fa360a4e9 | ||
export WETH_CONTRACT=fff9976782d46cc05630d1f6ebab18b2324d6b14 | ||
|
||
# Receiver Accounts | ||
export SUBSTRATE_RECEIVER=5827013ddc4082f8252f8729bd2f06e77e7863dea9202a6f0e7a2c34e356e85a | ||
export ETHEREUM_RECEIVER=302F0B71B8aD3CF6dD90aDb668E49b2168d652fd | ||
|
||
# Sender Keys | ||
export ETHEREUM_KEY=* | ||
export SUBSTRATE_KEY=* | ||
|
||
# Wait period in blocks | ||
WAIT_PERIOD=1000 |
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 |
---|---|---|
|
@@ -16,3 +16,4 @@ src/parachains/bridgehub.rs | |
src/parachains/penpal.rs | ||
src/parachains/relaychain.rs | ||
src/contracts | ||
.envrc |
Oops, something went wrong.