-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.contracts.json
More file actions
84 lines (84 loc) · 2.86 KB
/
plugin.contracts.json
File metadata and controls
84 lines (84 loc) · 2.86 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"version": "1",
"contracts": [
{
"kind": "module",
"type": "audit.ledger",
"mode": "strict_proto",
"config": "workflow.plugin.audit.v1.LedgerConfig"
},
{
"kind": "module",
"type": "audit.anchor_provider.opentimestamps",
"mode": "strict_proto",
"config": "workflow.plugin.audit.v1.OpenTimestampsProviderConfig"
},
{
"kind": "module",
"type": "audit.anchor_provider.git",
"mode": "strict_proto",
"config": "workflow.plugin.audit.v1.GitAnchorProviderConfig"
},
{
"kind": "module",
"type": "audit.anchor_provider.sigstore",
"mode": "strict_proto",
"config": "workflow.plugin.audit.v1.SigstoreProviderConfig"
},
{
"kind": "step",
"type": "step.audit.append",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.AppendRequest",
"output": "workflow.plugin.audit.v1.AppendResponse"
},
{
"kind": "step",
"type": "step.audit.verify",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.VerifyRequest",
"output": "workflow.plugin.audit.v1.VerifyResponse"
},
{
"kind": "step",
"type": "step.audit.merkle_root",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.MerkleRootRequest",
"output": "workflow.plugin.audit.v1.MerkleRootResponse"
},
{
"kind": "step",
"type": "step.audit.anchor",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.AnchorRequest",
"output": "workflow.plugin.audit.v1.AnchorResponse"
},
{
"kind": "step",
"type": "step.audit.poll_anchor_confirmation",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.PollAnchorConfirmationRequest",
"output": "workflow.plugin.audit.v1.PollAnchorConfirmationResponse"
},
{
"kind": "step",
"type": "step.audit.proof",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.ProofRequest",
"output": "workflow.plugin.audit.v1.ProofResponse"
},
{
"kind": "step",
"type": "step.audit.public_receipt",
"mode": "strict_proto",
"input": "workflow.plugin.audit.v1.PublicReceiptRequest",
"output": "workflow.plugin.audit.v1.PublicReceiptResponse"
},
{
"kind": "trigger",
"type": "trigger.audit.entry_appended",
"mode": "strict_proto",
"output": "workflow.plugin.audit.v1.Entry"
}
]
}