stackswap-front-api-test-02 1.0.69 → 1.0.70
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/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -187,7 +187,7 @@ export class StackswapDevnetAPI extends StackswapMainnetAPI {
|
|
|
187
187
|
|
|
188
188
|
constructor(farm_end_cycle: string = '99999') {
|
|
189
189
|
super(farm_end_cycle);
|
|
190
|
-
this.config = new StackswapDevnetConfig();
|
|
190
|
+
this.config = new StackswapDevnetConfig(farm_end_cycle);
|
|
191
191
|
this.network = new StacksMocknet();
|
|
192
192
|
}
|
|
193
193
|
|