@varun-ai07/covenant-mcp 2.0.1 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/README.md +58 -2017
  2. package/dist/abis/AgentCollective.json +93 -274
  3. package/dist/abis/COVENANTRouter.json +206 -173
  4. package/dist/abis/CovenantArbitration.json +546 -0
  5. package/dist/abis/CovenantAttestation.json +476 -0
  6. package/dist/abis/CovenantEscrow.json +783 -0
  7. package/dist/abis/CovenantGovernance.json +729 -0
  8. package/dist/abis/CovenantIdentity.json +800 -0
  9. package/dist/abis/CovenantSettlement.json +609 -0
  10. package/dist/abis/GrantProgram.json +66 -471
  11. package/dist/abis/InsurancePool.json +456 -0
  12. package/dist/abis/MultiTokenEscrow.json +435 -836
  13. package/dist/abis/ParallelTaskBatch.json +160 -170
  14. package/dist/abis/RevisionManager.json +79 -134
  15. package/dist/abis/TrainingMarketplace.json +52 -482
  16. package/dist/cli.js +1 -1
  17. package/dist/cli.js.map +1 -1
  18. package/dist/config.d.ts +60 -74
  19. package/dist/config.d.ts.map +1 -1
  20. package/dist/config.js +60 -41
  21. package/dist/config.js.map +1 -1
  22. package/dist/lib/sqlite-store.d.ts +13 -0
  23. package/dist/lib/sqlite-store.d.ts.map +1 -0
  24. package/dist/lib/sqlite-store.js +71 -0
  25. package/dist/lib/sqlite-store.js.map +1 -0
  26. package/dist/lib/store.d.ts +1 -3
  27. package/dist/lib/store.d.ts.map +1 -1
  28. package/dist/lib/store.js +21 -10
  29. package/dist/lib/store.js.map +1 -1
  30. package/dist/sdk/chunk-3R2WXEXL.mjs +828 -0
  31. package/dist/sdk/chunk-6ORMNSPN.mjs +842 -0
  32. package/dist/sdk/chunk-FH2MCRWQ.mjs +8732 -0
  33. package/dist/sdk/chunk-Y3YIH5K3.mjs +816 -0
  34. package/dist/sdk/config.d.ts +121 -0
  35. package/dist/sdk/config.d.ts.map +1 -0
  36. package/dist/sdk/config.js +196 -0
  37. package/dist/sdk/config.js.map +1 -0
  38. package/dist/sdk/contracts/AgentCollective.json +467 -0
  39. package/dist/sdk/contracts/AgentRegistry.d.ts +144 -0
  40. package/dist/sdk/contracts/AgentRegistry.d.ts.map +1 -0
  41. package/dist/sdk/contracts/AgentRegistry.js +92 -0
  42. package/dist/sdk/contracts/AgentRegistry.js.map +1 -0
  43. package/dist/sdk/contracts/COVENANTRouter.json +206 -0
  44. package/dist/sdk/contracts/CovenantArbitration.json +546 -0
  45. package/dist/sdk/contracts/CovenantAttestation.json +476 -0
  46. package/dist/sdk/contracts/CovenantEscrow.d.ts +70 -0
  47. package/dist/sdk/contracts/CovenantEscrow.d.ts.map +1 -0
  48. package/dist/sdk/contracts/CovenantEscrow.js +3 -0
  49. package/dist/sdk/contracts/CovenantEscrow.js.map +1 -0
  50. package/dist/sdk/contracts/CovenantEscrow.json +783 -0
  51. package/dist/sdk/contracts/CovenantGovernance.json +729 -0
  52. package/dist/sdk/contracts/CovenantIdentity.d.ts +70 -0
  53. package/dist/sdk/contracts/CovenantIdentity.d.ts.map +1 -0
  54. package/dist/sdk/contracts/CovenantIdentity.js +3 -0
  55. package/dist/sdk/contracts/CovenantIdentity.js.map +1 -0
  56. package/dist/sdk/contracts/CovenantIdentity.json +800 -0
  57. package/dist/sdk/contracts/CovenantSettlement.json +609 -0
  58. package/dist/sdk/contracts/DisputeResolution.d.ts +122 -0
  59. package/dist/sdk/contracts/DisputeResolution.d.ts.map +1 -0
  60. package/dist/sdk/contracts/DisputeResolution.js +86 -0
  61. package/dist/sdk/contracts/DisputeResolution.js.map +1 -0
  62. package/dist/sdk/contracts/GrantProgram.json +373 -0
  63. package/dist/sdk/contracts/InsurancePool.d.ts +209 -0
  64. package/dist/sdk/contracts/InsurancePool.d.ts.map +1 -0
  65. package/dist/sdk/contracts/InsurancePool.js +153 -0
  66. package/dist/sdk/contracts/InsurancePool.js.map +1 -0
  67. package/dist/sdk/contracts/InsurancePool.json +456 -0
  68. package/dist/sdk/contracts/MultiTokenEscrow.json +435 -0
  69. package/dist/sdk/contracts/OpenTaskMarket.d.ts +190 -0
  70. package/dist/sdk/contracts/OpenTaskMarket.d.ts.map +1 -0
  71. package/dist/sdk/contracts/OpenTaskMarket.js +117 -0
  72. package/dist/sdk/contracts/OpenTaskMarket.js.map +1 -0
  73. package/dist/sdk/contracts/ParallelTaskBatch.json +511 -0
  74. package/dist/sdk/contracts/ReceiptVerifierV2.d.ts +168 -0
  75. package/dist/sdk/contracts/ReceiptVerifierV2.d.ts.map +1 -0
  76. package/dist/sdk/contracts/ReceiptVerifierV2.js +109 -0
  77. package/dist/sdk/contracts/ReceiptVerifierV2.js.map +1 -0
  78. package/dist/sdk/contracts/RevisionManager.json +489 -0
  79. package/dist/sdk/contracts/TaskEscrow.d.ts +222 -0
  80. package/dist/sdk/contracts/TaskEscrow.d.ts.map +1 -0
  81. package/dist/sdk/contracts/TaskEscrow.js +144 -0
  82. package/dist/sdk/contracts/TaskEscrow.js.map +1 -0
  83. package/dist/sdk/contracts/TrainingMarketplace.json +357 -0
  84. package/dist/sdk/index.d.mts +385 -0
  85. package/dist/sdk/index.d.ts +35 -0
  86. package/dist/sdk/index.d.ts.map +1 -0
  87. package/dist/sdk/index.js +284 -0
  88. package/dist/sdk/index.js.map +1 -0
  89. package/dist/sdk/index.mjs +32 -0
  90. package/dist/sdk/types.d.ts +110 -0
  91. package/dist/sdk/types.d.ts.map +1 -0
  92. package/dist/sdk/types.js +17 -0
  93. package/dist/sdk/types.js.map +1 -0
  94. package/dist/sdk/v2.d.mts +100 -0
  95. package/dist/sdk/v2.d.ts +100 -0
  96. package/dist/sdk/v2.d.ts.map +1 -0
  97. package/dist/sdk/v2.js +2615 -0
  98. package/dist/sdk/v2.js.map +1 -0
  99. package/dist/sdk/v2.mjs +571 -0
  100. package/dist/sdk/v5-extensions.d.ts +133 -0
  101. package/dist/sdk/v5-extensions.d.ts.map +1 -0
  102. package/dist/sdk/v5-extensions.js +993 -0
  103. package/dist/sdk/v5-extensions.js.map +1 -0
  104. package/dist/sdk.d.ts +30 -0
  105. package/dist/sdk.d.ts.map +1 -0
  106. package/dist/sdk.js +180 -0
  107. package/dist/sdk.js.map +1 -0
  108. package/dist/server.js +1 -1
  109. package/dist/shared-types.d.ts +115 -8
  110. package/dist/shared-types.d.ts.map +1 -1
  111. package/dist/shared-types.js +27 -17
  112. package/dist/shared-types.js.map +1 -1
  113. package/dist/tools/corven-agent.d.ts.map +1 -1
  114. package/dist/tools/corven-agent.js +31 -37
  115. package/dist/tools/corven-agent.js.map +1 -1
  116. package/dist/tools/corven-ipfs.d.ts.map +1 -1
  117. package/dist/tools/corven-ipfs.js +3 -9
  118. package/dist/tools/corven-ipfs.js.map +1 -1
  119. package/dist/tools/corven-market.d.ts.map +1 -1
  120. package/dist/tools/corven-market.js +36 -74
  121. package/dist/tools/corven-market.js.map +1 -1
  122. package/dist/tools/corven-task.d.ts.map +1 -1
  123. package/dist/tools/corven-task.js +39 -55
  124. package/dist/tools/corven-task.js.map +1 -1
  125. package/dist/tools/corven-verify.d.ts.map +1 -1
  126. package/dist/tools/corven-verify.js +102 -132
  127. package/dist/tools/corven-verify.js.map +1 -1
  128. package/dist/tools/covenant-help.d.ts.map +1 -1
  129. package/dist/tools/covenant-help.js +23 -34
  130. package/dist/tools/covenant-help.js.map +1 -1
  131. package/package.json +5 -3
