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 }; }