@stable-io/cctp-sdk-cctpr-evm
Version:
EVM support for the CCTPR corridor of the CCTP SDK
12 lines • 655 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 { universalAddressItem } from "@stable-io/cctp-sdk-definitions";
import { supportedDomainItem, gasDropoffItem } from "./common.js";
export const routerHookDataLayout = (network) => [
{ name: "destinationDomain", ...supportedDomainItem(network) },
{ name: "mintRecipient", ...universalAddressItem },
{ name: "gasDropoff", ...gasDropoffItem },
];
//# sourceMappingURL=routerHookData.js.map