aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/signature_data_schema.ts
blob: 8d3f15926d07bf55134dd089ecfcd96fdbc23a5f (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',
};