Skip to content

Commit

Permalink
add paseo parachains
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Oct 30, 2024
1 parent 1a61a22 commit caf636c
Showing 1 changed file with 72 additions and 1 deletion.
73 changes: 72 additions & 1 deletion web/packages/api/src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export const SNOWBRIDGE_ENV: { [id: string]: SnowbridgeEnvironment } = {
id: "ethereum",
name: "Ethereum",
type: "ethereum",
destinationIds: ["assethub"],
destinationIds: ["assethub", "hydradx"],
erc20tokensReceivable: [
{
id: "WETH",
Expand Down Expand Up @@ -220,6 +220,77 @@ export const SNOWBRIDGE_ENV: { [id: string]: SnowbridgeEnvironment } = {
},
],
},
{
id: "muse",
name: "Muse",
type: "substrate",
destinationIds: [],
paraInfo: {
paraId: 3369,
destinationFeeDOT: 500_000_000n,
skipExistentialDepositCheck: true,
addressType: "20byte",
decimals: 18,
maxConsumers: 16,
},
erc20tokensReceivable: [
// TODO: Register
{
id: "MYTH",
address: "0xb34a6924a02100ba6ef12af1c798285e8f7a16ee",
minimumTransferAmount: 10_000_000_000_000_000n,
},
],
},
{
id: "bifrost",
name: "Bifrost",
type: "substrate",
destinationIds: [],
paraInfo: {
paraId: 2030,
destinationFeeDOT: 20_000_000n,
skipExistentialDepositCheck: false,
addressType: "32byte",
decimals: 12,
maxConsumers: 16,
},
erc20tokensReceivable: [
// TODO: Register
{
id: "WETH",
address: "0xfff9976782d46cc05630d1f6ebab18b2324d6b14",
minimumTransferAmount: 15_000_000_000_000n,
},
],
},
{
id: "hydradx",
name: "Hydration",
type: "substrate",
destinationIds: [],
paraInfo: {
paraId: 2034,
destinationFeeDOT: 100_000_000n,
skipExistentialDepositCheck: true,
addressType: "32byte",
decimals: 12,
maxConsumers: 16,
},
erc20tokensReceivable: [
{
id: "WETH",
address: "0xfff9976782d46cc05630d1f6ebab18b2324d6b14",
minimumTransferAmount: 15_000_000_000_000n,
},
// Todo fix registration
{
id: "WBTC",
address: "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
minimumTransferAmount: 1n,
},
],
},
],
config: {
BEACON_HTTP_API: "https://lodestar-sepolia.chainsafe.io",
Expand Down

0 comments on commit caf636c

Please sign in to comment.