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

remove forc explore #142

Merged
merged 3 commits into from
Jul 3, 2024
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
2 changes: 0 additions & 2 deletions book/src/contributing/adding-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ set of repositories:
```sh
# The set of fuel repositories.
declare -A fuel_repos=(
[forc-explorer]="https://github.com/fuellabs/forc-explorer"
[forc-wallet]="https://github.com/fuellabs/forc-wallet"
[fuel-core]="https://github.com/fuellabs/fuel-core"
[sway]="https://github.com/fuellabs/sway"
Expand Down Expand Up @@ -44,7 +43,6 @@ Finally, add a call to `refresh` for the new package:
refresh pkg_forc
refresh pkg_forc_client
refresh pkg_forc_doc
refresh pkg_forc_explore
refresh pkg_forc_fmt
refresh pkg_forc_index
refresh pkg_forc_lsp
Expand Down
1 change: 0 additions & 1 deletion book/src/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ The `fuel.nix` flake provides the following packages:
| [`forc-crypto`][sway-repo] | A Forc plugin for hashing arbitrary data. |
| [`forc-debug`][sway-repo] | A Forc plugin for debugging via CLI and IDE. |
| [`forc-doc`][sway-repo] | Sway API documentation generator. |
| [`forc-explore`][sway-repo] | Runs the Fuel Explorer. |
| [`forc-fmt`][sway-repo] | The Sway code formatter. |
| [`forc-lsp`][sway-repo] | The Sway Language Server Protocol implementation. |
| [`forc-tx`][sway-repo] | Construct transactions with a CLI. |
Expand Down
1 change: 0 additions & 1 deletion filters.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ with pkgs.lib; [
(m: m.pname != "forc-crypto" || versionAtLeast m.version "0.48.1")
(m: m.pname != "forc-debug" || versionAtLeast m.version "0.48.1")
(m: m.pname != "forc-doc" || versionAtLeast m.version "0.29.0")
(m: m.pname != "forc-explore" || versionAtLeast m.version "0.19.0")
(m: m.pname != "forc-fmt" || versionAtLeast m.version "0.19.0")
(m: m.pname != "forc-lsp" || versionAtLeast m.version "0.19.0")
(m: m.pname != "forc-tx" || versionAtLeast m.version "0.33.1")
Expand Down
18 changes: 8 additions & 10 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -238,16 +238,14 @@

sway-dev = pkgs.mkShell {
name = "sway-dev";
inputsFrom = with fuelpkgs;
[
forc-nightly
forc-client-nightly
forc-doc-nightly
forc-fmt-nightly
forc-lsp-nightly
forc-tx-nightly
]
++ pkgs.lib.optional (builtins.hasAttr "forc-explore-nightly" fuelpkgs) fuelpkgs.forc-explore-nightly;
inputsFrom = with fuelpkgs; [
forc-nightly
forc-client-nightly
forc-doc-nightly
forc-fmt-nightly
forc-lsp-nightly
forc-tx-nightly
];
buildInputs = with fuelpkgs; [fuel-core fuel-gql-cli];
};

Expand Down
8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-09-01.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-10-06.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-10-27.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-10-28.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.28.1.nix

This file was deleted.

1 change: 0 additions & 1 deletion milestones.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
# Commits sourced from:
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-testnet.toml
testnet = {
forc-explorer = "4bb7392eed085ee3a6795b98ea25392b3f41ade8";
forc-wallet = "8420eb63b6c288a051831f2871a937a89b9e43bc";
fuel-core = "9fddeccb4d112c148f6793bc3d21131a13778a25";
sway = "2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6";
Expand Down
6 changes: 0 additions & 6 deletions script/refresh-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ echo "Manifests directory: $MANIFESTS_DIR"

# The set of fuel repositories.
declare -A fuel_repos=(
[forc-explorer]="https://github.com/fuellabs/forc-explorer"
[forc-wallet]="https://github.com/fuellabs/forc-wallet"
[fuel-core]="https://github.com/fuellabs/fuel-core"
[sway]="https://github.com/fuellabs/sway"
Expand Down Expand Up @@ -47,10 +46,6 @@ declare -A pkg_forc_doc=(
[name]="forc-doc"
[repo]="${fuel_repos[sway]}"
)
declare -A pkg_forc_explore=(
[name]="forc-explore"
[repo]="${fuel_repos[forc-explorer]}"
)
declare -A pkg_forc_fmt=(
[name]="forc-fmt"
[repo]="${fuel_repos[sway]}"
Expand Down Expand Up @@ -228,7 +223,6 @@ refresh pkg_forc_client
refresh pkg_forc_crypto
refresh pkg_forc_debug
refresh pkg_forc_doc
refresh pkg_forc_explore
refresh pkg_forc_fmt
refresh pkg_forc_lsp
refresh pkg_forc_tx
Expand Down
Loading