-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathmilestones.nix
28 lines (26 loc) · 1.1 KB
/
milestones.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# A map from repo name to git commit hash for each release milestone.
# Allows for referencing packages or package sets by milestone, e.g.
# `forc-testnet`, `fuel-core-mainnet`, etc.
{
# Commits sourced from:
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-testnet.toml
testnet = {
forc-wallet = "f4052012e05babee66bf3a70ab06c0c8570f56d9";
fuel-core = "eea8c605258d79d5243f3f822c0e1205b0802f3c";
sway = "986aee2c1e34c9cd958c81e7fd6b84638b26619b";
};
# Commits sourced from:
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-mainnet.toml
ignition = {
forc-wallet = "f4052012e05babee66bf3a70ab06c0c8570f56d9";
fuel-core = "eea8c605258d79d5243f3f822c0e1205b0802f3c";
sway = "986aee2c1e34c9cd958c81e7fd6b84638b26619b";
};
# Commits sourced from:
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-mainnet.toml
mainnet = {
forc-wallet = "f4052012e05babee66bf3a70ab06c0c8570f56d9";
fuel-core = "eea8c605258d79d5243f3f822c0e1205b0802f3c";
sway = "986aee2c1e34c9cd958c81e7fd6b84638b26619b";
};
}