Skip to content

Commit f048113

Browse files
authored
Add runtime api for stake (opentensor#182)
* create stakeinfo runtimeapi * make sure to use module * add import for as bytes ref * result is not an option * return tuples for stake info
1 parent 9745f88 commit f048113

File tree

4 files changed

+93
-0
lines changed

4 files changed

+93
-0
lines changed

pallets/subtensor/runtime-api/src/lib.rs

+5
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,9 @@ sp_api::decl_runtime_apis! {
2222
fn get_subnet_info(netuid: u16) -> Vec<u8>;
2323
fn get_subnets_info() -> Vec<u8>;
2424
}
25+
26+
pub trait StakeInfoRuntimeApi {
27+
fn get_stake_info_for_coldkey( coldkey_account_vec: Vec<u8> ) -> Vec<u8>;
28+
fn get_stake_info_for_coldkeys( coldkey_account_vecs: Vec<Vec<u8>> ) -> Vec<u8>;
29+
}
2530
}

pallets/subtensor/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ mod weights;
4848
pub mod delegate_info;
4949
pub mod neuron_info;
5050
pub mod subnet_info;
51+
pub mod stake_info;
5152

5253
// apparently this is stabilized since rust 1.36
5354
extern crate alloc;

pallets/subtensor/src/stake_info.rs

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
use super::*;
2+
use frame_support::pallet_prelude::{Decode, Encode};
3+
extern crate alloc;
4+
use alloc::vec::Vec;
5+
use codec::Compact;
6+
use sp_core::hexdisplay::AsBytesRef;
7+
8+
#[derive(Decode, Encode, PartialEq, Eq, Clone, Debug)]
9+
pub struct StakeInfo<T: Config> {
10+
hotkey: T::AccountId,
11+
coldkey: T::AccountId,
12+
stake: Compact<u64>,
13+
}
14+
15+
impl<T: Config> Pallet<T> {
16+
fn _get_stake_info_for_coldkeys(coldkeys: Vec<T::AccountId>) -> Vec<(T::AccountId, Vec<StakeInfo<T>>)> {
17+
if coldkeys.len() == 0 {
18+
return Vec::new(); // No coldkeys to check
19+
}
20+
21+
let mut stake_info: Vec<(T::AccountId, Vec<StakeInfo<T>>)> = Vec::new();
22+
for coldkey_ in coldkeys {
23+
let mut stake_info_for_coldkey: Vec<StakeInfo<T>> = Vec::new();
24+
25+
for (hotkey, coldkey, stake) in <Stake<T>>::iter() {
26+
if coldkey == coldkey_ {
27+
stake_info_for_coldkey.push(StakeInfo {
28+
hotkey,
29+
coldkey,
30+
stake: stake.into(),
31+
});
32+
}
33+
}
34+
35+
stake_info.push((coldkey_, stake_info_for_coldkey));
36+
}
37+
38+
return stake_info;
39+
}
40+
41+
pub fn get_stake_info_for_coldkeys(coldkey_account_vecs: Vec<Vec<u8>>) -> Vec<(T::AccountId, Vec<StakeInfo<T>>)> {
42+
let mut coldkeys: Vec<T::AccountId> = Vec::new();
43+
for coldkey_account_vec in coldkey_account_vecs {
44+
if coldkey_account_vec.len() != 32 {
45+
continue; // Invalid coldkey
46+
}
47+
let coldkey: AccountIdOf<T> = T::AccountId::decode( &mut coldkey_account_vec.as_bytes_ref() ).unwrap();
48+
coldkeys.push(coldkey);
49+
}
50+
51+
if coldkeys.len() == 0 {
52+
return Vec::new(); // Invalid coldkey
53+
}
54+
55+
let stake_info = Self::_get_stake_info_for_coldkeys(coldkeys);
56+
57+
return stake_info;
58+
}
59+
60+
pub fn get_stake_info_for_coldkey(coldkey_account_vec: Vec<u8>) -> Vec<StakeInfo<T>> {
61+
if coldkey_account_vec.len() != 32 {
62+
return Vec::new(); // Invalid coldkey
63+
}
64+
65+
let coldkey: AccountIdOf<T> = T::AccountId::decode( &mut coldkey_account_vec.as_bytes_ref() ).unwrap();
66+
let stake_info = Self::_get_stake_info_for_coldkeys(vec![coldkey]);
67+
68+
if stake_info.len() == 0 {
69+
return Vec::new(); // Invalid coldkey
70+
} else {
71+
return stake_info.get(0).unwrap().1.clone();
72+
}
73+
}
74+
}
75+

runtime/src/lib.rs

+12
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,18 @@ impl_runtime_apis! {
997997
result.encode()
998998
}
999999
}
1000+
1001+
impl subtensor_custom_rpc_runtime_api::StakeInfoRuntimeApi<Block> for Runtime {
1002+
fn get_stake_info_for_coldkey( coldkey_account_vec: Vec<u8> ) -> Vec<u8> {
1003+
let result = SubtensorModule::get_stake_info_for_coldkey( coldkey_account_vec );
1004+
result.encode()
1005+
}
1006+
1007+
fn get_stake_info_for_coldkeys( coldkey_account_vecs: Vec<Vec<u8>> ) -> Vec<u8> {
1008+
let result = SubtensorModule::get_stake_info_for_coldkeys( coldkey_account_vecs );
1009+
result.encode()
1010+
}
1011+
}
10001012
}
10011013

10021014
#[cfg(test)]

0 commit comments

Comments
 (0)