aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/signature_data_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/schemas/signature_data_schema.ts')
-rw-r--r--packages/website/ts/schemas/signature_data_schema.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/website/ts/schemas/signature_data_schema.ts b/packages/website/ts/schemas/signature_data_schema.ts
index 8d3f15926..8cafff9e8 100644
--- a/packages/website/ts/schemas/signature_data_schema.ts
+++ b/packages/website/ts/schemas/signature_data_schema.ts
@@ -1,11 +1,11 @@
export const signatureDataSchema = {
- id: '/SignatureData',
- properties: {
- hash: { type: 'string' },
- r: { type: 'string' },
- s: { type: 'string' },
- v: { type: 'number' },
- },
- required: ['hash', 'r', 's', 'v'],
- type: 'object',
+ id: '/SignatureData',
+ properties: {
+ hash: { type: 'string' },
+ r: { type: 'string' },
+ s: { type: 'string' },
+ v: { type: 'number' },
+ },
+ required: ['hash', 'r', 's', 'v'],
+ type: 'object',
};