@aboutcircles/sdk 0.1.2 → 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.
- package/dist/index.js +12 -0
- package/package.json +13 -9
- package/dist/ccip-bj4hszbh.js +0 -4584
- package/dist/ccip-dw9vbgp0.js +0 -4533
- package/dist/index-3hqyeswk.js +0 -25
- package/dist/index-pps0tkk3.js +0 -356
- package/dist/native-45v6vh69.js +0 -20
- package/dist/secp256k1-mjj44cj6.js +0 -2115
- package/dist/secp256k1-qqsamwnk.js +0 -2117
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
|
+
"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",
|
|
@@ -26,16 +26,20 @@
|
|
|
26
26
|
"web3",
|
|
27
27
|
"ubi"
|
|
28
28
|
],
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/aboutcircles/sdk"
|
|
32
|
+
},
|
|
29
33
|
"license": "MIT",
|
|
30
34
|
"dependencies": {
|
|
31
|
-
"@aboutcircles/sdk-types": "
|
|
32
|
-
"@aboutcircles/sdk-core": "
|
|
33
|
-
"@aboutcircles/sdk-rpc": "
|
|
34
|
-
"@aboutcircles/sdk-profiles": "
|
|
35
|
-
"@aboutcircles/sdk-utils": "
|
|
36
|
-
"@aboutcircles/sdk-runner": "
|
|
37
|
-
"@aboutcircles/sdk-pathfinder": "
|
|
38
|
-
"@aboutcircles/sdk-transfers": "
|
|
35
|
+
"@aboutcircles/sdk-types": "workspace:*",
|
|
36
|
+
"@aboutcircles/sdk-core": "workspace:*",
|
|
37
|
+
"@aboutcircles/sdk-rpc": "workspace:*",
|
|
38
|
+
"@aboutcircles/sdk-profiles": "workspace:*",
|
|
39
|
+
"@aboutcircles/sdk-utils": "workspace:*",
|
|
40
|
+
"@aboutcircles/sdk-runner": "workspace:*",
|
|
41
|
+
"@aboutcircles/sdk-pathfinder": "workspace:*",
|
|
42
|
+
"@aboutcircles/sdk-transfers": "workspace:*",
|
|
39
43
|
"viem": "^2.38.0"
|
|
40
44
|
},
|
|
41
45
|
"devDependencies": {
|