@armory-sh/base 0.2.32 → 0.2.33

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.js CHANGED
@@ -1369,7 +1369,7 @@ var isResolvedToken = (value) => {
1369
1369
 
1370
1370
  // src/payment-requirements.ts
1371
1371
  function resolveAmountForNetwork(config, network) {
1372
- const defaultAmount = config.amount ?? "1.0";
1372
+ const defaultAmount = config.amount ?? "0.01";
1373
1373
  if (!config.amounts) {
1374
1374
  return defaultAmount;
1375
1375
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@armory-sh/base",
3
- "version": "0.2.32",
3
+ "version": "0.2.33",
4
4
  "license": "MIT",
5
5
  "author": "Sawyer Cutler <sawyer@dirtroad.dev>",
6
6
  "keywords": [
@@ -37,7 +37,7 @@ function resolveAmountForNetwork(
37
37
  config: PaymentConfig,
38
38
  network: ResolvedNetwork,
39
39
  ): string {
40
- const defaultAmount = config.amount ?? "1.0";
40
+ const defaultAmount = config.amount ?? "0.01";
41
41
  if (!config.amounts) {
42
42
  return defaultAmount;
43
43
  }