@stable-io/cctp-sdk-cctpr-evm
Version:
EVM support for the CCTPR corridor of the CCTP SDK
21 lines • 932 B
JavaScript
// Copyright (c) 2025 Stable Technologies Inc
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
import { getCorridors } from "./getCorridors.js";
import { transfer } from "./transfer.js";
export * from "./registry.js";
export * from "./contractSdk/index.js";
export * from "./contractSdk/index.js";
/**
* @todo: this import looks weird.
*/
export { extraDomains, feeAdjustmentTypes } from "./contractSdk/layouts/common.js";
export { corridors } from "./contractSdk/layouts/common.js";
export { routerHookDataLayout } from "./contractSdk/layouts/routerHookData.js";
export { chainDataLayout } from "./contractSdk/layouts/constructor.js";
export const init = (network) => ({
getCorridors: getCorridors(),
transfer: transfer(network),
});
//# sourceMappingURL=index.js.map