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