Skip to content
Merged
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
18 changes: 18 additions & 0 deletions .github/workflows/bytecode-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: bytecode-build
run-name: Building Sui package bytecode
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
container: mysten/sui-tools:mainnet
steps:
- uses: actions/checkout@v4

- name: Build Sui package and dump bytecode
run: sui move build --dump-bytecode-as-base64 --ignore-chain > bytecode.json

- uses: actions/upload-artifact@v4
with:
name: bytecode-${{ github.sha }}
path: bytecode.json
retention-days: 30
2 changes: 1 addition & 1 deletion contracts/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ dependencies = [

[move.toolchain-version]
compiler-version = "1.56.2"
edition = "2024.beta"
edition = "2024"
flavor = "sui"
2 changes: 1 addition & 1 deletion contracts/Move.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liquid_staking"
edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move
edition = "2024" # edition = "legacy" to use legacy (pre-2024) Move
published-at = "0xc89f4edb8f4dafb97934dbfce11ac132c07759c3bdda6f31d09c7fdca3b80b76"
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"]
Expand Down