Skip to content

Commit

Permalink
wip: docs(agent): merge intersections of partials
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed May 3, 2024
1 parent 6cbeb27 commit 88a819c
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions packages/agent/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,10 @@ this compiles the source code first to obtain a binary.
contractCode.upload({
compiler,
rebuild,
} & {
reupload,
uploadFee,
uploadMemo,
uploadStore,
} & {
reupload,
uploader,
})
</pre>
Expand Down Expand Up @@ -201,13 +198,10 @@ this compiles the source code first to obtain a binary.
deploymentUnit.upload({
compiler,
rebuild,
} & {
reupload,
uploadFee,
uploadMemo,
uploadStore,
} & {
reupload,
uploader,
})
</pre>
Expand Down Expand Up @@ -308,13 +302,10 @@ this compiles the source code first to obtain a binary.
contractTemplate.upload({
compiler,
rebuild,
} & {
reupload,
uploadFee,
uploadMemo,
uploadStore,
} & {
reupload,
uploader,
})
</pre>
Expand Down Expand Up @@ -457,13 +448,10 @@ this compiles the source code first to obtain a binary.
contractInstance.upload({
compiler,
rebuild,
} & {
reupload,
uploadFee,
uploadMemo,
uploadStore,
} & {
reupload,
uploader,
})
</pre>
Expand Down Expand Up @@ -522,7 +510,6 @@ Returns an iterable of entries in the map.
<strong>const</strong> result: <em>Record&lt;string, &gt;</em> = <strong>await</strong> deployment.build({
compiler,
rebuild,
} & {
units,
})
</pre>
Expand Down Expand Up @@ -641,17 +628,12 @@ the same code.
<strong>const</strong> result: <em>Record&lt;string, &gt;</em> = <strong>await</strong> deployment.upload({
compiler,
rebuild,
} & {
reupload,
units,
uploadFee,
uploadMemo,
uploadStore,
} & {
reupload,
uploader,
} & {
units,
uploadStore,
})
</pre>

Expand Down

0 comments on commit 88a819c

Please sign in to comment.