@@ -141,13 +141,16 @@ const invitation = await invitationIssuer.claim(untrustedInvitation);
141
141
const invitationValue = await E (Zoe).getInvitationDetails (invitation);
142
142
```
143
143
144
- ## E(Zoe).install(bundle)
144
+ ## E(Zoe).install(bundle, bundleLabel? )
145
145
146
146
- ** bundle** : ** SourceBundle**
147
+ - * bundleLabel* : string - Optional
147
148
- Returns: ** Promise< ; Installation>**
148
149
149
- Takes bundled source code for a Zoe contract as an argument and installs the code on Zoe.
150
- Returns a ** Promise** for an ** Installation** object.
150
+ Takes bundled source code for a Zoe contract as an argument and
151
+ installs the code with Zoe. The * bundleLabel* will be accessible on the
152
+ ** Installation** object. Returns a ** Promise** for an ** Installation**
153
+ object.
151
154
152
155
``` js
153
156
// bundleSource takes source code files and
@@ -157,6 +160,22 @@ const bundle = await bundleSource(pathResolve(`./src/contract.js`));
157
160
const installationP = await E (Zoe).install (bundle);
158
161
```
159
162
163
+ ## E(Zoe).installBundleID(bundleId, bundleLabel?)
164
+
165
+ - bundleId: ** BundleId**
166
+ - * bundleLabel* : string - Optional
167
+ - Returns: ** Promise< ; Installation>**
168
+
169
+ Takes a bundleId for a Zoe contract (often generated in a [ coreEval
170
+ proposal] ( /guides/coreeval/local-testnet.html#deploying-contracts-using-core-eval-proposals )
171
+ as an argument and installs the code with Zoe. The * bundleLabel* will be
172
+ accessible on the ** Installation** object. Returns a ** Promise** for
173
+ an ** Installation** object.
174
+
175
+ ``` js
176
+ const installationP = await E (Zoe).installBundleID (bundleId, bundleLabel);
177
+ ```
178
+
160
179
## E(Zoe).getConfiguration()
161
180
162
181
- Returns: ** Promise< ; Object>**
@@ -406,13 +425,6 @@ const paymentKeywordRecord = harden({ Asset: quatloosPayment });
406
425
[ ` zcf.makeInvitation(...) ` ] ( ./zoe-contract-facet#zcf-makeinvitation-offerhandler-description-customdetails-proposalshape ) .
407
426
Each contract can define the properties it supports and which are required.
408
427
409
- ## E(Zoe).installBundleID(bundleId)
410
-
411
- - bundleId: ** BundleId**
412
- - Returns: ** Promise< ; Installation>**
413
-
414
- Reserved for future use.
415
-
416
428
## E(Zoe).getBundleIDFromInstallation(installation)
417
429
418
430
- ** installation** : ** Installation**
0 commit comments