Skip to content

Commit 687744d

Browse files
committed
docs: update on zoe.installBundle and zoe.installBundleId
1 parent 30637d4 commit 687744d

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

main/reference/zoe-api/zoe.md

+22-10
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,16 @@ const invitation = await invitationIssuer.claim(untrustedInvitation);
141141
const invitationValue = await E(Zoe).getInvitationDetails(invitation);
142142
```
143143

144-
## E(Zoe).install(bundle)
144+
## E(Zoe).install(bundle, bundleLabel?)
145145

146146
- **bundle**: **SourceBundle**
147+
- *bundleLabel*: string - Optional
147148
- Returns: **Promise<Installation>**
148149

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.
151154

152155
```js
153156
// bundleSource takes source code files and
@@ -157,6 +160,22 @@ const bundle = await bundleSource(pathResolve(`./src/contract.js`));
157160
const installationP = await E(Zoe).install(bundle);
158161
```
159162

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+
160179
## E(Zoe).getConfiguration()
161180

162181
- Returns: **Promise<Object>**
@@ -406,13 +425,6 @@ const paymentKeywordRecord = harden({ Asset: quatloosPayment });
406425
[`zcf.makeInvitation(...)`](./zoe-contract-facet#zcf-makeinvitation-offerhandler-description-customdetails-proposalshape).
407426
Each contract can define the properties it supports and which are required.
408427

409-
## E(Zoe).installBundleID(bundleId)
410-
411-
- bundleId: **BundleId**
412-
- Returns: **Promise<Installation>**
413-
414-
Reserved for future use.
415-
416428
## E(Zoe).getBundleIDFromInstallation(installation)
417429

418430
- **installation**: **Installation**

0 commit comments

Comments
 (0)