curl --request POST \
--url https://sandbox.oumla.com/api/v1/contract-interactions/network/{network}/contract-address/{contractAddress}/functions/write \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"addressId": "<string>",
"clientShare": "<string>",
"abiFunction": {
"name": "<string>",
"inputs": [
{
"name": "<string>",
"type": "<string>",
"internalType": "<string>"
}
],
"outputs": [
{
"name": "<string>",
"type": "<string>",
"internalType": "<string>"
}
],
"type": "<string>",
"stateMutability": "<string>"
},
"amount": "<string>",
"feeLevel": "LOW"
}
'