From 395c71cff8076e7e1a4b97fe644da1ce7c5d8c0a Mon Sep 17 00:00:00 2001 From: TheGreatAxios Date: Wed, 26 Jun 2024 19:29:07 -0700 Subject: [PATCH 1/3] Add Exorde Mapping to Europa --- config/mainnet.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/config/mainnet.ts b/config/mainnet.ts index ff03972b..867f26d2 100644 --- a/config/mainnet.ts +++ b/config/mainnet.ts @@ -82,6 +82,11 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { name: "Compass", symbol: "CMPS", iconUrl: "https://assets.coingecko.com/coins/images/38439/standard/CompassLogo.png" + }, + exd: { + name: "Exorde", + symbol: "EXD", + iconUrl: "https://assets.coingecko.com/coins/images/28684/standard/logo-exorde.png" } }, "connections": { @@ -190,6 +195,12 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { "hub": "elated-tan-skat" } } + }, + exd: { + address: "0x02de007d412266a2e0fa9287c103474170f06560", + chains: { + "elated-tan-skat": {} + } } } }, @@ -326,6 +337,14 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { chains: { "green-giddy-denebola": {} } + }, + exd: { + address: "0xCfEBA92BD362B2F76fC30a89C433DE50a1D62BcA", + chains: { + "mainnet": { + clone: true + } + } } } }, From 7feca3bd3fedf56c468ec8945bef19f267ea4de4 Mon Sep 17 00:00:00 2001 From: TheGreatAxios Date: Thu, 27 Jun 2024 11:26:08 -0700 Subject: [PATCH 2/3] Add HMKR and PAXG --- config/mainnet.ts | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/config/mainnet.ts b/config/mainnet.ts index 867f26d2..188bddc5 100644 --- a/config/mainnet.ts +++ b/config/mainnet.ts @@ -87,6 +87,17 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { name: "Exorde", symbol: "EXD", iconUrl: "https://assets.coingecko.com/coins/images/28684/standard/logo-exorde.png" + }, + hmkr: { + name: "Hitmakr", + decimals: 9, + symbol: "HMKR", + iconUrl: "https://assets.coingecko.com/coins/images/36660/standard/HITMAKR_logo.png" + }, + paxg: { + name: "PAX Gold", + symbol: "PAXG", + iconUrl: "https://assets.coingecko.com/coins/images/9519/standard/paxgold.png" } }, "connections": { @@ -201,6 +212,18 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { chains: { "elated-tan-skat": {} } + }, + hmkr: { + address: "0x3300b02efa180c99a2f61f4731665b51e4e254c4", + chains: { + "elated-tan-skat": {} + } + }, + paxg: { + address: "0x45804880De22913dAFE09f4980848ECE6EcbAf78", + chains: { + "elated-tan-skat": {} + } } } }, @@ -345,6 +368,22 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { clone: true } } + }, + hmkr: { + address: "0x57a3d5faa172f5984cdcd4885fd4f0baac88e558", + chains: { + "mainnet": { + clone: true + } + } + }, + paxg: { + address: "0x18478516f526b7947d995e04871562adbeeaa62d", + chains: { + "mainnet": { + clone: true + } + } } } }, From 418fd1b72c32a5f84000a5442ea489ac81283d31 Mon Sep 17 00:00:00 2001 From: TheGreatAxios Date: Thu, 27 Jun 2024 11:27:24 -0700 Subject: [PATCH 3/3] Bugfix on decimals --- config/mainnet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mainnet.ts b/config/mainnet.ts index 188bddc5..a2553ece 100644 --- a/config/mainnet.ts +++ b/config/mainnet.ts @@ -90,7 +90,7 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = { }, hmkr: { name: "Hitmakr", - decimals: 9, + decimals: "9", symbol: "HMKR", iconUrl: "https://assets.coingecko.com/coins/images/36660/standard/HITMAKR_logo.png" },