Alexis Pentori 358063820f
wallet-fetcher: adding a better way to handle the rate limiting
Signed-off-by: Alexis Pentori <alexis@status.im>
2024-01-24 14:27:21 +01:00

55 lines
748 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"wallet_name": {
"type": [
"null",
"string"
]
},
"name": {
"type": [
"null",
"string"
]
},
"symbol": {
"type": [
"null",
"string"
]
},
"description": {
"type": [
"null",
"string"
]
},
"chain": {
"type": [
"null",
"string"
]
},
"balance": {
"type": [
"null",
"number"
]
},
"decimal": {
"type": [
"null",
"number"
]
},
"tags": {
"type": [
"null",
"string"
]
}
}
}