@varun-ai07/covenant-mcp 1.0.3 → 1.0.5
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.
- package/README.md +7 -8
- package/dist/cli.js +2 -2
- package/dist/config.js +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -996,14 +996,13 @@ Retrieve the top agents ranked by reputation score. Each entry includes rank, ag
|
|
|
996
996
|
|
|
997
997
|
| Contract | Address (Base Sepolia) |
|
|
998
998
|
|----------|------------------------|
|
|
999
|
-
| AgentRegistry | `
|
|
1000
|
-
| TaskEscrow | `
|
|
1001
|
-
| ReceiptVerifier | `
|
|
1002
|
-
| OpenTaskMarket | `
|
|
1003
|
-
| ParallelTaskBatch | `
|
|
1004
|
-
| AgentCollective | `
|
|
1005
|
-
| AgentInsurance | `
|
|
1006
|
-
| DisputeArbitration | `0xC98ebfAE496e297a84a960085418C8240891E6CD` |
|
|
999
|
+
| AgentRegistry | `0xB215589dA259A98eEE8BF39739F6255131ac33A1` |
|
|
1000
|
+
| TaskEscrow | `0xFD081B5cB8bAE37DC878078bE3165932b0bC0BB3` |
|
|
1001
|
+
| ReceiptVerifier | `0xa47D15099be6aC516B53a6859D468E9004eEf76b` |
|
|
1002
|
+
| OpenTaskMarket | `0x5ccF09469222E5046b0830c6d71ed6B912bE70e6` |
|
|
1003
|
+
| ParallelTaskBatch | `0xaf23D40668f0e33426824Bf2027A0E9cD26c11Bc` |
|
|
1004
|
+
| AgentCollective | `0x0CDE9560D2E95338922c40A52A2c81cdd20613d1` |
|
|
1005
|
+
| AgentInsurance | `0x1798d370e3C566001A84F38EbDc0F6F1Db6bdd55` |
|
|
1007
1006
|
|
|
1008
1007
|
---
|
|
1009
1008
|
|
package/dist/cli.js
CHANGED
|
@@ -103,8 +103,8 @@ function addCommand() {
|
|
|
103
103
|
log(" 2. Restart Claude Code", colors.yellow);
|
|
104
104
|
log("");
|
|
105
105
|
log(" Contract Addresses (Base Sepolia):", colors.bold);
|
|
106
|
-
log(" AgentRegistry:
|
|
107
|
-
log(" TaskEscrow:
|
|
106
|
+
log(" AgentRegistry: 0x86E5982aA12f9b0AB48d536BA78B4E2fCc9b1103", colors.cyan);
|
|
107
|
+
log(" TaskEscrow: 0xbb2933f2Bc773AB518dAe4Ae5340B5A325F1a504", colors.cyan);
|
|
108
108
|
log("");
|
|
109
109
|
}
|
|
110
110
|
function removeCommand() {
|
package/dist/config.js
CHANGED
|
@@ -25,14 +25,14 @@ export const CHAIN = RPC_URL.includes("127.0.0.1") || RPC_URL.includes("localhos
|
|
|
25
25
|
// ============================================================
|
|
26
26
|
export const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
27
27
|
export const CONTRACTS = {
|
|
28
|
-
AgentRegistry: (process.env.REGISTRY_ADDRESS || "
|
|
29
|
-
TaskEscrow: (process.env.ESCROW_ADDRESS || "
|
|
30
|
-
ReceiptVerifier: (process.env.VERIFIER_ADDRESS || "
|
|
31
|
-
OpenTaskMarket: (process.env.MARKET_ADDRESS || "
|
|
32
|
-
ParallelTaskBatch: (process.env.BATCH_ADDRESS || "
|
|
33
|
-
AgentCollective: (process.env.COLLECTIVE_ADDRESS || "
|
|
34
|
-
AgentInsurance: (process.env.INSURANCE_ADDRESS || "
|
|
35
|
-
DisputeArbitration: (process.env.DISPUTE_ADDRESS || "
|
|
28
|
+
AgentRegistry: (process.env.REGISTRY_ADDRESS || "0xB215589dA259A98eEE8BF39739F6255131ac33A1"),
|
|
29
|
+
TaskEscrow: (process.env.ESCROW_ADDRESS || "0xFD081B5cB8bAE37DC878078bE3165932b0bC0BB3"),
|
|
30
|
+
ReceiptVerifier: (process.env.VERIFIER_ADDRESS || "0xa47D15099be6aC516B53a6859D468E9004eEf76b"),
|
|
31
|
+
OpenTaskMarket: (process.env.MARKET_ADDRESS || "0x5ccF09469222E5046b0830c6d71ed6B912bE70e6"),
|
|
32
|
+
ParallelTaskBatch: (process.env.BATCH_ADDRESS || "0xaf23D40668f0e33426824Bf2027A0E9cD26c11Bc"),
|
|
33
|
+
AgentCollective: (process.env.COLLECTIVE_ADDRESS || "0x0CDE9560D2E95338922c40A52A2c81cdd20613d1"),
|
|
34
|
+
AgentInsurance: (process.env.INSURANCE_ADDRESS || "0x1798d370e3C566001A84F38EbDc0F6F1Db6bdd55"),
|
|
35
|
+
DisputeArbitration: (process.env.DISPUTE_ADDRESS || "0x0000000000000000000000000000000000000000"),
|
|
36
36
|
};
|
|
37
37
|
// ============================================================
|
|
38
38
|
// Wallet Mode
|