Skip to content

Commit

Permalink
Fix contract write call inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
vbaranov committed Dec 1, 2020
1 parent 4462178 commit 09e2362
Showing 1 changed file with 36 additions and 8 deletions.
44 changes: 36 additions & 8 deletions apps/block_scout_web/assets/js/lib/smart_contract/functions.js
Expand Up @@ -122,31 +122,51 @@ function callMethod (isWalletEnabled, $functionInputs, explorerChainId, $form, f
const warningMsg = 'You haven\'t approved the reading of account list from your MetaMask or MetaMask/Nifty wallet is locked or is not installed.'
return openWarningModal('Unauthorized', warningMsg)
}
const contractAbi = getContractABI($form)
const functionAbi = contractAbi.find(abi =>
abi.name === functionName
)
const inputs = functionAbi && functionAbi.inputs

const $functionInputsExceptTxValue = $functionInputs.filter(':not([tx-value])')
const args = $.map($functionInputsExceptTxValue, element => $(element).val())
const args = $.map($functionInputsExceptTxValue, (element, ind) => {
const val = $(element).val()
const inputType = inputs[ind] && inputs[ind].type
let preparedVal
if (isNonSpaceInputType(inputType)) { preparedVal = val.replace(/\s/g, '') } else { preparedVal = val }
if (isArrayInputType(inputType)) {
return preparedVal.split(',')
} else { return preparedVal }
})

const txValue = getTxValue($functionInputs)
const contractAddress = $form.data('contract-address')
const contractAbi = getContractABI($form)

const { chainId: walletChainIdHex } = window.ethereum
compareChainIDs(explorerChainId, walletChainIdHex)
.then(currentAccount => {
if (functionName) {
const TargetContract = new window.web3.eth.Contract(contractAbi, contractAddress)
const functionAbi = contractAbi.find(abi =>
abi.name === functionName
)
const inputsCount = functionAbi && functionAbi.inputs.length
const inputsCount = inputs && inputs.length
let methodToCall
const sendParams = { from: currentAccount, value: txValue || 0 }
if (inputsCount > 1) {
methodToCall = TargetContract.methods[functionName](...args).send(sendParams)
} else {
const inputType = inputs[0] && inputs[0].type
if (Array.isArray(args) && args[0] === '') {
methodToCall = TargetContract.methods[functionName]([]).send(sendParams)
} else { methodToCall = TargetContract.methods[functionName](args).send(sendParams) }
if (isArrayInputType(inputType)) {
methodToCall = TargetContract.methods[functionName]([]).send(sendParams)
} else {
methodToCall = TargetContract.methods[functionName]().send(sendParams)
}
} else {
if (isArrayInputType(inputType)) {
methodToCall = TargetContract.methods[functionName](args).send(sendParams)
} else {
methodToCall = TargetContract.methods[functionName](args[0]).send(sendParams)
}
}
}
methodToCall
.on('error', function (error) {
Expand Down Expand Up @@ -178,6 +198,14 @@ function callMethod (isWalletEnabled, $functionInputs, explorerChainId, $form, f
})
}

function isArrayInputType (inputType) {
return inputType && inputType.includes('[]')
}

function isNonSpaceInputType (inputType) {
return inputType.includes('address') || inputType.includes('int') || inputType.includes('bool')
}

function getTxValue ($functionInputs) {
const WEI_MULTIPLIER = 10 ** 18
const $txValue = $functionInputs.filter('[tx-value]:first')
Expand Down

0 comments on commit 09e2362

Please sign in to comment.