Compare commits

...

1 Commits

Author SHA1 Message Date
iamveritas 0bb2b17385 take 1, for testing the waters 2023-04-25 12:15:10 +03:00
@@ -786,3 +786,102 @@ paths:
threshold:
type: "integer"
description: the sum of weights that must be met or exceeded to satisfy the permission
/send_transaction2:
post:
description: This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
operationId: send_transaction2
requestBody:
content:
application/json:
schema:
type: object
properties:
signatures:
type: array
description: array of signatures required to authorize transaction
items:
$ref: "https://docs.eosnetwork.com/openapi/v2.0/Signature.yaml"
compression:
type: boolean
description: Compression used, usually false
packed_context_free_data:
type: string
description: json to hex
packed_trx:
type: string
description: Transaction object json to hex
responses:
"200":
description: OK
content:
application/json:
schema:
description: Returns Nothing
/get_transaction_status:
post:
description: This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
operationId: get_transaction_status
requestBody:
content:
application/json:
schema:
type: object
properties:
signatures:
type: array
description: array of signatures required to authorize transaction
items:
$ref: "https://docs.eosnetwork.com/openapi/v2.0/Signature.yaml"
compression:
type: boolean
description: Compression used, usually false
packed_context_free_data:
type: string
description: json to hex
packed_trx:
type: string
description: Transaction object json to hex
responses:
"200":
description: OK
content:
application/json:
schema:
description: Returns Nothing
/compute_transaction:
post:
description: This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
operationId: compute_transaction
requestBody:
content:
application/json:
schema:
type: object
properties:
signatures:
type: array
description: array of signatures required to authorize transaction
items:
$ref: "https://docs.eosnetwork.com/openapi/v2.0/Signature.yaml"
compression:
type: boolean
description: Compression used, usually false
packed_context_free_data:
type: string
description: json to hex
packed_trx:
type: string
description: Transaction object json to hex
responses:
"200":
description: OK
content:
application/json:
schema:
description: Returns Nothing