Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @mysten/sui from 1.8.0 to 1.12.0 #181

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/orange-plants-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mysten/suins": patch
---

Update @mysten/sui.js dependency
19 changes: 9 additions & 10 deletions .github/workflows/sdk_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
with:
fetch-depth: 1

- name: Install Homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH

- name: Install Sui using Homebrew
run: brew install sui

- uses: actions/setup-node@v4
with:
node-version: 20
Expand All @@ -36,18 +44,9 @@ jobs:
run: |
pnpm install

- name: Download & Extract latest SUI binary
run: |
url=$(curl -s https://api.github.com/repos/mystenlabs/sui/releases/latest | jq -r '.assets[] | select(.name | contains("ubuntu")) | .browser_download_url')
filename="sui-x86-64.tgz"
wget $url -O $filename
tar -xzf $filename
ls
./sui -V

- name: Prepare local network & run SDK tests
env:
IS_CI_JOB: true
NETWORK: localnet
run: |
./sui start --with-faucet --force-regenesis --epoch-duration-ms 10000000 > /dev/null 2>&1 & cd sdk && VITE_SUI_BIN="../sui" pnpm test:e2e
sui start --with-faucet --force-regenesis --epoch-duration-ms 120000 > /dev/null 2>&1 & cd sdk && VITE_SUI_BIN="sui" pnpm test:e2e
11 changes: 0 additions & 11 deletions .github/workflows/suins-build-tx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
description: 'select transaction type to create'
type: choice
options:
- Create Deepbook Pools
- Multi Purpose Operation
- Profits to Treasury
- Transfer Reserved Names
Expand Down Expand Up @@ -62,16 +61,6 @@ jobs:
run: |
pnpm install

- name: Create Deepbook Pools
if: ${{ inputs.transaction_type == 'Create Deepbook Pools' }}
env:
NODE_ENV: production
GAS_OBJECT: ${{ inputs.gas_object_id }}
NETWORK: mainnet
ORIGIN: gh_action
run: |
cd scripts && pnpm create-deepbook-pools

- name: Profits to Treasury
if: ${{ inputs.transaction_type == 'Profits to Treasury' }}
env:
Expand Down
Loading
Loading