diff --git a/apps/web/src/pages/address/_components/contract/ContractMethodForm.tsx b/apps/web/src/pages/address/_components/contract/ContractMethodForm.tsx index 29eefbab..7e830acb 100644 --- a/apps/web/src/pages/address/_components/contract/ContractMethodForm.tsx +++ b/apps/web/src/pages/address/_components/contract/ContractMethodForm.tsx @@ -1,9 +1,9 @@ -import { useEffect, useState } from "react"; -import { useRouter } from "next/router"; -import { useAccount } from "wagmi"; -import { readContract, writeContract } from "@wagmi/core"; -import { parseEther } from "viem"; -import { ConnectKitButton } from "connectkit"; +import {useEffect, useState} from "react"; +import {useRouter} from "next/router"; +import {useAccount} from "wagmi"; +import {readContract, writeContract} from "@wagmi/core"; +import {parseEther} from "viem"; +import {ConnectKitButton} from "connectkit"; import { ContractMethodType, SmartContractInputOutput, @@ -11,8 +11,8 @@ import { SmartContractOutputWithValue, StateMutability, } from "@api/types"; -import { DFI_TOKEN_SYMBOL } from "shared/constants"; -import { useNetwork } from "@contexts/NetworkContext"; +import {DFI_TOKEN_SYMBOL} from "shared/constants"; +import {useNetwork} from "@contexts/NetworkContext"; import ContractMethodTextInput from "./ContractMethodTextInput"; import ContractMethodResult from "./ContractMethodResult"; import SubmitButton from "./SubmitButton"; @@ -64,25 +64,28 @@ export default function ContractMethodForm({ } }, [resetForm]); + // To handle user input values based on the type of method input + function convertUserInputs(input: KeyValue, inputTypes: SmartContractInputOutput[] | []){ + return Object.entries(input).map(([, value], i) => { + const inputType = inputTypes[i].type; + if (inputType === "bool") { + return value === "true"; + } if (inputType === "uint256") { + return parseEther(value); + } + return value; + }) + } + const handleSubmit = async () => { try { + const convertedValue = convertUserInputs(userInput, method.inputs) setIsLoading(true); const config = { address: contractId as `0x${string}`, abi: [method], functionName: method.name, - args: method.inputs?.length > 0 ? [...Object.values(userInput)].map(value => { - - // Parse the value to boolean if it is 'true' or 'false' - switch (value) { - case "true": - return true; - case "false": - return false; - default: - return value; - } - }) : [], + args: method.inputs?.length > 0 ? convertedValue : [], ...(dfiValue && { value: parseEther(`${Number(dfiValue)}`) }), // to specify the amount of Ether to send with the contract function call, if any }; if (isWriteOrWriteProxy) { @@ -113,7 +116,7 @@ export default function ContractMethodForm({ const hasCompletedInput = method.inputs?.length === fieldsWithValue.length; return ( -