pay-lobster 4.0.0 → 4.0.2

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 CHANGED
@@ -227,7 +227,7 @@ try {
227
227
  ```typescript
228
228
  const pl = new PayLobster({
229
229
  network: 'mainnet',
230
- rpcUrl: 'https://mainnet.base.org',
230
+ rpcUrl: 'https://base-rpc.publicnode.com',
231
231
  walletClient,
232
232
  });
233
233
  ```
package/dist/constants.js CHANGED
@@ -14,16 +14,16 @@ export const CHAIN_IDS = {
14
14
  // Contract Addresses
15
15
  // ============================================================================
16
16
  export const CONTRACTS_MAINNET = {
17
- identity: '0xA174f250380c4B5C37F6709bBa719E662b77E662',
18
- reputation: '0x02bb4c4cd10EeaCD04DF7631c81d6E7c1d0c4b29',
19
- credit: '0xD924B81F2d8EFF3E0A3Bf0a4b9D77d37CC0980E1',
20
- escrow: '0x49Ed7003C6941a033E7dD8b44552e4E18cf28806',
17
+ identity: '0xA174ee274F870631B3c330a85EBCad74120BE662',
18
+ reputation: '0x02bb4132a86134684976E2a52E43D59D89E64b29',
19
+ credit: '0xD9241Ce8a721Ef5fcCAc5A11983addC526eC80E1',
20
+ escrow: '0x49EdEe04c78B7FeD5248A20706c7a6c540748806',
21
21
  mandate: '0x0000000000000000000000000000000000000000', // TODO: Deploy mandate contract
22
22
  usdc: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
23
23
  };
24
24
  export const CONTRACTS_SEPOLIA = {
25
25
  identity: '0x3dfA02Ed4F0e4F10E8031d7a4cB8Ea0bBbFbCB8c',
26
- reputation: '0xb0033901e3b94f4F36dA0b3e59A1F4AD9f4f1697',
26
+ reputation: '0x02bb4132a86134684976E2a52E43D59D89E64b29',
27
27
  credit: '0xBA64e2b2F2a80D03A4B13b3396942C1e78205C7d',
28
28
  escrow: '0x78D1f50a1965dE34f6b5a3D3546C94FE1809Cd82',
29
29
  mandate: '0x0000000000000000000000000000000000000000', // TODO: Deploy mandate contract
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pay-lobster",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "PayLobster SDK - Service discovery, mandates, reputation, and payments for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -21,17 +21,17 @@ export const CHAIN_IDS = {
21
21
  // ============================================================================
22
22
 
23
23
  export const CONTRACTS_MAINNET: ContractAddresses = {
24
- identity: '0xA174f250380c4B5C37F6709bBa719E662b77E662' as Address,
25
- reputation: '0x02bb4c4cd10EeaCD04DF7631c81d6E7c1d0c4b29' as Address,
26
- credit: '0xD924B81F2d8EFF3E0A3Bf0a4b9D77d37CC0980E1' as Address,
27
- escrow: '0x49Ed7003C6941a033E7dD8b44552e4E18cf28806' as Address,
24
+ identity: '0xA174ee274F870631B3c330a85EBCad74120BE662' as Address,
25
+ reputation: '0x02bb4132a86134684976E2a52E43D59D89E64b29' as Address,
26
+ credit: '0xD9241Ce8a721Ef5fcCAc5A11983addC526eC80E1' as Address,
27
+ escrow: '0x49EdEe04c78B7FeD5248A20706c7a6c540748806' as Address,
28
28
  mandate: '0x0000000000000000000000000000000000000000' as Address, // TODO: Deploy mandate contract
29
29
  usdc: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' as Address,
30
30
  };
31
31
 
32
32
  export const CONTRACTS_SEPOLIA: ContractAddresses = {
33
33
  identity: '0x3dfA02Ed4F0e4F10E8031d7a4cB8Ea0bBbFbCB8c' as Address,
34
- reputation: '0xb0033901e3b94f4F36dA0b3e59A1F4AD9f4f1697' as Address,
34
+ reputation: '0x02bb4132a86134684976E2a52E43D59D89E64b29' as Address,
35
35
  credit: '0xBA64e2b2F2a80D03A4B13b3396942C1e78205C7d' as Address,
36
36
  escrow: '0x78D1f50a1965dE34f6b5a3D3546C94FE1809Cd82' as Address,
37
37
  mandate: '0x0000000000000000000000000000000000000000' as Address, // TODO: Deploy mandate contract