@strkfarm/sdk 1.0.7 → 1.0.8

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/cli.js CHANGED
@@ -196,6 +196,9 @@ var Global = class {
196
196
  }
197
197
  };
198
198
 
199
+ // src/modules/pricer.ts
200
+ var CoinMarketCap = require("coinmarketcap-api");
201
+
199
202
  // src/modules/pragma.ts
200
203
  var import_starknet = require("starknet");
201
204
 
package/dist/cli.mjs CHANGED
@@ -1,4 +1,10 @@
1
1
  #!/usr/bin/env node
2
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
3
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
4
+ }) : x)(function(x) {
5
+ if (typeof require !== "undefined") return require.apply(this, arguments);
6
+ throw Error('Dynamic require of "' + x + '" is not supported');
7
+ });
2
8
 
3
9
  // src/cli.ts
4
10
  import { Command } from "commander";
@@ -173,6 +179,9 @@ var Global = class {
173
179
  }
174
180
  };
175
181
 
182
+ // src/modules/pricer.ts
183
+ var CoinMarketCap = __require("coinmarketcap-api");
184
+
176
185
  // src/modules/pragma.ts
177
186
  import { Contract } from "starknet";
178
187