Skip to content

Commit

Permalink
Merge pull request #117 from celer-network/update-celer
Browse files Browse the repository at this point in the history
add cBridge base/moonbean/manta pools
  • Loading branch information
vrtnd authored Feb 1, 2024
2 parents a9c9b94 + 289f3e7 commit 22c33ed
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion src/adapters/celer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,20 @@ import { constructTransferParams } from "../../helpers/eventParams";
***Base***
0x243b40e96c6bF21511E53d85c86F6Ec982f9a879 is CircleBridgeProxy
***Manta Pacific***
0x9B36f165baB9ebe611d491180418d8De4b8f3a1f is Celer Network: cBridge 2.0 (pool-based)
***Moonbeam***
0x841ce48F9446C8E281D3F1444cB859b4A6D0738C is Celer Network: cBridge 2.0 (pool-based)
***Base Mainnet**
0x7d43AABC515C356145049227CeE54B608342c0ad is Celer Network: cBridge 2.0 (pool-based)
*/




const contractAddresses = {
ethereum: {
poolV2: ["0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820"],
Expand Down Expand Up @@ -170,8 +182,15 @@ const contractAddresses = {
poolV2: ["0x9B36f165baB9ebe611d491180418d8De4b8f3a1f"],
},
base: {
poolV2: ["0x7d43AABC515C356145049227CeE54B608342c0ad"],
celerCCTP: ["0x243b40e96c6bF21511E53d85c86F6Ec982f9a879"],
}
},
manta: {
poolV2: ["0x9B36f165baB9ebe611d491180418d8De4b8f3a1f"],
},
moonbeam: {
poolV2: ["0x841ce48F9446C8E281D3F1444cB859b4A6D0738C"],
},
} as {
[chain: string]: {
poolV1?: string[];
Expand Down Expand Up @@ -552,6 +571,8 @@ const adapter: BridgeAdapter = {
linea: constructParams("linea"),
scroll: constructParams("scroll"),
base: constructParams("base"),
manta: constructParams("manta"),
moonbeam: constructParams("moonbeam"),
};

export default adapter;

0 comments on commit 22c33ed

Please sign in to comment.