Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from radixdlt/feature/token-actions-refinement
Browse files Browse the repository at this point in the history
Accommodate changes in API implementation
  • Loading branch information
siy authored Jun 21, 2021
2 parents a892878 + 4b5dee6 commit e1bd7ff
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions open-rpc-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -2434,8 +2434,8 @@
"from": {
"$ref": "#/components/schemas/address"
},
"rri": {
"$ref": "#/components/schemas/rri"
"publicKeyOfSigner": {
"$ref": "#/components/schemas/pubKey"
},
"symbol": {
"type": "string"
Expand All @@ -2459,7 +2459,7 @@
"required": [
"type",
"from",
"rri",
"publicKeyOfSigner",
"symbol",
"name",
"description",
Expand All @@ -2478,6 +2478,12 @@
"CreateMutableSupplyToken"
]
},
"from": {
"$ref": "#/components/schemas/address"
},
"publicKeyOfSigner": {
"$ref": "#/components/schemas/pubKey"
},
"symbol": {
"type": "string"
},
Expand All @@ -2493,12 +2499,11 @@
"tokenUrl": {
"type": "string"
},
"signerPublicKey": {
"type": "string"
}
},
"required": [
"type",
"from",
"publicKeyOfSigner",
"symbol",
"name"
],
Expand Down Expand Up @@ -2617,6 +2622,10 @@
"type": "string",
"pattern": "^(brx|rdx)1qsp[023456789ACDEFGHJKLMNPQRSTUVWXYZacdefghjklmnpqrstuvwxyz]{58}$"
},
"pubKey": {
"type": "string",
"pattern": "^[0123456789abcdef]+$"
},
"nodeAddress": {
"type": "string",
"pattern": "^(brn|rdn)1qsp[023456789ACDEFGHJKLMNPQRSTUVWXYZacdefghjklmnpqrstuvwxyz]{58}$"
Expand All @@ -2627,7 +2636,7 @@
},
"txID": {
"type": "string",
"pattern": "^[0123456789abcfed]{64}$",
"pattern": "^[0123456789abcdef]{64}$",
"maxLength": 64,
"minLength": 64
}
Expand Down

0 comments on commit e1bd7ff

Please sign in to comment.