In flow Contract Wallet Flow, function node Purchase Eth, the Wyre account ID is hardcoded on line 4:
wyreLink = `${wyreLink}?destCurrency=ETH&dest=${msg.payload.user.account.fields.account_address}&accountId=AC_8MAWQ88LVEA`
Instead, it should use the global variable wyre_account_id:
wyreLink = `${wyreLink}?destCurrency=ETH&dest=${msg.payload.user.account.fields.account_address}&accountId=${global.get('wyre_account_id')}`
In flow
Contract Wallet Flow, function nodePurchase Eth, the Wyre account ID is hardcoded on line 4:Instead, it should use the global variable
wyre_account_id: