Skip to content

Commit

Permalink
fix: lower bundle storage cost to 0.02 IST / Kb like mainnet
Browse files Browse the repository at this point in the history
Minting IST can't be skipped altogether; we still need _some_.
But we can mint just 100 and only 1 time, rather than 4k several
times.
  • Loading branch information
dckc committed Dec 23, 2023
1 parent 774d182 commit 5f59651
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
15 changes: 15 additions & 0 deletions contract/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ SIGN_BROADCAST_OPTS=--keyring-backend=test --chain-id=$(CHAINID) \
--gas=auto --gas-adjustment=$(GAS_ADJUSTMENT) \
--yes -b block

mint100:
make FUNDS=1000$(ATOM) fund-acct
cd /usr/src/agoric-sdk && \
yarn --silent agops vaults open --wantMinted 100 --giveCollateral 100 >/tmp/want-ist.json && \
yarn --silent agops perf satisfaction --executeOffer /tmp/want-ist.json --from user1 --keyring-backend=test

# https://agoric.explorers.guru/proposal/61
lower-bundle-cost: scripts/lower-bundle-cost.json ./scripts/voteLatestProposalAndWait.sh
agd tx gov submit-proposal param-change scripts/lower-bundle-cost.json \
$(SIGN_BROADCAST_OPTS) \
--from user1
./scripts/voteLatestProposalAndWait.sh
# agd query swingset params

# Keep mint4k around a while for compatibility
mint4k:
make FUNDS=1000$(ATOM) fund-acct
cd /usr/src/agoric-sdk && \
Expand Down
4 changes: 0 additions & 4 deletions contract/scripts/install-bundles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ install_bundle() {
# exit fail if bundle-list is emtpy
[ -s bundles/bundle-list ] || exit 1

# TODO: avoid needing so much IST
# https://github.com/agoric-labs/dapp-game-places/issues/3
make mint4k
make mint4k
make balance-q # do we have enough IST?

for b in $(cat bundles/bundle-list); do
Expand Down
3 changes: 2 additions & 1 deletion contract/scripts/run-chain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ waitForBlock 2
# Approve any proposals forever in the background.
approveProposals &

make -C /workspace/contract mint4k
make -C /workspace/contract mint100
make -C /workspace/contract lower-bundle-cost

# bring back chain process to foreground
wait

0 comments on commit 5f59651

Please sign in to comment.