Skip to content

fix: missing commas in docs #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions docs/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,9 @@
{
"name": "amount",
"required": true,
"type": "string"
"schema": {
"type": "string"
}
},
{
"name": "address",
Expand Down Expand Up @@ -573,7 +575,7 @@
"type": "object",
"oneOf": [
{
"description": "Output denotes a token transfer."
"description": "Output denotes a token transfer.",
"properties": {
"value": {
"description": "Amount of tokens to transfer.",
Expand All @@ -587,21 +589,21 @@
"address": {
"description": "Recipient of token transfer.",
"$ref": "#/components/schemas/Address"
},
}
},
"required": ["value", "address"]
},
{
"description": "Output is a 'data output'. Register arbitrary data on the blockchain."
"description": "Output is a 'data output'. Register arbitrary data on the blockchain.",
"properties": {
"type": {
"description": "Use to mark this output as a 'data output'."
"description": "Use to mark this output as a 'data output'.",
"const": "data"
},
"data": {
"description": "Unit of information or data point to be registered on the ledger (blockchain).",
"type": "string"
},
}
},
"required": ["data"]
}
Expand Down
Loading