gentle-airline-79200
10/24/2022, 9:58 AMSui
publishing move package.
https://docs.sui.io/build/devnet#publish-a-move-module
Here, They have this command
sui client publish --path <your-sui-repo>/sui_programmability/examples/move_tutorial --gas-budget 30000
Where this --gas-budget 30000
is bit unclear?glamorous-mouse-696
10/24/2022, 10:03 AMMaximum Gas Budget: The maximum number of gas units that can be expended by executing this transaction. If this budget is exceeded, transaction execution will abort and have no effects other than debiting the gas input. The gas input object must have a value higher than the gas price multiplied by the max gas, and this product is the maximum amount that the gas input object will be debited for the transaction.https://docs.sui.io/devnet/learn/transactions#transaction-metadata Guess this must be it.
gentle-airline-79200
10/24/2022, 12:43 PMglamorous-mouse-696
10/24/2022, 12:45 PMgentle-airline-79200
10/24/2022, 12:47 PMjolly-island-57985
10/25/2022, 6:54 AM