aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/signature_data_schema.ts
blob: 8cafff9e8cb4431f9f189adc2d0499bb841d3d05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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',
};