Skip to content

Commit 40d4153

Browse files
authored
Merge pull request #1 from oasisprotocol/sapphire-0.9.0-testnet
Add Sapphire 0.9.0-testnet and 0.8.2 bundle metadata
2 parents 0316f9d + 78f3b87 commit 40d4153

6 files changed

+416
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,26 @@
33
This repository contains metadata that is used by the nodes for automated
44
bundle discovery and distribution.
55

6+
## List of Bundles
7+
8+
### Mainnet
9+
10+
| Bundle | Manifest Hash |
11+
| ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- |
12+
| [Sapphire 0.8.2](https://github.com/oasisprotocol/sapphire-paratime/releases/download/v0.8.2/sapphire-paratime.orc) | e523903e480a8bef7caf18b846aefaa17913878b67eee13ac618849dd0bb8741 |
13+
14+
### Testnet
15+
16+
| Bundle | Manifest Hash |
17+
| ----------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- |
18+
| [Sapphire 0.9.0-testnet](https://github.com/oasisprotocol/sapphire-paratime/releases/download/v0.9.0-testnet/sapphire-paratime.orc) | 7af652553a1fe1e2b2ec4535458eed4dd760cce1dd4df00c30b164523ecd674e |
19+
20+
## Verify Metadata
21+
22+
To ensure that the name of the metadata file matches the hash of the bundle
23+
manifest linked within the metadata file, run the following commands:
24+
25+
```bash
26+
cd src
27+
go test ./... -count=1 -v
28+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/oasisprotocol/sapphire-paratime/releases/download/v0.9.0-testnet/sapphire-paratime.orc
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/oasisprotocol/sapphire-paratime/releases/download/v0.8.2/sapphire-paratime.orc

src/go.mod

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
module metadata
2+
3+
go 1.23.2
4+
5+
require (
6+
github.com/oasisprotocol/oasis-core/go v0.2403.1
7+
github.com/stretchr/testify v1.9.0
8+
)
9+
10+
require (
11+
github.com/a8m/envsubst v1.4.2 // indirect
12+
github.com/beorn7/perks v1.0.1 // indirect
13+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
14+
github.com/cometbft/cometbft v0.37.11 // indirect
15+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
16+
github.com/dgraph-io/badger/v4 v4.3.1 // indirect
17+
github.com/dgraph-io/ristretto v1.0.0 // indirect
18+
github.com/dustin/go-humanize v1.0.1 // indirect
19+
github.com/fsnotify/fsnotify v1.7.0 // indirect
20+
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
21+
github.com/go-kit/log v0.2.1 // indirect
22+
github.com/go-logfmt/logfmt v0.6.0 // indirect
23+
github.com/gogo/protobuf v1.3.2 // indirect
24+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
25+
github.com/golang/protobuf v1.5.4 // indirect
26+
github.com/google/flatbuffers v24.3.25+incompatible // indirect
27+
github.com/hashicorp/hcl v1.0.0 // indirect
28+
github.com/ipfs/go-log/v2 v2.5.1 // indirect
29+
github.com/klauspost/compress v1.17.11 // indirect
30+
github.com/magiconair/properties v1.8.7 // indirect
31+
github.com/mattn/go-isatty v0.0.20 // indirect
32+
github.com/mitchellh/mapstructure v1.5.0 // indirect
33+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
34+
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
35+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
36+
github.com/pkg/errors v0.9.1 // indirect
37+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
38+
github.com/prometheus/client_golang v1.20.5 // indirect
39+
github.com/prometheus/client_model v0.6.1 // indirect
40+
github.com/prometheus/common v0.60.0 // indirect
41+
github.com/prometheus/procfs v0.15.1 // indirect
42+
github.com/sagikazarmark/locafero v0.4.0 // indirect
43+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
44+
github.com/sourcegraph/conc v0.3.0 // indirect
45+
github.com/spf13/afero v1.11.0 // indirect
46+
github.com/spf13/cast v1.6.0 // indirect
47+
github.com/spf13/pflag v1.0.5 // indirect
48+
github.com/spf13/viper v1.19.0 // indirect
49+
github.com/subosito/gotenv v1.6.0 // indirect
50+
github.com/x448/float16 v0.8.4 // indirect
51+
go.opencensus.io v0.24.0 // indirect
52+
go.uber.org/multierr v1.11.0 // indirect
53+
go.uber.org/zap v1.27.0 // indirect
54+
golang.org/x/crypto v0.28.0 // indirect
55+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
56+
golang.org/x/net v0.30.0 // indirect
57+
golang.org/x/sys v0.26.0 // indirect
58+
golang.org/x/text v0.19.0 // indirect
59+
google.golang.org/protobuf v1.35.1 // indirect
60+
gopkg.in/ini.v1 v1.67.0 // indirect
61+
gopkg.in/yaml.v3 v3.0.1 // indirect
62+
)

0 commit comments

Comments
 (0)