@@ -85,10 +85,10 @@ contract CreateSponsoredDeposit is DeploymentUtils {
8585 SponsoredCCTPInterface.SponsoredCCTPQuote memory quote = SponsoredCCTPInterface.SponsoredCCTPQuote ({
8686 sourceDomain: config.get ("cctpDomainId " ).toUint32 (), // Arbitrum CCTP domain
8787 destinationDomain: 19 , // HyperEVM CCTP domain
88- mintRecipient: address (0x83e245941BefbDe29682dF068Bcda006A804eb0C ).toBytes32 (), // Destination handler contract
88+ mintRecipient: address (0xb63c02e60C05F05975653edC83F876C334E07C6d ).toBytes32 (), // Destination handler contract
8989 amount: 10000 , // 100 USDC (6 decimals)
9090 burnToken: config.get ("usdc " ).toAddress ().toBytes32 (), // USDC on Arbitrum
91- destinationCaller: address (0x83e245941BefbDe29682dF068Bcda006A804eb0C ).toBytes32 (), // Destination handler contract
91+ destinationCaller: address (0xb63c02e60C05F05975653edC83F876C334E07C6d ).toBytes32 (), // Destination handler contract
9292 maxFee: 1 , // 0 max fee
9393 minFinalityThreshold: 1000 , // Minimum finality threshold
9494 nonce: keccak256 (abi.encodePacked (block .timestamp , deployer, vm.getNonce (deployer))), // Generate nonce
@@ -97,8 +97,8 @@ contract CreateSponsoredDeposit is DeploymentUtils {
9797 maxUserSlippageBps: 0 , // 4% max user slippage (400 basis points)
9898 finalRecipient: address (0x9A8f92a830A5cB89a3816e3D267CB7791c16b04D ).toBytes32 (), // Final recipient
9999 finalToken: address (0xb88339CB7199b77E23DB6E890353E22632Ba630f ).toBytes32 (), // USDC on HyperEVM
100- executionMode: uint8 (SponsoredCCTPInterface.ExecutionMode.ArbitraryActionsToEVM ), // DirectToCore mode
101- actionData: actionDataEmpty // Empty for DirectToCore mode
100+ executionMode: uint8 (SponsoredCCTPInterface.ExecutionMode.DirectToCore ), // DirectToCore mode
101+ actionData: emptyActionData // Empty for DirectToCore mode
102102 });
103103
104104 console.log ("SponsoredCCTPQuote created: " );
0 commit comments