@agoric/smart-wallet 0.5.4-u12.0 → 0.5.4-u13.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/CHANGELOG.md +8 -0
- package/package.json +11 -11
- package/src/types.d.ts +11 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [0.5.4-u13.0](https://github.com/Agoric/agoric/compare/@agoric/smart-wallet@0.5.4-u12.0...@agoric/smart-wallet@0.5.4-u13.0) (2023-12-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @agoric/smart-wallet
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
### [0.5.4-u12.0](https://github.com/Agoric/agoric/compare/@agoric/smart-wallet@0.5.4-u11wf.0...@agoric/smart-wallet@0.5.4-u12.0) (2023-11-10)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/smart-wallet",
|
|
3
|
-
"version": "0.5.4-
|
|
3
|
+
"version": "0.5.4-u13.0",
|
|
4
4
|
"description": "Wallet contract",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@agoric/assert": "^0.6.1-u11wf.0",
|
|
28
|
-
"@agoric/casting": "^0.4.3-
|
|
29
|
-
"@agoric/ertp": "^0.16.3-
|
|
30
|
-
"@agoric/internal": "^0.4.0-
|
|
31
|
-
"@agoric/notifier": "^0.6.3-
|
|
32
|
-
"@agoric/store": "^0.9.3-
|
|
33
|
-
"@agoric/swingset-vat": "^0.32.3-
|
|
34
|
-
"@agoric/vat-data": "^0.5.3-
|
|
35
|
-
"@agoric/vats": "^0.15.2-
|
|
36
|
-
"@agoric/zoe": "^0.26.3-
|
|
28
|
+
"@agoric/casting": "^0.4.3-u13.0",
|
|
29
|
+
"@agoric/ertp": "^0.16.3-u13.0",
|
|
30
|
+
"@agoric/internal": "^0.4.0-u13.0",
|
|
31
|
+
"@agoric/notifier": "^0.6.3-u13.0",
|
|
32
|
+
"@agoric/store": "^0.9.3-u13.0",
|
|
33
|
+
"@agoric/swingset-vat": "^0.32.3-u13.0",
|
|
34
|
+
"@agoric/vat-data": "^0.5.3-u13.0",
|
|
35
|
+
"@agoric/vats": "^0.15.2-u13.0",
|
|
36
|
+
"@agoric/zoe": "^0.26.3-u13.0",
|
|
37
37
|
"@endo/eventual-send": "0.17.2",
|
|
38
38
|
"@endo/far": "0.2.18",
|
|
39
39
|
"@endo/marshal": "0.8.5",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "5a6cdeb0c18ae9700d706445acf402f8d1e873c3"
|
|
67
67
|
}
|
package/src/types.d.ts
CHANGED
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
* Downside is it can't reference any ambient types, which most of agoric-sdk type are presently.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import { ERef, FarRef } from '@endo/far';
|
|
8
|
+
import type { ERef, FarRef } from '@endo/far';
|
|
9
9
|
import type { CapData } from '@endo/marshal';
|
|
10
10
|
import type { MsgWalletSpendAction } from '@agoric/cosmic-proto/swingset/msgs';
|
|
11
|
+
import type { AgoricNamesRemotes } from '@agoric/vats/tools/board-utils.js';
|
|
12
|
+
import type { OfferSpec } from './offers.js';
|
|
11
13
|
|
|
12
14
|
declare const CapDataShape: unique symbol;
|
|
13
15
|
|
|
@@ -74,3 +76,11 @@ export type WalletSpendActionMsg = {
|
|
|
74
76
|
* the sending of the message (as is the case for WALLET_SPEND_ACTION).
|
|
75
77
|
*/
|
|
76
78
|
export type WalletBridgeMsg = WalletActionMsg | WalletSpendActionMsg;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Used for clientSupport helpers
|
|
82
|
+
*/
|
|
83
|
+
export type OfferMaker = (
|
|
84
|
+
agoricNames: AgoricNamesRemotes,
|
|
85
|
+
...rest: any[]
|
|
86
|
+
) => OfferSpec;
|