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

Commit 0c84bde

Browse files
repo: point this repo and its doublezero-solana deps at the malbeclabs org (#412)
Ahead of moving `doublezero-offchain` and `doublezero-solana` from the `doublezerofoundation` org to `malbeclabs`. ## ⚠️ Do not merge before the transfer CI on this PR fails, and that is expected. `malbeclabs/doublezero-solana` does not exist yet, so cargo cannot resolve the new dep URL. The same reason makes the local pre-commit clippy hook fail, so the commit skipped it. Merge order: transfer both repos, then merge this, then re-run CI. ## What changed | File | Change | Why | |---|---|---| | `release/.goreleaser.*.yaml` (5) | `owner: doublezerofoundation` → `malbeclabs` | **The one real breakage.** GoReleaser writes the GitHub release to the owner named here. The new repo's `GITHUB_TOKEN` has no write access to the old org, so every release workflow fails until this lands. | | `Cargo.toml` | 3 `doublezero-solana` git deps | Tag `revenue-distribution/v0.3.7` is unchanged, so the same commit resolves from the new URL. | | `Cargo.lock` | 3 matching `source =` lines | URL swap only. The pinned sha `4368da2c` does not change, so no re-resolution. | | `Cargo.toml` | `repository`, `homepage` | Crate metadata. | | `scripts/install-doublezero-solana.sh` | `REPO=` and 4 curl examples | Public install path validators run. | | `CONTRIBUTING.md` | `doublezero-rewarder` → `doublezero-offchain` | That old name already redirects here. Left alone it would take two hops after the transfer. | ## Deliberately left alone - **`network-shapley-rs`** stays on `doublezerofoundation`. That repo is not moving and it is public, so the dep keeps working. Possible follow-up. - **CHANGELOG.md link footers** (~14 files). GitHub keeps redirects for old PR and release URLs, so these stay correct. ## Not a code change, still needed - Re-add the four repo Actions secrets if the transfer drops them: `CLOUDSMITH_TOKEN`, `GORELEASER_KEY`, `SLACK_BOTS_WEBHOOK`, `MALBECLABS_DOUBLEZERO_SSH`. The SSH one looks unused, every git dep is public. - Check the `main` ruleset and the `copilot` environment survived. - Cloudsmith is unaffected. Those repos (`doublezero`, `doublezero-testnet`, `doublezero-devnet`) live on Cloudsmith, not GitHub, and the apt package names do not change.
1 parent 7db4832 commit 0c84bde

9 files changed

Lines changed: 21 additions & 21 deletions

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ our way or a bug to report:
66

77
- **Contributing Code**: If you have new code or a bug fix, fork this
88
repo, create a logically-named branch, and [submit a PR against this
9-
repo](https://github.com/doublezerofoundation/doublezero-rewarder). Include a
9+
repo](https://github.com/malbeclabs/doublezero-offchain). Include a
1010
write up of the PR with details on what it does.
1111

1212
- **Reporting Bugs**: Open an issue [against this
13-
repo](https://github.com/doublezerofoundation/doublezero-rewarder/issues) with as
13+
repo](https://github.com/malbeclabs/doublezero-offchain/issues) with as
1414
much detail as you can. At the very least you'll include steps to
1515
reproduce the problem.
1616

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ edition = "2024"
2525
authors = ["Malbec Labs <dev@malbeclabs.com>"]
2626
readme = "README.md"
2727
license = "Apache-2.0"
28-
repository = "https://github.com/doublezerofoundation/doublezero-offchain"
29-
homepage = "https://github.com/doublezerofoundation/doublezero-offchain"
28+
repository = "https://github.com/malbeclabs/doublezero-offchain"
29+
homepage = "https://github.com/malbeclabs/doublezero-offchain"
3030

3131
[workspace.dependencies]
3232
anyhow = "1"
@@ -108,19 +108,19 @@ tracing = "0.1"
108108
tracing-subscriber = { version = "0.3", default-features = true, features = ["env-filter", "fmt", "registry"] }
109109
url = "2"
110110

111-
### Dependencies found in github.com/doublezerofoundation/doublezero-solana
111+
### Dependencies found in github.com/malbeclabs/doublezero-solana
112112

113113
[workspace.dependencies.doublezero-passport]
114114
features = ["offchain"]
115-
git = "https://github.com/doublezerofoundation/doublezero-solana"
115+
git = "https://github.com/malbeclabs/doublezero-solana"
116116
tag = "revenue-distribution/v0.3.7"
117117

118118
[workspace.dependencies.doublezero-program-tools]
119-
git = "https://github.com/doublezerofoundation/doublezero-solana"
119+
git = "https://github.com/malbeclabs/doublezero-solana"
120120
tag = "revenue-distribution/v0.3.7"
121121

122122
[workspace.dependencies.doublezero-revenue-distribution]
123-
git = "https://github.com/doublezerofoundation/doublezero-solana"
123+
git = "https://github.com/malbeclabs/doublezero-solana"
124124
tag = "revenue-distribution/v0.3.7"
125125

126126
### Dependencies found in github.com/malbeclabs/doublezero

release/.goreleaser.contributor-rewards.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ changelog:
7474

7575
release:
7676
github:
77-
owner: doublezerofoundation
77+
owner: malbeclabs
7878
name: doublezero-offchain
7979
draft: false
8080
replace_existing_artifacts: true

release/.goreleaser.doublezero-offchain-scheduler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ changelog:
8080

8181
release:
8282
github:
83-
owner: doublezerofoundation
83+
owner: malbeclabs
8484
name: doublezero-offchain
8585
draft: false
8686
replace_existing_artifacts: true

release/.goreleaser.doublezero-solana-cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ changelog:
6666

6767
release:
6868
github:
69-
owner: doublezerofoundation
69+
owner: malbeclabs
7070
name: doublezero-offchain
7171
draft: false
7272
replace_existing_artifacts: true

release/.goreleaser.doublezero-solana-validator-debt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ changelog:
7474

7575
release:
7676
github:
77-
owner: doublezerofoundation
77+
owner: malbeclabs
7878
name: doublezero-offchain
7979
draft: false
8080
replace_existing_artifacts: true

release/.goreleaser.sentinel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ changelog:
7474

7575
release:
7676
github:
77-
owner: doublezerofoundation
77+
owner: malbeclabs
7878
name: doublezero-offchain
7979
draft: false
8080
replace_existing_artifacts: true

scripts/install-doublezero-solana.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
# Install doublezero-solana from GitHub Releases.
33
#
44
# Usage:
5-
# curl -fsSL https://raw.githubusercontent.com/doublezerofoundation/doublezero-offchain/main/scripts/install-doublezero-solana.sh | sudo bash
6-
# curl -fsSL https://raw.githubusercontent.com/doublezerofoundation/doublezero-offchain/main/scripts/install-doublezero-solana.sh | bash -s -- --version 0.4.2-rc4
7-
# curl -fsSL https://raw.githubusercontent.com/doublezerofoundation/doublezero-offchain/main/scripts/install-doublezero-solana.sh | bash -s -- --install-dir .
8-
# curl -fsSL https://raw.githubusercontent.com/doublezerofoundation/doublezero-offchain/main/scripts/install-doublezero-solana.sh | bash -s -- --format tar.gz
5+
# curl -fsSL https://raw.githubusercontent.com/malbeclabs/doublezero-offchain/main/scripts/install-doublezero-solana.sh | sudo bash
6+
# curl -fsSL https://raw.githubusercontent.com/malbeclabs/doublezero-offchain/main/scripts/install-doublezero-solana.sh | bash -s -- --version 0.4.2-rc4
7+
# curl -fsSL https://raw.githubusercontent.com/malbeclabs/doublezero-offchain/main/scripts/install-doublezero-solana.sh | bash -s -- --install-dir .
8+
# curl -fsSL https://raw.githubusercontent.com/malbeclabs/doublezero-offchain/main/scripts/install-doublezero-solana.sh | bash -s -- --format tar.gz
99
#
1010
# By default, installs via .deb on Debian/Ubuntu, .rpm on RHEL/Fedora, or
1111
# .tar.gz otherwise. Use --install-dir to extract the binary to a custom
1212
# location instead of using a package manager.
1313

1414
set -euo pipefail
1515

16-
REPO="doublezerofoundation/doublezero-offchain"
16+
REPO="malbeclabs/doublezero-offchain"
1717
TAG_PREFIX="doublezero-solana"
1818

1919
# --- Formatting ---

0 commit comments

Comments
 (0)