From ff6b974dcb041c8f4f069b4814d283d4e6dae5aa Mon Sep 17 00:00:00 2001 From: Artur Sapek Date: Wed, 18 Sep 2024 11:10:36 -0400 Subject: [PATCH] make individual-protocol Mayan routes available (#2636) --- wormhole-connect/src/index.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/wormhole-connect/src/index.ts b/wormhole-connect/src/index.ts index b06e18283..2aa5101e7 100644 --- a/wormhole-connect/src/index.ts +++ b/wormhole-connect/src/index.ts @@ -13,7 +13,12 @@ import TESTNET from './config/testnet'; // Routes import { DEFAULT_ROUTES, nttRoutes } from './routes/operator'; import { routes } from '@wormhole-foundation/sdk'; -import { MayanRoute } from '@mayanfinance/wormhole-sdk-route'; +import { + MayanRoute, + MayanRouteWH, + MayanRouteMCTP, + MayanRouteSWIFT, +} from '@mayanfinance/wormhole-sdk-route'; import { nttAutomaticRoute, nttManualRoute, @@ -53,4 +58,7 @@ export { AutomaticCCTPRoute, CCTPRoute, MayanRoute, + MayanRouteWH, + MayanRouteMCTP, + MayanRouteSWIFT, };