aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/token_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/schemas/token_schema.ts')
-rw-r--r--src/schemas/token_schema.ts11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/schemas/token_schema.ts b/src/schemas/token_schema.ts
index 383c28490..1236e07c1 100644
--- a/src/schemas/token_schema.ts
+++ b/src/schemas/token_schema.ts
@@ -6,8 +6,15 @@ export const tokenSchema = {
decimals: {type: 'number'},
address: {$ref: '/addressSchema'},
url: {
- type: 'string',
- format: 'uri',
+ oneOf: [
+ {
+ type: 'string',
+ format: 'uri',
+ },
+ {
+ enum: [''],
+ },
+ ],
},
},
required: ['name', 'symbol', 'decimals', 'address', 'url'],