sui: add page (#14479)

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Alexandros Tzimas
2024-10-31 10:10:27 +02:00
committed by GitHub
parent 17b0f1480b
commit d74970154c
5 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# sui client ptb
> Create, sign and execute programmable transaction blocks.
> More information: <https://docs.sui.io/references/cli/ptb>.
- Call a Move function from a package and module:
`sui client ptb --move-call p::m::f "<{{type}}>" args`
- Make a Move vector with two elements of type u64:
`sui client ptb --make-move-vec "<u64>" "[1000,2000]"`
- Split a gas coin and transfer it to address:
`sui client ptb --split-coins gas "[1000]" --assign new_coins --transfer-objects "[new_coins]" @{{address}}`
- Transfer an object to an address:
`sui client ptb --transfer-objects "[{{object_id}}]" @{{address}}`
- Publish a Move package, and transfer the upgrade capability to sender:
`sui client ptb --move-call sui::tx_context::sender --assign sender --publish "." --assign upgrade_cap --transfer-objects "[upgrade_cap]" sender`