@juicedollar/jusd 1.0.5 → 1.0.6
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -2
- package/dist/index.mjs +4 -2
- package/exports/address.config.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -56,7 +56,8 @@ var ADDRESS = {
|
|
|
56
56
|
bridgeStartUSD: import_viem.zeroAddress,
|
|
57
57
|
startUSD: import_viem.zeroAddress,
|
|
58
58
|
roller: import_viem.zeroAddress,
|
|
59
|
-
positionFactoryV2: import_viem.zeroAddress
|
|
59
|
+
positionFactoryV2: import_viem.zeroAddress,
|
|
60
|
+
genesisPosition: import_viem.zeroAddress
|
|
60
61
|
},
|
|
61
62
|
5115: {
|
|
62
63
|
juiceDollar: "0xFdB0a83d94CD65151148a131167Eb499Cb85d015",
|
|
@@ -68,7 +69,8 @@ var ADDRESS = {
|
|
|
68
69
|
bridgeStartUSD: "0x25F8599Be1D25501212b20bD72DF1caA97b496b1",
|
|
69
70
|
startUSD: "0xDFa3153E1eDa84F966BD01bc4C6D9A4FF36AcAeA",
|
|
70
71
|
roller: "0x09d24251654e5B89d5fcd35d087f0CB4163471aC",
|
|
71
|
-
positionFactoryV2: "0xB22a0701237a226d17aE0C4FE8263Edf5Be5f20d"
|
|
72
|
+
positionFactoryV2: "0xB22a0701237a226d17aE0C4FE8263Edf5Be5f20d",
|
|
73
|
+
genesisPosition: "0xE2D4Ca089457ECfabF89F472568eac4e94b21d8C"
|
|
72
74
|
}
|
|
73
75
|
};
|
|
74
76
|
|
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,8 @@ var ADDRESS = {
|
|
|
12
12
|
bridgeStartUSD: zeroAddress,
|
|
13
13
|
startUSD: zeroAddress,
|
|
14
14
|
roller: zeroAddress,
|
|
15
|
-
positionFactoryV2: zeroAddress
|
|
15
|
+
positionFactoryV2: zeroAddress,
|
|
16
|
+
genesisPosition: zeroAddress
|
|
16
17
|
},
|
|
17
18
|
5115: {
|
|
18
19
|
juiceDollar: "0xFdB0a83d94CD65151148a131167Eb499Cb85d015",
|
|
@@ -24,7 +25,8 @@ var ADDRESS = {
|
|
|
24
25
|
bridgeStartUSD: "0x25F8599Be1D25501212b20bD72DF1caA97b496b1",
|
|
25
26
|
startUSD: "0xDFa3153E1eDa84F966BD01bc4C6D9A4FF36AcAeA",
|
|
26
27
|
roller: "0x09d24251654e5B89d5fcd35d087f0CB4163471aC",
|
|
27
|
-
positionFactoryV2: "0xB22a0701237a226d17aE0C4FE8263Edf5Be5f20d"
|
|
28
|
+
positionFactoryV2: "0xB22a0701237a226d17aE0C4FE8263Edf5Be5f20d",
|
|
29
|
+
genesisPosition: "0xE2D4Ca089457ECfabF89F472568eac4e94b21d8C"
|
|
28
30
|
}
|
|
29
31
|
};
|
|
30
32
|
|
|
@@ -11,6 +11,7 @@ export interface ChainAddress {
|
|
|
11
11
|
startUSD: Address;
|
|
12
12
|
roller: Address;
|
|
13
13
|
positionFactoryV2: Address;
|
|
14
|
+
genesisPosition: Address;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
// Citrea Mainnet Chain ID: 62831
|
|
@@ -28,6 +29,7 @@ export const ADDRESS: Record<number, ChainAddress> = {
|
|
|
28
29
|
startUSD: zeroAddress,
|
|
29
30
|
roller: zeroAddress,
|
|
30
31
|
positionFactoryV2: zeroAddress,
|
|
32
|
+
genesisPosition: zeroAddress,
|
|
31
33
|
},
|
|
32
34
|
5115: {
|
|
33
35
|
juiceDollar: "0xFdB0a83d94CD65151148a131167Eb499Cb85d015",
|
|
@@ -40,5 +42,6 @@ export const ADDRESS: Record<number, ChainAddress> = {
|
|
|
40
42
|
startUSD: "0xDFa3153E1eDa84F966BD01bc4C6D9A4FF36AcAeA",
|
|
41
43
|
roller: "0x09d24251654e5B89d5fcd35d087f0CB4163471aC",
|
|
42
44
|
positionFactoryV2: "0xB22a0701237a226d17aE0C4FE8263Edf5Be5f20d",
|
|
45
|
+
genesisPosition: "0xE2D4Ca089457ECfabF89F472568eac4e94b21d8C",
|
|
43
46
|
},
|
|
44
47
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juicedollar/jusd",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "JuiceDollar (JUSD) - Oracle-free, Bitcoin-collateralized stablecoin on Citrea. Decentralized minting with democratic governance.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|