From edf94d292c3259f5a8d631b65fb13cc8586834f7 Mon Sep 17 00:00:00 2001 From: Giuliano Conti Date: Tue, 7 Jan 2025 19:20:19 -0300 Subject: [PATCH] Add BioProtocol NTT (#1225) * add BioProtocol ntt * add AltLayer token config (#1223) --------- Co-authored-by: yuli-ferna --- apps/connect/public/images/tokens/bio.svg | 3 ++ apps/connect/src/env/token-bridge.mainnet.ts | 50 ++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 apps/connect/public/images/tokens/bio.svg diff --git a/apps/connect/public/images/tokens/bio.svg b/apps/connect/public/images/tokens/bio.svg new file mode 100644 index 000000000..c45d6041a --- /dev/null +++ b/apps/connect/public/images/tokens/bio.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/connect/src/env/token-bridge.mainnet.ts b/apps/connect/src/env/token-bridge.mainnet.ts index b113b4ff0..f48badb43 100644 --- a/apps/connect/src/env/token-bridge.mainnet.ts +++ b/apps/connect/src/env/token-bridge.mainnet.ts @@ -598,6 +598,7 @@ export const ENV: Env = { type: "wormhole", }, ], + quoter: "Nqd6XqA8LbsCuG8MLWWuP865NV6jR1MbXeKxD4HLKDJ", }, ], HoudiniSwap: [ @@ -625,6 +626,31 @@ export const ENV: Env = { quoter: "Nqd6XqA8LbsCuG8MLWWuP865NV6jR1MbXeKxD4HLKDJ", }, ], + BioProtocol: [ + { + chain: "Ethereum", + manager: "0x1783E7d1F498321D7E15044d769621E1beDc7F4C", + token: "0xcb1592591996765Ec0eFc1f92599A19767ee5ffA", + transceiver: [ + { + address: "0x676Cd89c6B6f02d6975547fD7Da1d5A8dbc8a3E1", + type: "wormhole", + }, + ], + }, + { + chain: "Solana", + manager: "ntt11hdA4n1PupHhLyT1fsjg4YF9agVz3CTuzLRQs1H", + token: "bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ", + transceiver: [ + { + address: "5Yaf3N7MAEThp5FBBjUri8rv9mWxFEiJBjTKYYeKEi37", + type: "wormhole", + }, + ], + quoter: "Nqd6XqA8LbsCuG8MLWWuP865NV6jR1MbXeKxD4HLKDJ", + }, + ], }, }), ], @@ -1570,6 +1596,30 @@ export const ENV: Env = { coinGeckoId: "altlayer", decimals: 18, }, + BioProtocolEthereum: { + key: "BioProtocolEthereum", + symbol: "BIO", + nativeChain: "Ethereum", + tokenId: { + chain: "Ethereum", + address: "0xcb1592591996765Ec0eFc1f92599A19767ee5ffA", + }, + icon: "images/tokens/bio.svg", + coinGeckoId: "bio-protocol", + decimals: 18, + }, + BioProtocolSolana: { + key: "BioProtocolSolana", + symbol: "BIO", + nativeChain: "Solana", + tokenId: { + chain: "Solana", + address: "bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ", + }, + icon: "images/tokens/bio.svg", + coinGeckoId: "bio-protocol", + decimals: 9, + }, }, } ),