AlexNijjar commited on
Commit
63f8f2e
·
1 Parent(s): d87b43c

Update version

Browse files
Files changed (4) hide show
  1. README.md +1 -1
  2. requirements.txt +1 -1
  3. src/chain_data.py +1 -1
  4. src/submissions.py +1 -1
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🏆
4
  colorFrom: purple
5
  colorTo: gray
6
  sdk: gradio
7
- sdk_version: 5.5.0
8
  app_file: src/app.py
9
  pinned: true
10
  ---
 
4
  colorFrom: purple
5
  colorTo: gray
6
  sdk: gradio
7
+ sdk_version: 5.8.0
8
  app_file: src/app.py
9
  pinned: true
10
  ---
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
  fiber @ git+https://github.com/rayonlabs/[email protected]#egg=fiber[chain]
2
- gradio==5.5.0
3
  wandb==0.18.5
4
  substrate-interface==1.7.10
5
  plotly==5.24.1
 
1
  fiber @ git+https://github.com/rayonlabs/[email protected]#egg=fiber[chain]
2
+ gradio==5.8.0
3
  wandb==0.18.5
4
  substrate-interface==1.7.10
5
  plotly==5.24.1
src/chain_data.py CHANGED
@@ -52,7 +52,7 @@ class Commitment:
52
  return f"https://{self.provider}/{self.repository}"
53
 
54
 
55
- SPEC_VERSION = 7
56
  NET_UID = 39
57
  WEIGHTS_BY_MINER: dict[Key, list[tuple[Key, Weight]]] = {}
58
  VALIDATOR_IDENTITIES: dict[Key, str] = {}
 
52
  return f"https://{self.provider}/{self.repository}"
53
 
54
 
55
+ SPEC_VERSION = 8
56
  NET_UID = 39
57
  WEIGHTS_BY_MINER: dict[Key, list[tuple[Key, Weight]]] = {}
58
  VALIDATOR_IDENTITIES: dict[Key, str] = {}
src/submissions.py CHANGED
@@ -36,7 +36,7 @@ def create_submissions(include_blacklisted: bool) -> gr.Dataframe:
36
  row = [
37
  UIDS_BY_HOTKEY[hotkey],
38
  f"[{'/'.join(commitment.get_repo_link().split('/')[-2:])}]({commitment.get_repo_link()})",
39
- f"[{commitment.block}](https://taostats.io/block/{commitment.block})",
40
  f"[{commitment.revision}]({commitment.get_repo_link()}/commit/{commitment.revision})",
41
  f"[{hotkey[:6]}...](https://taostats.io/hotkey/{hotkey})",
42
  f"[{coldkey[:6]}...](https://taostats.io/coldkey/{coldkey})",
 
36
  row = [
37
  UIDS_BY_HOTKEY[hotkey],
38
  f"[{'/'.join(commitment.get_repo_link().split('/')[-2:])}]({commitment.get_repo_link()})",
39
+ f"[{commitment.block}](https://taostats.io/block/{commitment.block}/extrinsics)",
40
  f"[{commitment.revision}]({commitment.get_repo_link()}/commit/{commitment.revision})",
41
  f"[{hotkey[:6]}...](https://taostats.io/hotkey/{hotkey})",
42
  f"[{coldkey[:6]}...](https://taostats.io/coldkey/{coldkey})",