aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/signature_data_schema.ts
blob: 7852abfef6e05a107955d3251f2c9f5679302ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const signatureDataSchema = {
    id: '/SignatureData',
    properties: {
        r: { type: 'string' },
        s: { type: 'string' },
        v: { type: 'number' },
    },
    required: ['r', 's', 'v'],
    type: 'object',
};