You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,12 @@ This repository contains Bittensor's substrate-chain. Subtensor contains the tru
22
22
23
23
* The binaries in ./bin/release are x86_64 binaries to be used with the Linux kernel.
24
24
* Subtensor needs ~286 MiB to run.
25
-
* Architectures other than x86_64 are currently not supported.
25
+
* Supported Architectures:
26
+
- Linux: x86_64
27
+
- MacOS: x86_64 and ARM64 (M series Macs)
26
28
* OSs other than Linux and MacOS are currently not supported.
27
29
30
+
28
31
## Architectures
29
32
Subtensor support the following architectures:
30
33
@@ -34,9 +37,10 @@ Requirements:
34
37
* glibc 2.11+
35
38
A fresh FRAME-based [Substrate](https://www.substrate.io/) node, ready for hacking :rocket:
36
39
37
-
## MacOS x86_64
40
+
## MacOS x86_64 & arm64 (Apple Silicon)
38
41
Requirements:
39
-
* MacOS 10.7+ (Lion+)
42
+
* macOS 10.7+ (Lion+) for x86_64
43
+
* macOS 11+ (Big Sur+) for Apple Silicon (M1, M2, and later) with arm64 architecture support.
40
44
41
45
## Network requirements
42
46
* Subtensor needs access to the public internet
@@ -49,7 +53,7 @@ Requirements:
49
53
50
54
---
51
55
52
-
## For Subnet Development
56
+
## For Subnet Development
53
57
54
58
If you are developing and testing subnet incentive mechanism, you will need to run a local subtensor node. Follow the detailed step-by-step instructions provided in the [**Subtensor Nodes** section in Bittensor Developer Documentation](https://docs.bittensor.com/subtensor-nodes).
55
59
@@ -216,7 +220,7 @@ If you want to see the multi-node consensus algorithm in action, refer to our
216
220
A Substrate project such as this consists of a number of components that are spread across a few
217
221
directories.
218
222
219
-
### Node Capabilities
223
+
### Node Capabilities
220
224
221
225
A blockchain node is an application that allows users to participate in a blockchain network.
222
226
Substrate-based blockchain nodes expose a number of capabilities:
@@ -232,7 +236,7 @@ Substrate-based blockchain nodes expose a number of capabilities:
232
236
233
237
**Directory structure**
234
238
235
-
There are several files in the [`node`](./node/) directory. Make a note of the following important files:
239
+
There are several files in the [`node`](./node/) directory. Make a note of the following important files:
236
240
237
241
-[`chain_spec.rs`](./node/src/chain_spec.rs): A
238
242
[chain specification](https://docs.substrate.io/main-docs/build/chain-spec/) is a
0 commit comments