mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
21 lines
643 B
JSON
21 lines
643 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "ReadOnlyFunctionArgs",
|
|
"description": "Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset",
|
|
"type": "object",
|
|
"required": ["sender", "arguments"],
|
|
"properties": {
|
|
"sender": {
|
|
"type": "string",
|
|
"description": "The simulated tx-sender"
|
|
},
|
|
"arguments": {
|
|
"type": "array",
|
|
"description": "An array of hex serialized Clarity values",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|