From 1e5d2573aa599baeac438a3f69bf520bc55bfcbd Mon Sep 17 00:00:00 2001 From: ahramy Date: Fri, 24 Jan 2025 13:04:38 -0800 Subject: [PATCH] fix: fix its address for example --- stellar/deploy-contract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stellar/deploy-contract.js b/stellar/deploy-contract.js index ac859e9cc..b97790ce9 100644 --- a/stellar/deploy-contract.js +++ b/stellar/deploy-contract.js @@ -91,7 +91,7 @@ async function getInitializeArgs(config, chain, contractName, wallet, options) { case 'example': { const gatewayAddress = nativeToScVal(Address.fromString(chain?.contracts?.axelar_gateway?.address), { type: 'address' }); const gasServiceAddress = nativeToScVal(Address.fromString(chain?.contracts?.axelar_gas_service?.address), { type: 'address' }); - const itsAddress = nativeToScVal(chain?.contracts?.InterchainTokenService?.address, { type: 'address' }); + const itsAddress = nativeToScVal(chain?.contracts?.interchain_token_service?.address, { type: 'address' }); return { gatewayAddress, gasServiceAddress, itsAddress }; }