From 9cab9a59c9ade4bf4aa27974f10e0d7873ac7677 Mon Sep 17 00:00:00 2001 From: msvstj Date: Tue, 25 Jun 2024 15:04:05 +0300 Subject: [PATCH 1/3] feat: add astar networks --- src/networks.ts | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/src/networks.ts b/src/networks.ts index 1aa679b..b18f226 100644 --- a/src/networks.ts +++ b/src/networks.ts @@ -371,4 +371,59 @@ export const networkInfo = new Map([ stagingBaseAPI: "https://transaction-safe-stage.saakuru.com/api/v1", }, ], + [ + 592, + { + chainID: 592, + name: "Astar", + shortName: "astr", + currencySymbol: "ASTR", + baseAPI: "https://transaction.safe.astar.network/api/v1", + stagingBaseAPI: "https://transaction.staging-safe.astar.network/api/v1", + }, + ], + [ + 3776, + { + chainID: 3776, + name: "Astar zkEVM", + shortName: "astar-zkevm", + currencySymbol: "ETH", + baseAPI: "https://transaction-zkevm.safe.astar.network/api/v1", + stagingBaseAPI: "https://transaction-zkevm.staging-safe.astar.network/api/v1", + }, + ], + [ + 336, + { + chainID: 336, + name: "Shiden", + shortName: "sdn", + currencySymbol: "SDN", + baseAPI: "https://transaction-shiden.safe.astar.network/api/v1", + stagingBaseAPI: "https://transaction-shiden.staging-safe.astar.network/api/v1", + }, + ], + [ + 6038361, + { + chainID: 6038361, + name: "zKyoto", + shortName: "azkyt", + currencySymbol: "ETH", + baseAPI: "https://transaction-zkyoto.safe.astar.network/api/v1", + stagingBaseAPI: "https://transaction-zkyoto.staging-safe.astar.network/api/v1", + }, + ], + [ + 81, + { + chainID: 81, + name: "Shibuya", + shortName: "sby", + currencySymbol: "SBY", + baseAPI: "https://transaction-shibuya.safe.astar.network/api/v1", + stagingBaseAPI: "https://transaction-shibuya.staging-safe.astar.network/api/v1", + }, + ], ]); From 1432214c5f2409621c4dc14831bca6b14d65f4c5 Mon Sep 17 00:00:00 2001 From: Leoni Mella Date: Wed, 10 Jul 2024 11:57:12 -0300 Subject: [PATCH 2/3] feat: add support for Zircuit Network --- src/networks.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/networks.ts b/src/networks.ts index b18f226..235b9b9 100644 --- a/src/networks.ts +++ b/src/networks.ts @@ -426,4 +426,26 @@ export const networkInfo = new Map([ stagingBaseAPI: "https://transaction-shibuya.staging-safe.astar.network/api/v1", }, ], + [ + 48899, + { + chainID: 48899, + name: "Zircuit Testnet", + shortName: "zircuit-testnet", + currencySymbol: "ETH", + baseAPI: "https://transaction-testnet.safe.zircuit.com/api/v1", + stagingBaseAPI: "https://transaction-testnet.staging.safe.zircuit.com/api/v1", + }, + ], + [ + 48900, + { + chainID: 48900, + name: "Zircuit Mainnet", + shortName: "zircuit-mainnet", + currencySymbol: "ETH", + baseAPI: "https://transaction.safe.zircuit.com/api/v1", + stagingBaseAPI: "https://transaction.staging.safe.zircuit.com/api/v1", + }, + ], ]); From db93fb065816ceded78ae833945982ea98c2199e Mon Sep 17 00:00:00 2001 From: Den Smalonski Date: Mon, 15 Jul 2024 16:32:21 +0200 Subject: [PATCH 3/3] feat: add mantle --- src/networks.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/networks.ts b/src/networks.ts index 235b9b9..f44d88b 100644 --- a/src/networks.ts +++ b/src/networks.ts @@ -448,4 +448,26 @@ export const networkInfo = new Map([ stagingBaseAPI: "https://transaction.staging.safe.zircuit.com/api/v1", }, ], + [ + 5000, + { + chainID: 5000, + name: "Mantle", + shortName: "mantle", + currencySymbol: "MNT", + baseAPI: "https://transaction.multisig.mantle.xyz/api/v1", + stagingBaseAPI: "https://transaction.staging.multisig.mantle.xyz/api/v1", + }, + ], + [ + 5003, + { + chainID: 5003, + name: "Mantle Sepolia", + shortName: "mnt-sep", + currencySymbol: "MNT", + baseAPI: "https://transaction-sepolia.multisig.mantle.xyz/api/v1", + stagingBaseAPI: "https://transaction-sepolia.staging.multisig.mantle.xyz/api/v1", + }, + ], ]);