subtensor
subtensor copied to clipboard
Bittensor Blockchain Layer
1. Childkey take gets added to `PendingdHotkeyEmission` in `accumulate_hotkey_emission` and then is distributed among nominators in `drain_hotkey_emission`. 2. Miner emission is also subject to distribution to nominators in `drain_hotkey_emission` because...
We need a view method in staking precompile that allows to get stake by hotkey, coldkey, and netuid (only accept root ID for netuid for now, but it will need...
Staking precompile is implemented here: https://github.com/opentensor/subtensor/blob/feat/evm-devnet-ready/runtime/src/precompiles/staking.rs https://github.com/opentensor/subtensor/blob/feat/evm-devnet-ready/runtime/src/precompiles/solidity/staking.sol https://github.com/opentensor/subtensor/blob/feat/evm-devnet-ready/runtime/src/precompiles/solidity/staking.abi There are two things that need to happen for compatibility with rao: - [ ] Right away: Update interface of add_stake and...
### Tasks - [ ] Update staking precompile to handle staking to subnets
adds code coverage suite to the repo - [x] find and parse all pallets dynamically and in parallel - [x] code to import missing sections of pallets defined with `#[import_section(..)]`...
Currently here: https://github.com/gztensor/subtensor-js-tests Tests: - [x] Connection can be established - [x] Block number can be read - [x] Can deploy a smart contract - [ ] Verification of ed25519...
These are upstream issues with the `#[pallet_section]` / `#[import_section]` syntax that is part of FRAME. It would be extremely helpful if these get fixed upstream, but if OT eventually forks...
## Description WIP ## Related Issue(s) - Closes #837