@agoric/smart-wallet 0.5.4-dev-bd1190d.0 → 0.5.4-dev-35576e9.0
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/package.json +13 -13
- package/src/smartWallet.d.ts +1 -1
- package/src/smartWallet.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/smart-wallet",
|
|
3
|
-
"version": "0.5.4-dev-
|
|
3
|
+
"version": "0.5.4-dev-35576e9.0+35576e9",
|
|
4
4
|
"description": "Wallet contract",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -16,23 +16,23 @@
|
|
|
16
16
|
"lint:eslint": "eslint ."
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@agoric/cosmic-proto": "0.3.1-dev-
|
|
19
|
+
"@agoric/cosmic-proto": "0.3.1-dev-35576e9.0+35576e9",
|
|
20
20
|
"@endo/captp": "^3.1.1",
|
|
21
21
|
"@endo/init": "^0.5.56",
|
|
22
22
|
"ava": "^5.3.0",
|
|
23
23
|
"import-meta-resolve": "^2.2.1"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@agoric/assert": "0.6.1-dev-
|
|
27
|
-
"@agoric/casting": "0.4.3-dev-
|
|
28
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
29
|
-
"@agoric/internal": "0.3.3-dev-
|
|
30
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
31
|
-
"@agoric/store": "0.9.3-dev-
|
|
32
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
33
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
34
|
-
"@agoric/vats": "0.15.2-dev-
|
|
35
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
26
|
+
"@agoric/assert": "0.6.1-dev-35576e9.0+35576e9",
|
|
27
|
+
"@agoric/casting": "0.4.3-dev-35576e9.0+35576e9",
|
|
28
|
+
"@agoric/ertp": "0.16.3-dev-35576e9.0+35576e9",
|
|
29
|
+
"@agoric/internal": "0.3.3-dev-35576e9.0+35576e9",
|
|
30
|
+
"@agoric/notifier": "0.6.3-dev-35576e9.0+35576e9",
|
|
31
|
+
"@agoric/store": "0.9.3-dev-35576e9.0+35576e9",
|
|
32
|
+
"@agoric/swingset-vat": "0.32.3-dev-35576e9.0+35576e9",
|
|
33
|
+
"@agoric/vat-data": "0.5.3-dev-35576e9.0+35576e9",
|
|
34
|
+
"@agoric/vats": "0.15.2-dev-35576e9.0+35576e9",
|
|
35
|
+
"@agoric/zoe": "0.26.3-dev-35576e9.0+35576e9",
|
|
36
36
|
"@endo/eventual-send": "^0.17.2",
|
|
37
37
|
"@endo/far": "^0.2.18",
|
|
38
38
|
"@endo/marshal": "^0.8.5",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "35576e9f84572359d4dc613a5cc20f19c6dc76ec"
|
|
66
66
|
}
|
package/src/smartWallet.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export function prepareSmartWallet(baggage: MapStore<string, unknown>, shared: S
|
|
|
5
5
|
* Umarshals the actionCapData and delegates to the appropriate action handler.
|
|
6
6
|
*
|
|
7
7
|
* @param {import('@endo/marshal').CapData<string>} actionCapData of type BridgeAction
|
|
8
|
-
* @param {boolean} [canSpend
|
|
8
|
+
* @param {boolean} [canSpend]
|
|
9
9
|
* @returns {Promise<void>}
|
|
10
10
|
*/
|
|
11
11
|
handleBridgeAction(actionCapData: import('@endo/marshal').CapData<string>, canSpend?: boolean | undefined): Promise<void>;
|
package/src/smartWallet.js
CHANGED
|
@@ -520,7 +520,7 @@ export const prepareSmartWallet = (baggage, shared) => {
|
|
|
520
520
|
* Umarshals the actionCapData and delegates to the appropriate action handler.
|
|
521
521
|
*
|
|
522
522
|
* @param {import('@endo/marshal').CapData<string>} actionCapData of type BridgeAction
|
|
523
|
-
* @param {boolean} [canSpend
|
|
523
|
+
* @param {boolean} [canSpend]
|
|
524
524
|
* @returns {Promise<void>}
|
|
525
525
|
*/
|
|
526
526
|
handleBridgeAction(actionCapData, canSpend = false) {
|