@aboutcircles/sdk 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/index.js +12 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7996,6 +7996,10 @@ function normalizeFindPathParams(params) {
7996
7996
  IsWrapped: balance.isWrapped,
7997
7997
  IsStatic: balance.isStatic
7998
7998
  })),
7999
+ SimulatedTrusts: params.simulatedTrusts?.map((trust) => ({
8000
+ Truster: normalizeAddress(trust.truster),
8001
+ Trustee: normalizeAddress(trust.trustee)
8002
+ })),
7999
8003
  MaxTransfers: params.maxTransfers
8000
8004
  };
8001
8005
  }
@@ -13802,6 +13806,10 @@ function normalizeFindPathParams2(params) {
13802
13806
  IsWrapped: balance.isWrapped,
13803
13807
  IsStatic: balance.isStatic
13804
13808
  })),
13809
+ SimulatedTrusts: params.simulatedTrusts?.map((trust) => ({
13810
+ Truster: normalizeAddress2(trust.truster),
13811
+ Trustee: normalizeAddress2(trust.trustee)
13812
+ })),
13805
13813
  MaxTransfers: params.maxTransfers
13806
13814
  };
13807
13815
  }
@@ -16459,6 +16467,10 @@ function normalizeFindPathParams22(params) {
16459
16467
  IsWrapped: balance.isWrapped,
16460
16468
  IsStatic: balance.isStatic
16461
16469
  })),
16470
+ SimulatedTrusts: params.simulatedTrusts?.map((trust) => ({
16471
+ Truster: normalizeAddress22(trust.truster),
16472
+ Trustee: normalizeAddress22(trust.trustee)
16473
+ })),
16462
16474
  MaxTransfers: params.maxTransfers
16463
16475
  };
16464
16476
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aboutcircles/sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Simplified Circles SDK for non-crypto users with low entrance barrier",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",