curl --location --request POST 'https://tapi-sandbox.trustology-test.com/graphql/' \
--header 'x-api-key: {{tapi-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"mutation (\n $from: String!\n $to: String!\n $value: String!\n $gasPrice: String\n $gasLimit: String\n $nonce: Int\n $chainId: Int\n) {\n\tcreateEthereumTransaction(\n\t\tcreateTransactionInput: {\n\t\t\tethereumTransaction: {\n fromAddress: $from\n to: $to\n value: $value\n gasPrice: $gasPrice\n gasLimit: $gasLimit\n nonce: $nonce\n chainId: $chainId\n\t\t\t}\n\t\t\tsource: \"API\",\n sendToNetworkWhenSigned: false\n\t\t}\n\t) {\n\t\t... on CreateEthereumTransactionResponse {\n\t\t\trequestId\n\t\t}\n\t\tsignData {\n\t\t\ttransaction {\n fromAddress\n\t\t\t\tto\n\t\t\t\tvalue\n\t\t\t\tgasPrice\n\t\t\t\tgasLimit\n\t\t\t\tnonce\n\t\t\t\tchainId\n\t\t\t\tdata\n\t\t\t}\n\t\t\thdWalletPath {\n\t\t\t\thdWalletPurpose\n\t\t\t\thdWalletCoinType\n\t\t\t\thdWalletAccount\n\t\t\t\thdWalletUsage\n\t\t\t\thdWalletAddressIndex\n\t\t\t}\n\t\t\tunverifiedDigestData {\n\t\t\t\ttransactionDigest\n signData\n\t\t\t\tshaSignData\n\t\t\t}\n\t\t}\n\t}\n}\n","variables":{"from":"0xB96966D32f4654b823eaa3844EB381932c04C18D","to":"0x61Df7eAb4f740AFCeB8e468cb16d323f262e3970","value":"100000000000000","gasPrice":"30000000000","gasLimit":"21000","nonce":0,"chainId":137}}'