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

docs: Testnet update #130

Merged
merged 51 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
c425f4b
Testnet update
gdanezis Oct 9, 2024
313aedf
Added 2 todo
gdanezis Oct 9, 2024
fad33a1
Make linter happy
gdanezis Oct 9, 2024
c7308cf
Updated move
gdanezis Oct 9, 2024
5b35d52
Line ending
gdanezis Oct 9, 2024
98bcfb1
update agg and pub links and reformat HTML
mlegner Oct 10, 2024
2302da9
replace devnet by testnet in testnet ToS
mlegner Oct 10, 2024
42bd98e
Initial blog post
gdanezis Oct 10, 2024
3b65faf
Uniformize dates in blog
gdanezis Oct 10, 2024
a38c155
Copy edit blog
gdanezis Oct 10, 2024
c79b60e
minor edits
mlegner Oct 10, 2024
1da82ba
update setup instructions for our current PTN
mlegner Oct 10, 2024
047ae7f
minor fixes to setup instructions
mlegner Oct 10, 2024
035522a
Ops update
gdanezis Oct 10, 2024
51727ed
don't emphasize Sui testnet as much
mlegner Oct 10, 2024
ad82382
place setup at the front of the usage chapter
mlegner Oct 10, 2024
b2eb48f
typo
mlegner Oct 10, 2024
5cb8dfb
Added links to blog + stake docs placeholder
gdanezis Oct 10, 2024
e275e22
Merge branch 'testnet-update' of https://github.com/MystenLabs/walrus…
gdanezis Oct 10, 2024
c85f673
lint
gdanezis Oct 10, 2024
d5653a1
Fix lints
gdanezis Oct 10, 2024
f5ac4ba
add latest object IDs of PTN
mlegner Oct 11, 2024
1077f51
add latest contracts
mlegner Oct 11, 2024
dd9f665
feat: add overview of staking (#131)
karlwuest Oct 14, 2024
63242ad
latest Testnet object IDs and contracts
mlegner Oct 15, 2024
611908c
docs: stake dApp instructions (#133)
pchrysochoidis Oct 15, 2024
10c0c98
add list of aggregators and publishers
mlegner Oct 16, 2024
4a4fbb0
update public aggregator/publisher list
mlegner Oct 16, 2024
0c58ba3
docs: update ToS and link to privacy policy
mlegner Oct 16, 2024
6758c52
fix port of one publisher
mlegner Oct 17, 2024
70b2a12
fix editorconfig-checker action
mlegner Oct 17, 2024
1447260
docs: add Walrus Sites testnet docs
giac-mysten Oct 17, 2024
d3619c0
chore: update the location of the site-builder config (#136)
giac-mysten Oct 17, 2024
90ef27d
ci: update Walrus setup to Testnet (#137)
mlegner Oct 17, 2024
1e6f154
temporary exception for links to blob.store
mlegner Oct 17, 2024
8cdac4a
warnings about discontinuation of Walrus Devnet
mlegner Oct 17, 2024
84b3b5b
clarify WAL/FROST relationship
mlegner Oct 17, 2024
a66e58f
add Windows binary and re-add Ubuntu generic binary
mlegner Oct 17, 2024
9fe97c1
ci: generate preview even if linkcheck fails
mlegner Oct 17, 2024
8638dff
Revert "temporary exception for links to blob.store"
mlegner Oct 17, 2024
40ae5b4
slightly extend the glossary
mlegner Oct 17, 2024
0eec53b
add WAL and FROST to the glossary
mlegner Oct 17, 2024
5ad52ac
add client config
mlegner Oct 17, 2024
51457ed
add warning about concurrency issues
mlegner Oct 17, 2024
ef8df00
describe more store optimizations
mlegner Oct 17, 2024
2e6576b
Add WAL faucet to CLI page
mlegner Oct 17, 2024
733e634
docs: update walrus sites references and addresses
giac-mysten Oct 17, 2024
67c1c2d
mention `generate-sui-wallet` command
mlegner Oct 17, 2024
a0d20ce
clean up TODOs
mlegner Oct 17, 2024
6272bb4
minor edits on staking page
mlegner Oct 17, 2024
84b4e52
add nodeinfra agg and pub
mlegner Oct 17, 2024
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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ indent_size = unset
max_line_length = unset
trim_trailing_whitespace = unset

[{*.yml,*.yaml,*.toml,*.css}]
[{*.yml,*.yaml,*.toml,*.css,*.html}]
indent_size = 2
max_line_length = 150

Expand Down
12 changes: 8 additions & 4 deletions .github/actions/set-up-walrus/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ inputs:
SUI_KEYSTORE:
description: The content of the Sui keystore file
required: true
WALRUS_CONFIG:
description: The content of the Walrus configuration file
required: true

runs:
using: "composite"
Expand Down Expand Up @@ -54,11 +57,12 @@ runs:
- name: Install and configure Walrus
run: |
# The bin directory was already created and added to $PATH in the build-mdbook action
curl https://storage.googleapis.com/mysten-walrus-binaries/walrus-latest-ubuntu-x86_64 -o bin/walrus
curl https://storage.googleapis.com/mysten-walrus-binaries/walrus-testnet-latest-ubuntu-x86_64 -o bin/walrus
chmod +x bin/walrus
mkdir -p ~/.walrus
curl https://storage.googleapis.com/mysten-walrus-binaries/walrus-configs/client_config.yaml -o ~/.walrus/client_config.yaml
walrus -h # Ensure the walrus binary works
mkdir -p ~/.config/walrus
echo '${{ inputs.WALRUS_CONFIG }}' > ~/.config/walrus/client_config.yaml
walrus --version
walrus info # Ensure the walrus binary works
shell: bash

- name: Clone walrus-sites
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Check editorconfig
steps:
- uses: actions/checkout@v4
- run: pip install editorconfig-checker=="2.7.3"
- run: pip install editorconfig-checker=="3.0.3"
- run: ec

markdownlint:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pages-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,20 @@ permissions:
pull-requests: write

jobs:
build-with-linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-mdbook
if: github.event.action != 'closed'

preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-mdbook
with:
with_linkcheck: "false"
if: github.event.action != 'closed'
- name: Deploy preview
uses: rossjrw/[email protected]
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,11 @@ jobs:
with:
SUI_ADDRESS: "${{ vars.SUI_ADDRESS }}"
SUI_KEYSTORE: "${{ secrets.SUI_KEYSTORE }}"
WALRUS_CONFIG: "${{ vars.WALRUS_CONFIG }}"

- name: Update Walrus Site
run: >
RUST_LOG=site_builder=debug,walrus=debug,info
site-builder
--config walrus-sites/site-builder/assets/builder-example.yaml
--config walrus-sites/sites-config.yaml
update build/html ${{ vars.WALRUS_SITE_OBJECT }}
3 changes: 2 additions & 1 deletion .github/workflows/update-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
with:
SUI_ADDRESS: "${{ vars.SUI_ADDRESS }}"
SUI_KEYSTORE: "${{ secrets.SUI_KEYSTORE }}"
WALRUS_CONFIG: "${{ vars.WALRUS_CONFIG }}"

- name: Create temporary directory
run: "mkdir -p site"
Expand All @@ -45,5 +46,5 @@ jobs:
run: >
RUST_LOG=site_builder=debug,walrus=debug,info
site-builder
--config walrus-sites/site-builder/assets/builder-example.yaml
--config walrus-sites/sites-config.yaml
update --list-directory site ${{ vars.WALRUS_SITE_BIN_OBJECT }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ working_dir

# Walrus binary and configuration
walrus
!/contracts/walrus
examples/CONFIG/bin/walrus
client_config.yaml
./client_config.yaml
examples/CONFIG/config_dir/client_config.yaml
1 change: 0 additions & 1 deletion .markdownlint-cli2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ config:
- Mainnet
- Merkle
- Mysten Labs
- Portal
- Python
- Rust
- Sui
Expand Down
26 changes: 0 additions & 26 deletions contracts/blob_store/Move.lock

This file was deleted.

9 changes: 0 additions & 9 deletions contracts/blob_store/README.md

This file was deleted.

Loading