@wormhole-labs/cctp-executor-route
v1.0.3
Published
This package implements an AutomaticRoute for use with the Wormhole Typescript SDK
Readme
CCTP Executor Route
v1.0 Migration Guide (from 0.x)
Breaking change: Auto-registration on import has been removed. Consumers must now call register() explicitly before using any route factories.
Before (0.x)
import { cctpExecutorRoute } from "@wormhole-labs/cctp-executor-route";
// Protocols auto-registered on import
const route = cctpExecutorRoute(config);After (1.x)
import {
register,
cctpExecutorRoute,
} from "@wormhole-labs/cctp-executor-route";
register(); // call once, at app startup
const route = cctpExecutorRoute(config);register() is idempotent and safe to call multiple times. For tree-shake-friendly bundling, you may also call platform-specific registers: import { register } from '@wormhole-labs/cctp-executor-route/evm' (also /aptos, /sui, /svm).
Transfer Example
This project includes a script for testing a USDC token transfer using the CCTPv1 or CCTPv2 Executor routes with a referrer fee. You can change the source and destination chains in the examples/transfer.ts file.
Prerequisites
First, install dependencies and build the project:
npm ci && npm run buildConfigure Environment Variables
Set your private keys as environment variables:
export EVM_PRIVATE_KEY=<your_evm_private_key>
export SVM_PRIVATE_KEY=<your_svm_private_key>
export SUI_PRIVATE_KEY=<your_sui_private_key>
export APTOS_PRIVATE_KEY=<your_aptos_private_key>Run the Example
To fetch a quote for the transfer:
npm run examples:testTo actually send the transfer, set an additional environment variable:
SEND_TRANSFER=true npm run examples:test⚠️ Note:
- All relevant contract addresses and constants are defined in
src/consts.
⚠ This software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Or plainly spoken - this is a very complex piece of software which targets a bleeding-edge, experimental smart contract runtime. Mistakes happen, and no matter how hard you try and whether you pay someone to audit it, it may eat your tokens, set your printer on fire or startle your cat. Cryptocurrencies are a high-risk investment, no matter how fancy.
