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 +1 -1
- package/dist/constants.js +5 -5
- package/package.json +1 -1
- package/src/constants.ts +5 -5
package/README.md
CHANGED
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: '
|
|
18
|
-
reputation: '
|
|
19
|
-
credit: '
|
|
20
|
-
escrow: '
|
|
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: '
|
|
26
|
+
reputation: '0x02bb4132a86134684976E2a52E43D59D89E64b29',
|
|
27
27
|
credit: '0xBA64e2b2F2a80D03A4B13b3396942C1e78205C7d',
|
|
28
28
|
escrow: '0x78D1f50a1965dE34f6b5a3D3546C94FE1809Cd82',
|
|
29
29
|
mandate: '0x0000000000000000000000000000000000000000', // TODO: Deploy mandate contract
|
package/package.json
CHANGED
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: '
|
|
25
|
-
reputation: '
|
|
26
|
-
credit: '
|
|
27
|
-
escrow: '
|
|
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: '
|
|
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
|