Skip to content
This repository was archived by the owner on Sep 22, 2023. It is now read-only.

Commit 21cf0ce

Browse files
Beta 3 updates (#89)
Includes updates to the quickstart, networks page, and a new page for the beta-3 network
1 parent cc577e6 commit 21cf0ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+864
-1164
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh
2424
- name: Modify Path
2525
run: echo "$HOME/.fuelup/bin:${GITHUB_PATH}" >> $GITHUB_PATH
26-
- name: Set Default Beta-2 Toolchain
27-
run: fuelup toolchain install beta-2 && fuelup default beta-2
26+
- name: Set Default Beta-3 Toolchain
27+
run: fuelup toolchain install beta-3 && fuelup default beta-3
2828
- name: Build Contract
29-
run: forc build --path ./beta2-quickstart-master/counter-contract
29+
run: forc build --path ./quickstart-example/counter-contract
3030
- name: Run contract tests
3131
uses: actions-rs/cargo@v1
3232
with:
3333
command: test
34-
args: --manifest-path ./beta2-quickstart-master/counter-contract/Cargo.toml
34+
args: --manifest-path ./quickstart-example/counter-contract/Cargo.toml
3535
- name: Check Cargo fmt & clippy
3636
run: |
37-
cd beta2-quickstart-master/counter-contract
37+
cd quickstart-example/counter-contract
3838
cargo fmt --all --check
3939
cargo clippy --all-targets --all-features

β€Žbeta2-quickstart-master/frontend/src/contracts/factories/CounterContractAbi__factory.tsβ€Ž

Lines changed: 0 additions & 64 deletions
This file was deleted.

β€Žbeta2-quickstart-master/frontend/src/contracts/index.tsβ€Ž

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Žbook.tomlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ git-repository-url = "https://github.com/FuelLabs/fuel-docs"
1010

1111
[rust]
1212
edition = "2021"
13+
14+
[output.html.redirect]
15+
"/developer-quickstart.html" = "https://fuelbook.fuel.network/master/quickstart/developer-quickstart.html"
File renamed without changes.

β€Žbeta2-quickstart-master/counter-contract/Cargo.tomlβ€Ž renamed to β€Žquickstart-example/counter-contract/Cargo.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name = "counter-contract"
33
description = "A cargo-generate template for Rust + Sway integration testing."
44
version = "0.1.0"
55
edition = "2021"
6-
authors = ["camiinthisthang"]
6+
authors = ["sarahschwartz <[email protected]>"]
77
license = "Apache-2.0"
88

99
[dev-dependencies]
10-
fuels = { version = "0.31" }
10+
fuels = { version = "0.37", features = ["fuel-core-lib"] }
1111
tokio = { version = "1.12", features = ["rt", "macros"] }
1212

1313
[[test]]
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[package]]
22
name = 'core'
3-
source = 'path+from-root-E6BBD1A08F478960'
3+
source = 'path+from-root-894BF76E6DA2FFD3'
44

55
[[package]]
66
name = 'counter-contract'
@@ -9,5 +9,5 @@ dependencies = ['std']
99

1010
[[package]]
1111
name = 'std'
12-
source = 'git+https://github.com/fuellabs/sway?tag=v0.32.2#b9996f13463c324e256014935c053c334b880ab5'
12+
source = 'git+https://github.com/fuellabs/sway?tag=v0.35.3#5d2b10bd83791d2eaff04206dbd45bfdd9cf23ff'
1313
dependencies = ['core']

0 commit comments

Comments
Β (0)