Skip to content

Commit

Permalink
Merge pull request #45 from npty/feat/add-missing-chains-satellite
Browse files Browse the repository at this point in the history
feat: add missing chains for satellite
  • Loading branch information
vrtnd authored Sep 18, 2023
2 parents fcb328a + d84e864 commit 284159b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/adapters/axelar-satellite/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const gatewayAddresses = {
celo: "0xe432150cce91c13a887f7D836923d5597adD8E31",
kava: "0xe432150cce91c13a887f7D836923d5597adD8E31",
filecoin: "0xe432150cce91c13a887f7D836923d5597adD8E31",
mantle: "0xe432150cce91c13a887f7D836923d5597adD8E31"
} as {
[chain: string]: string;
};
Expand Down
3 changes: 2 additions & 1 deletion src/adapters/axelar-satellite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ const adapter: BridgeAdapter = {
filecoin: constructParams("filecoin"),
polygon: constructParams("polygon"),
bsc: constructParams("bsc"),
// celo: constructParams("celo"),
celo: constructParams("celo"),
mantle: constructParams("mantle"),
};

export default adapter;
17 changes: 16 additions & 1 deletion src/data/bridgeNetworkData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,22 @@ export default [
iconLink: "icons:axelar",
largeTxThreshold: 10000,
url: "",
chains: ["Ethereum", "Polygon", "Fantom", "Avalanche", "Arbitrum", "Optimism", "BSC"],
chains: [
"Ethereum",
"BSC",
"Polygon",
"Avalanche",
"Fantom",
"Arbitrum",
"Optimism",
"Base",
"Linea",
"Moonbeam",
"Celo",
"Kava",
"Filecoin",
"Mantle"
],
chainMapping: {
avalanche: "avax",
},
Expand Down

0 comments on commit 284159b

Please sign in to comment.