Skip to main content

Execute Transaction

Loading...

Updated on
Mar 24, 2026

Execute Transaction

Parameters

tx
string
REQUIRED
Loading...
sigs
array
REQUIRED
Loading...

Returns

data
object
Loading...
executeTransaction
object
Loading...
errors
array
Loading...
effects
object
Loading...
status
string
Loading...
epoch
object
Loading...
startTimestamp
string
Loading...
gasEffects
object
Loading...
gasSummary
object
Loading...
computationCost
string
Loading...
Request
1
curl --location 'https://docs-demo.sui-mainnet.quiknode.pro/graphql' \
2
--header 'Accept: application/json' \
3
--header 'Content-Type: application/json' \
4
--data '{
5
"query": "mutation ($tx: String!, $sigs: [String!]!) { executeTransaction(transactionDataBcs: $tx, signatures: $sigs) { errors effects { status epoch { startTimestamp } gasEffects { gasSummary { computationCost } } } } }",
6
"variables": {
7
"tx": "YOUR_TRANSACTION_DATA_BCS",
8
"sigs": ["YOUR_SIGNATURE"]
9
}
10
}'
11
1
curl --location 'https://docs-demo.sui-mainnet.quiknode.pro/graphql' \
2
--header 'Accept: application/json' \
3
--header 'Content-Type: application/json' \
4
--data '{
5
"query": "mutation ($tx: String!, $sigs: [String!]!) { executeTransaction(transactionDataBcs: $tx, signatures: $sigs) { errors effects { status epoch { startTimestamp } gasEffects { gasSummary { computationCost } } } } }",
6
"variables": {
7
"tx": "YOUR_TRANSACTION_DATA_BCS",
8
"sigs": ["YOUR_SIGNATURE"]
9
}
10
}'
11
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free