@pancakeswap/pools 4.0.14 → 4.0.16
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/constants/pools/1.d.ts.map +1 -1
- package/dist/constants/pools/42161.d.ts.map +1 -1
- package/dist/index.js +26 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -42,7 +42,14 @@ var livePools = [
|
|
|
42
42
|
contractAddress: "0x3C6452d5a217Cc65b98F0803c6D1BD7Fe588389A",
|
|
43
43
|
poolCategory: "Core" /* CORE */,
|
|
44
44
|
tokenPerSecond: "0.00000271"
|
|
45
|
-
}
|
|
45
|
+
}
|
|
46
|
+
].map((p) => ({
|
|
47
|
+
...p,
|
|
48
|
+
contractAddress: getAddress(p.contractAddress),
|
|
49
|
+
stakingToken: p.stakingToken.serialize,
|
|
50
|
+
earningToken: p.earningToken.serialize
|
|
51
|
+
}));
|
|
52
|
+
var finishedPools = [
|
|
46
53
|
{
|
|
47
54
|
sousId: 7,
|
|
48
55
|
stakingToken: ethereumTokens.cake,
|
|
@@ -58,14 +65,7 @@ var livePools = [
|
|
|
58
65
|
contractAddress: "0x3f0bCCa8f5aA37e184B22e3A2ca8C292fe6B716B",
|
|
59
66
|
poolCategory: "Core" /* CORE */,
|
|
60
67
|
tokenPerSecond: "0.0005093"
|
|
61
|
-
}
|
|
62
|
-
].map((p) => ({
|
|
63
|
-
...p,
|
|
64
|
-
contractAddress: getAddress(p.contractAddress),
|
|
65
|
-
stakingToken: p.stakingToken.serialize,
|
|
66
|
-
earningToken: p.earningToken.serialize
|
|
67
|
-
}));
|
|
68
|
-
var finishedPools = [
|
|
68
|
+
},
|
|
69
69
|
{
|
|
70
70
|
sousId: 5,
|
|
71
71
|
stakingToken: ethereumTokens.cake,
|
|
@@ -3141,6 +3141,22 @@ var livePools3 = [
|
|
|
3141
3141
|
var finishedPools3 = [];
|
|
3142
3142
|
var pools3 = [...livePools3, ...finishedPools3];
|
|
3143
3143
|
var livePools4 = [
|
|
3144
|
+
{
|
|
3145
|
+
sousId: 2,
|
|
3146
|
+
stakingToken: arbitrumTokens.alp,
|
|
3147
|
+
earningToken: arbitrumTokens.cake,
|
|
3148
|
+
contractAddress: "0x0639c5715EC308E16f089c96C0C109302d76FA81",
|
|
3149
|
+
poolCategory: "Core" /* CORE */,
|
|
3150
|
+
tokenPerSecond: "0.01177",
|
|
3151
|
+
version: 3
|
|
3152
|
+
}
|
|
3153
|
+
].map((p) => ({
|
|
3154
|
+
...p,
|
|
3155
|
+
contractAddress: getAddress(p.contractAddress),
|
|
3156
|
+
stakingToken: p.stakingToken.serialize,
|
|
3157
|
+
earningToken: p.earningToken.serialize
|
|
3158
|
+
}));
|
|
3159
|
+
var finishedPools4 = [
|
|
3144
3160
|
{
|
|
3145
3161
|
sousId: 1,
|
|
3146
3162
|
stakingToken: arbitrumTokens.alp,
|
|
@@ -3152,11 +3168,11 @@ var livePools4 = [
|
|
|
3152
3168
|
}
|
|
3153
3169
|
].map((p) => ({
|
|
3154
3170
|
...p,
|
|
3171
|
+
isFinished: true,
|
|
3155
3172
|
contractAddress: getAddress(p.contractAddress),
|
|
3156
3173
|
stakingToken: p.stakingToken.serialize,
|
|
3157
3174
|
earningToken: p.earningToken.serialize
|
|
3158
3175
|
}));
|
|
3159
|
-
var finishedPools4 = [];
|
|
3160
3176
|
var pools4 = [...livePools4, ...finishedPools4];
|
|
3161
3177
|
var livePools5 = [
|
|
3162
3178
|
{
|