diff --git a/README.md b/README.md
index dbb0b498..19ac1354 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
@@ -13,7 +13,7 @@
Website
·
-
+
Whitepaper
·
@@ -30,7 +30,7 @@
-[][license]
+[][license]
@@ -119,19 +119,19 @@ Initially prompt parameters will always have the following values:
**Asset Weights**
-| Asset | Weight |
-|-------|--------|
-| BTC | 1.0 |
-| ETH | 0.7064366394033871 |
-| XAU | 1.7370922597118699 |
-| SOL | 0.6310037175639559 |
-| SPYX | 3.437935601155441 |
-| NVDAX | 1.6028217601617174 |
-| TSLAX | 1.6068755936957768 |
-| AAPLX | 2.0916380815843123 |
+| Asset | Weight |
+| ------ | ------------------ |
+| BTC | 1.0 |
+| ETH | 0.7064366394033871 |
+| XAU | 1.7370922597118699 |
+| SOL | 0.6310037175639559 |
+| SPYX | 3.437935601155441 |
+| NVDAX | 1.6028217601617174 |
+| TSLAX | 1.6068755936957768 |
+| AAPLX | 2.0916380815843123 |
| GOOGLX | 1.6827392777257926 |
-| XRP | 0.5658394110809131 |
-| HYPE | 0.4784547133706857 |
+| XRP | 0.5658394110809131 |
+| HYPE | 0.4784547133706857 |
| WTIOIL | 0.8475062847978935 |
Validators will alternate between sending out requests for BTC and ETH predictions, at 30min intervals. The miner has until the start time to return ($N_{\text{sim}}$) paths, each containing price predictions at times given by:
@@ -321,5 +321,5 @@ Please refer to the [LICENSE][license] file.
-[license]: https://github.com/mode-network/synth-subnet/blob/main/LICENSE
+[license]: https://github.com/synthdataco/synth-subnet/blob/main/LICENSE
[table-of-contents]: #table-of-contents
diff --git a/contrib/CONTRIBUTING.md b/contrib/CONTRIBUTING.md
index 7c4aac1e..29c4a3e3 100644
--- a/contrib/CONTRIBUTING.md
+++ b/contrib/CONTRIBUTING.md
@@ -104,7 +104,7 @@ After you submit a pull request, it will be reviewed by the maintainers. They ma
> Note: Be sure to merge the latest from "upstream" before making a pull request:
```bash
-git remote add upstream https://github.com/mode-network/synth-subnet.git
+git remote add upstream https://github.com/synthdataco/synth-subnet.git
git fetch upstream
git merge upstream/
git push origin
diff --git a/docs/miner_reference.md b/docs/miner_reference.md
index 6ddf3193..9bac2b8c 100644
--- a/docs/miner_reference.md
+++ b/docs/miner_reference.md
@@ -741,11 +741,11 @@ where
You can find the validation function here:
-[response_validation_v2.py#L49](https://github.com/mode-network/synth-subnet/blob/schedule-new-format/synth/validator/response_validation_v2.py#L49)
+[response_validation_v2.py#L51](https://github.com/synthdataco/synth-subnet/blob/main/synth/validator/response_validation_v2.py#L51)
And an example of the prompt parameters here:
-[validator.py#L71](https://github.com/mode-network/synth-subnet/blob/44921d343e6f8ba770558018a28508796ce2a3ce/neurons/validator.py#L71)
+[prompt_config.py#L5](https://github.com/synthdataco/synth-subnet/blob/main/synth/validator/prompt_config.py#L5)
You can test your prediction format using this miner script:
@@ -806,7 +806,7 @@ Yes. The testnet UID is 247, and it functions identically to mainnet.
Modify this function:
-[simulations.py#L10](https://github.com/mode-network/synth-subnet/blob/13642c4c3287da52c602ac8c629b26a7cdc66628/synth/miner/simulations.py#L10)
+[simulations.py#L25](https://github.com/synthdataco/synth-subnet/blob/main/synth/miner/simulations.py#L25)
Take into account all prompt parameters except sigma, which you may ignore.
diff --git a/docs/miner_tutorial.md b/docs/miner_tutorial.md
index 16c64dc8..d6b69596 100644
--- a/docs/miner_tutorial.md
+++ b/docs/miner_tutorial.md
@@ -40,7 +40,7 @@
### 2.1. Clone the code and implement your model
- Clone the Synth subnet repository.
-- Modify the implementation of this function to run your own model: [simulations.py#L10](https://github.com/mode-network/synth-subnet/blob/13642c4c3287da52c602ac8c629b26a7cdc66628/synth/miner/simulations.py#L10)
+- Modify the implementation of this function to run your own model: [simulations.py#L25](https://github.com/synthdataco/synth-subnet/blob/main/synth/miner/simulations.py#L25)
- Use all parameters from the prompt **except** `sigma`, which you may ignore.
### 2.2. Check that your model generates a valid response
@@ -71,7 +71,7 @@ $ CORRECT
### 2.5. Launch your miner with PM2
-- Create a new file called `miner.local.config.js` using the config from this link: [miner.config.js#L1](https://github.com/mode-network/synth-subnet/blob/f231c7b9151de6382d11e8102ae70c6b3f1b1fc7/miner.config.js#L1)
+- Create a new file called `miner.local.config.js` using the config from this link: [miner.config.js#L1](https://github.com/synthdataco/synth-subnet/blob/main/miner.config.js#L1)
- Modify the wallet name and hotkey name as needed.
- Start the miner with PM2:
@@ -251,7 +251,7 @@ sudo npm install pm2 -g
Clone the synth subnet repository:
```shell
-git clone https://github.com/mode-network/synth-subnet.git
+git clone https://github.com/synthdataco/synth-subnet.git
```
Change directory to the project root
diff --git a/docs/validator_guide.md b/docs/validator_guide.md
index 89293ac1..df70f5f2 100644
--- a/docs/validator_guide.md
+++ b/docs/validator_guide.md
@@ -47,7 +47,7 @@
**Step 1: Clone the repository**
```shell
-git clone https://github.com/mode-network/synth-subnet.git
+git clone https://github.com/synthdataco/synth-subnet.git
```
**Step 2: Change directory to the project root**
diff --git a/setup.py b/setup.py
index eb443a74..b08acb9c 100644
--- a/setup.py
+++ b/setup.py
@@ -66,7 +66,7 @@ def read_requirements(path):
description="synth_subnet",
long_description=long_description,
long_description_content_type="text/markdown",
- url="https://github.com/mode-network/synth-subnet",
+ url="https://github.com/synthdataco/synth-subnet",
author="mode.network",
packages=find_packages(),
include_package_data=True,