@pancakeswap/pools 5.0.2 → 5.0.3
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/56.d.ts.map +1 -1
- package/dist/index.js +19 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -118,6 +118,16 @@ var livePools2 = [
|
|
|
118
118
|
tokenPerBlock: "10",
|
|
119
119
|
isFinished: false
|
|
120
120
|
},
|
|
121
|
+
{
|
|
122
|
+
sousId: 365,
|
|
123
|
+
stakingToken: bscTokens.cake,
|
|
124
|
+
earningToken: bscTokens.ace,
|
|
125
|
+
contractAddress: "0xafB6d6B64fe5007EeE87210B91638ddCeb9f326B",
|
|
126
|
+
poolCategory: "Core" /* CORE */,
|
|
127
|
+
tokenPerBlock: "0.003858",
|
|
128
|
+
isFinished: false,
|
|
129
|
+
version: 3
|
|
130
|
+
},
|
|
121
131
|
{
|
|
122
132
|
sousId: 364,
|
|
123
133
|
stakingToken: bscTokens.cake,
|
|
@@ -126,7 +136,14 @@ var livePools2 = [
|
|
|
126
136
|
poolCategory: "Core" /* CORE */,
|
|
127
137
|
tokenPerBlock: "0.5131",
|
|
128
138
|
version: 3
|
|
129
|
-
}
|
|
139
|
+
}
|
|
140
|
+
].map((p) => ({
|
|
141
|
+
...p,
|
|
142
|
+
contractAddress: getAddress(p.contractAddress),
|
|
143
|
+
stakingToken: p.stakingToken.serialize,
|
|
144
|
+
earningToken: p.earningToken.serialize
|
|
145
|
+
}));
|
|
146
|
+
var finishedPools2 = [
|
|
130
147
|
{
|
|
131
148
|
sousId: 363,
|
|
132
149
|
stakingToken: bscTokens.cake,
|
|
@@ -153,14 +170,7 @@ var livePools2 = [
|
|
|
153
170
|
poolCategory: "Core" /* CORE */,
|
|
154
171
|
tokenPerBlock: "0.1118",
|
|
155
172
|
version: 3
|
|
156
|
-
}
|
|
157
|
-
].map((p) => ({
|
|
158
|
-
...p,
|
|
159
|
-
contractAddress: getAddress(p.contractAddress),
|
|
160
|
-
stakingToken: p.stakingToken.serialize,
|
|
161
|
-
earningToken: p.earningToken.serialize
|
|
162
|
-
}));
|
|
163
|
-
var finishedPools2 = [
|
|
173
|
+
},
|
|
164
174
|
{
|
|
165
175
|
sousId: 359,
|
|
166
176
|
stakingToken: bscTokens.cake,
|