@@ -0,0 +1,209 @@
1
+ /**
2
+ * Minimal ABI for InsurancePool (v2 extension)
3
+ */
4
+ export declare const InsurancePoolABI: readonly [{
5
+ readonly name: "getPoolBalance";
6
+ readonly type: "function";
7
+ readonly stateMutability: "view";
8
+ readonly inputs: readonly [];
9
+ readonly outputs: readonly [{
10
+ readonly name: "";
11
+ readonly type: "uint256";
12
+ }];
13
+ }, {
14
+ readonly name: "getMemberInfo";
15
+ readonly type: "function";
16
+ readonly stateMutability: "view";
17
+ readonly inputs: readonly [{
18
+ readonly name: "member";
19
+ readonly type: "address";
20
+ }];
21
+ readonly outputs: readonly [{
22
+ readonly name: "active";
23
+ readonly type: "bool";
24
+ }, {
25
+ readonly name: "contributed";
26
+ readonly type: "uint256";
27
+ }];
28
+ }, {
29
+ readonly name: "getClaim";
30
+ readonly type: "function";
31
+ readonly stateMutability: "view";
32
+ readonly inputs: readonly [{
33
+ readonly name: "claimId";
34
+ readonly type: "uint256";
35
+ }];
36
+ readonly outputs: readonly [{
37
+ readonly type: "tuple";
38
+ readonly components: readonly [{
39
+ readonly name: "claimant";
40
+ readonly type: "address";
41
+ }, {
42
+ readonly name: "taskId";
43
+ readonly type: "uint256";
44
+ }, {
45
+ readonly name: "amount";
46
+ readonly type: "uint256";
47
+ }, {
48
+ readonly name: "paid";
49
+ readonly type: "bool";
50
+ }, {
51
+ readonly name: "timestamp";
52
+ readonly type: "uint256";
53
+ }];
54
+ }];
55
+ }, {
56
+ readonly name: "isMember";
57
+ readonly type: "function";
58
+ readonly stateMutability: "view";
59
+ readonly inputs: readonly [{
60
+ readonly name: "";
61
+ readonly type: "address";
62
+ }];
63
+ readonly outputs: readonly [{
64
+ readonly name: "";
65
+ readonly type: "bool";
66
+ }];
67
+ }, {
68
+ readonly name: "claimCounter";
69
+ readonly type: "function";
70
+ readonly stateMutability: "view";
71
+ readonly inputs: readonly [];
72
+ readonly outputs: readonly [{
73
+ readonly name: "";
74
+ readonly type: "uint256";
75
+ }];
76
+ }, {
77
+ readonly name: "memberCount";
78
+ readonly type: "function";
79
+ readonly stateMutability: "view";
80
+ readonly inputs: readonly [];
81
+ readonly outputs: readonly [{
82
+ readonly name: "";
83
+ readonly type: "uint256";
84
+ }];
85
+ }, {
86
+ readonly name: "COVERAGE_PERCENT";
87
+ readonly type: "function";
88
+ readonly stateMutability: "view";
89
+ readonly inputs: readonly [];
90
+ readonly outputs: readonly [{
91
+ readonly name: "";
92
+ readonly type: "uint256";
93
+ }];
94
+ }, {
95
+ readonly name: "CLAIM_COOLDOWN";
96
+ readonly type: "function";
97
+ readonly stateMutability: "view";
98
+ readonly inputs: readonly [];
99
+ readonly outputs: readonly [{
100
+ readonly name: "";
101
+ readonly type: "uint256";
102
+ }];
103
+ }, {
104
+ readonly name: "contributions";
105
+ readonly type: "function";
106
+ readonly stateMutability: "view";
107
+ readonly inputs: readonly [{
108
+ readonly name: "";
109
+ readonly type: "address";
110
+ }];
111
+ readonly outputs: readonly [{
112
+ readonly name: "";
113
+ readonly type: "uint256";
114
+ }];
115
+ }, {
116
+ readonly name: "lastClaimTime";
117
+ readonly type: "function";
118
+ readonly stateMutability: "view";
119
+ readonly inputs: readonly [{
120
+ readonly name: "";
121
+ readonly type: "address";
122
+ }];
123
+ readonly outputs: readonly [{
124
+ readonly name: "";
125
+ readonly type: "uint256";
126
+ }];
127
+ }, {
128
+ readonly name: "joinPool";
129
+ readonly type: "function";
130
+ readonly stateMutability: "payable";
131
+ readonly inputs: readonly [];
132
+ readonly outputs: readonly [];
133
+ }, {
134
+ readonly name: "fileClaim";
135
+ readonly type: "function";
136
+ readonly stateMutability: "nonpayable";
137
+ readonly inputs: readonly [{
138
+ readonly name: "taskId";
139
+ readonly type: "uint256";
140
+ }, {
141
+ readonly name: "amount";
142
+ readonly type: "uint256";
143
+ }];
144
+ readonly outputs: readonly [];
145
+ }, {
146
+ readonly name: "payClaim";
147
+ readonly type: "function";
148
+ readonly stateMutability: "nonpayable";
149
+ readonly inputs: readonly [{
150
+ readonly name: "claimId";
151
+ readonly type: "uint256";
152
+ }, {
153
+ readonly name: "";
154
+ readonly type: "bytes";
155
+ }];
156
+ readonly outputs: readonly [];
157
+ }, {
158
+ readonly name: "deposit";
159
+ readonly type: "function";
160
+ readonly stateMutability: "payable";
161
+ readonly inputs: readonly [];
162
+ readonly outputs: readonly [];
163
+ }, {
164
+ readonly name: "MemberJoined";
165
+ readonly type: "event";
166
+ readonly inputs: readonly [{
167
+ readonly name: "member";
168
+ readonly type: "address";
169
+ readonly indexed: true;
170
+ }, {
171
+ readonly name: "contribution";
172
+ readonly type: "uint256";
173
+ readonly indexed: false;
174
+ }];
175
+ }, {
176
+ readonly name: "ClaimFiled";
177
+ readonly type: "event";
178
+ readonly inputs: readonly [{
179
+ readonly name: "claimId";
180
+ readonly type: "uint256";
181
+ readonly indexed: true;
182
+ }, {
183
+ readonly name: "claimant";
184
+ readonly type: "address";
185
+ readonly indexed: true;
186
+ }, {
187
+ readonly name: "amount";
188
+ readonly type: "uint256";
189
+ readonly indexed: false;
190
+ }];
191
+ }, {
192
+ readonly name: "ClaimPaid";
193
+ readonly type: "event";
194
+ readonly inputs: readonly [{
195
+ readonly name: "claimId";
196
+ readonly type: "uint256";
197
+ readonly indexed: true;
198
+ }, {
199
+ readonly name: "claimant";
200
+ readonly type: "address";
201
+ readonly indexed: true;
202
+ }, {
203
+ readonly name: "amount";
204
+ readonly type: "uint256";
205
+ readonly indexed: false;
206
+ }];
207
+ }];
208
+ export type InsurancePoolABIType = typeof InsurancePoolABI;
209
+ //# sourceMappingURL=InsurancePool.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InsurancePool.d.ts","sourceRoot":"","sources":["../../../src/sdk/contracts/InsurancePool.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoJnB,CAAC;AAEX,MAAM,MAAM,oBAAoB,GAAG,OAAO,gBAAgB,CAAC"}
@@ -0,0 +1,153 @@
1
+ /**
2
+ * Minimal ABI for InsurancePool (v2 extension)
3
+ */
4
+ export const InsurancePoolABI = [
5
+ // Read functions
6
+ {
7
+ name: "getPoolBalance",
8
+ type: "function",
9
+ stateMutability: "view",
10
+ inputs: [],
11
+ outputs: [{ name: "", type: "uint256" }],
12
+ },
13
+ {
14
+ name: "getMemberInfo",
15
+ type: "function",
16
+ stateMutability: "view",
17
+ inputs: [{ name: "member", type: "address" }],
18
+ outputs: [
19
+ { name: "active", type: "bool" },
20
+ { name: "contributed", type: "uint256" },
21
+ ],
22
+ },
23
+ {
24
+ name: "getClaim",
25
+ type: "function",
26
+ stateMutability: "view",
27
+ inputs: [{ name: "claimId", type: "uint256" }],
28
+ outputs: [
29
+ {
30
+ type: "tuple",
31
+ components: [
32
+ { name: "claimant", type: "address" },
33
+ { name: "taskId", type: "uint256" },
34
+ { name: "amount", type: "uint256" },
35
+ { name: "paid", type: "bool" },
36
+ { name: "timestamp", type: "uint256" },
37
+ ],
38
+ },
39
+ ],
40
+ },
41
+ {
42
+ name: "isMember",
43
+ type: "function",
44
+ stateMutability: "view",
45
+ inputs: [{ name: "", type: "address" }],
46
+ outputs: [{ name: "", type: "bool" }],
47
+ },
48
+ {
49
+ name: "claimCounter",
50
+ type: "function",
51
+ stateMutability: "view",
52
+ inputs: [],
53
+ outputs: [{ name: "", type: "uint256" }],
54
+ },
55
+ {
56
+ name: "memberCount",
57
+ type: "function",
58
+ stateMutability: "view",
59
+ inputs: [],
60
+ outputs: [{ name: "", type: "uint256" }],
61
+ },
62
+ {
63
+ name: "COVERAGE_PERCENT",
64
+ type: "function",
65
+ stateMutability: "view",
66
+ inputs: [],
67
+ outputs: [{ name: "", type: "uint256" }],
68
+ },
69
+ {
70
+ name: "CLAIM_COOLDOWN",
71
+ type: "function",
72
+ stateMutability: "view",
73
+ inputs: [],
74
+ outputs: [{ name: "", type: "uint256" }],
75
+ },
76
+ {
77
+ name: "contributions",
78
+ type: "function",
79
+ stateMutability: "view",
80
+ inputs: [{ name: "", type: "address" }],
81
+ outputs: [{ name: "", type: "uint256" }],
82
+ },
83
+ {
84
+ name: "lastClaimTime",
85
+ type: "function",
86
+ stateMutability: "view",
87
+ inputs: [{ name: "", type: "address" }],
88
+ outputs: [{ name: "", type: "uint256" }],
89
+ },
90
+ // Write functions
91
+ {
92
+ name: "joinPool",
93
+ type: "function",
94
+ stateMutability: "payable",
95
+ inputs: [],
96
+ outputs: [],
97
+ },
98
+ {
99
+ name: "fileClaim",
100
+ type: "function",
101
+ stateMutability: "nonpayable",
102
+ inputs: [
103
+ { name: "taskId", type: "uint256" },
104
+ { name: "amount", type: "uint256" },
105
+ ],
106
+ outputs: [],
107
+ },
108
+ {
109
+ name: "payClaim",
110
+ type: "function",
111
+ stateMutability: "nonpayable",
112
+ inputs: [
113
+ { name: "claimId", type: "uint256" },
114
+ { name: "", type: "bytes" },
115
+ ],
116
+ outputs: [],
117
+ },
118
+ {
119
+ name: "deposit",
120
+ type: "function",
121
+ stateMutability: "payable",
122
+ inputs: [],
123
+ outputs: [],
124
+ },
125
+ // Events
126
+ {
127
+ name: "MemberJoined",
128
+ type: "event",
129
+ inputs: [
130
+ { name: "member", type: "address", indexed: true },
131
+ { name: "contribution", type: "uint256", indexed: false },
132
+ ],
133
+ },
134
+ {
135
+ name: "ClaimFiled",
136
+ type: "event",
137
+ inputs: [
138
+ { name: "claimId", type: "uint256", indexed: true },
139
+ { name: "claimant", type: "address", indexed: true },
140
+ { name: "amount", type: "uint256", indexed: false },
141
+ ],
142
+ },
143
+ {
144
+ name: "ClaimPaid",
145
+ type: "event",
146
+ inputs: [
147
+ { name: "claimId", type: "uint256", indexed: true },
148
+ { name: "claimant", type: "address", indexed: true },
149
+ { name: "amount", type: "uint256", indexed: false },
150
+ ],
151
+ },
152
+ ];
153
+ //# sourceMappingURL=InsurancePool.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InsurancePool.js","sourceRoot":"","sources":["../../../src/sdk/contracts/InsurancePool.ts"],"names":[],"mappings":"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"}