Files
stacks-puppet-node/docs/rpc/api/core-node/post-fee-transaction.schema.json
2021-10-13 10:19:23 -05:00

17 lines
381 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "POST request for estimated fee",
"title": "TransactionFeeEstimateRequest",
"type": "object",
"additionalProperties": false,
"required": ["transaction_payload"],
"properties": {
"transaction_payload": {
"type": "string"
},
"estimated_len": {
"type": "integer"
}
}
}