Added openapi response schema for validateaddress

This commit is contained in:
kexkey
2021-11-18 11:23:05 -05:00
parent 4d4bee3fca
commit d42ba92593
2 changed files with 29 additions and 5 deletions

View File

@@ -761,7 +761,7 @@ GET http://cyphernode:8888/validateaddress/address
GET http://cyphernode:8888/validateaddress/tb1p5cyxnuxmeuwuvkwfem96lqzszd02n6xdcjrs20cac6yqjjwudpxqp3mvzv
```
Proxy response:
Proxy response for a valid address:
```json
{
@@ -774,6 +774,14 @@ Proxy response:
}
```
Proxy response for an invalid address:
```json
{
"isvalid": false
}
```
### Spend coins from spending wallet (called by your application)
Calls sendtoaddress RPC on the spending wallet with supplied info. Can supply an eventMessage to be published on successful spending. eventMessage should be base64 encoded to avoid dealing with escaping special characters.