aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/schemas/ec_signature_schema.ts
blob: e4249afc2c2c2e7f2c29c1607ef66cb4b2eb7d78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const ECSignatureSchema = {
    id: '/ECSignature',
    properties: {
        v: {type: 'number'},
        r: {type: 'string'},
        s: {type: 'string'},
    },
    required: ['v', 'r', 's'],
    type: 'object',
};