-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsampleTypes.js
52 lines (50 loc) · 1.39 KB
/
sampleTypes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const typedMessage = {
primaryType: 'Delegation',
domain: {
name: 'DelegatorTest',
version: '1',
},
types: {
EIP712Domain: [
{ name: 'name', type: 'string' },
{ name: 'version', type: 'string' },
{ name: 'chainId', type: 'uint256' },
{ name: 'verifyingContract', type: 'address' },
],
Invocation: [
{ name: 'transaction', type: 'Transaction' },
{ name: 'authority', type: 'SignedDelegation[]' },
],
Invocations: [
{ name: 'batch', type: 'Invocation[]' },
{ name: 'replayProtection', type: 'ReplayProtection' },
],
SignedInvocation: [
{ name: 'invocations', type: 'Invocations' },
{ name: 'signature', type: 'bytes' },
],
Transaction: [
{ name: 'to', type: 'address' },
{ name: 'gasLimit', type: 'uint256' },
{ name: 'data', type: 'bytes' },
],
ReplayProtection: [
{ name: 'nonce', type: 'uint' },
{ name: 'queue', type: 'uint' },
],
Delegation: [
{ name: 'delegate', type: 'address' },
{ name: 'authority', type: 'bytes32' },
{ name: 'caveats', type: 'Caveat[]' },
],
Caveat: [
{ name: 'enforcer', type: 'address' },
{ name: 'terms', type: 'bytes' },
],
SignedDelegation: [
{ name: 'delegation', type: 'Delegation' },
{ name: 'signature', type: 'bytes' },
],
}
};
module.exports = typedMessage;