Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/rao devnet ready 2 #980

Draft
wants to merge 43 commits into
base: devnet-ready
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
5a3f88b
Rao based on devnet-ready as of 2024-11
gztensor Nov 13, 2024
fc4fd4c
remove spurious comment lines
gztensor Nov 13, 2024
d4f4450
fix several test cases and compilation error
open-junius Nov 14, 2024
258b9c7
fix clippy
open-junius Nov 14, 2024
52b5dc3
fix clippy
open-junius Nov 14, 2024
9c65155
Use an enum to represent mechanism ID
keithtensor Nov 19, 2024
1cedb5c
Fixes
keithtensor Nov 20, 2024
d715bbc
Fixes
keithtensor Nov 20, 2024
2d67568
Fixes
keithtensor Nov 20, 2024
03d54ec
Implement share pool
gztensor Nov 21, 2024
485c8f2
Merge pull request #1009 from opentensor/feat/share-pool
gztensor Nov 21, 2024
e84c470
Merge pull request #996 from opentensor/mechanism-enum
keithtensor Nov 22, 2024
35288b1
Revert "Implement share pool"
camfairchild Nov 25, 2024
37197f0
Add move_all_stake dispatchable (#1010)
keithtensor Nov 25, 2024
b1bc85c
Fix stake weight issues (#998)
ales-otf Nov 25, 2024
a3c3151
remove global weight adjustment; add sudo call
camfairchild Nov 25, 2024
2ab34b3
add test and helper
camfairchild Nov 25, 2024
0314b97
remove adjustment interval val
camfairchild Nov 25, 2024
4e2eb21
add root weight and sudo set
camfairchild Nov 26, 2024
5c86af7
root adjusment in epoch; needs test
camfairchild Nov 27, 2024
601a49f
fix tests and add test for stake weight with rootweight
camfairchild Nov 27, 2024
a5e23ac
add epoch test for rootweight
camfairchild Nov 27, 2024
083e334
add constants
camfairchild Nov 27, 2024
eadf75d
change to minnom and add storages
camfairchild Dec 3, 2024
2b6a243
swap order of alpha map keys for iteration
camfairchild Dec 3, 2024
a06d564
oops use correct default key
camfairchild Dec 3, 2024
634086a
add helpers for new storage
camfairchild Dec 3, 2024
1f760c7
use maxheap to only emit to top_k nominators per hotkey
camfairchild Dec 3, 2024
afd77b6
oops: off-by-one
camfairchild Dec 4, 2024
ec9151a
avoid underflow
camfairchild Dec 4, 2024
ee491fb
catch unwrap failures
camfairchild Dec 4, 2024
c13afe1
Merge branch 'devnet-ready' into feat/rao-devnet-ready-2
camfairchild Dec 19, 2024
3d786ca
chore: clippy
camfairchild Dec 19, 2024
9688cb3
add tests to tests mod file
camfairchild Dec 19, 2024
52d8f07
add remove all stake call
camfairchild Dec 19, 2024
2580c39
handle sn0
camfairchild Dec 20, 2024
c9d9338
add tests
camfairchild Dec 20, 2024
e0cade8
add on_halving hook
camfairchild Dec 20, 2024
170a5aa
add gamma halving
camfairchild Dec 20, 2024
1a3e3f9
move block emission adjustment to explicit step
camfairchild Dec 20, 2024
91ebe0e
clippy
camfairchild Dec 20, 2024
f0067d8
add emission to test mod
camfairchild Dec 20, 2024
242447e
add TODO
camfairchild Dec 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/e2e-bittensor-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
- name: Setup bittensor repo
working-directory: ${{ github.workspace }}/bittensor
run: |
git checkout staging
python3 -m pip install -e .
git checkout junius/arguments-create-network
python3 -m pip install -e ."[dev]"
python3 -m pip install torch
python3 -m pip install pytest

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

**/*.lock

# Jupyter Notebook files
*.ipynb

# Generated by code coverage
Expand Down
1 change: 1 addition & 0 deletions node/src/chain_spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
pub mod devnet;
pub mod finney;
pub mod localnet;
pub mod raonet;
pub mod testnet;

use node_subtensor_runtime::{AccountId, Block, Signature, WASM_BINARY};
Expand Down
Loading
Loading