-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjustfile
More file actions
35 lines (27 loc) · 801 Bytes
/
Copy pathjustfile
File metadata and controls
35 lines (27 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Register a Bittensor public key with an EVM address
register:
bun run scripts/register.ts
# Submit votes for liquidity pools
vote:
bun run scripts/vote.ts
# Start the validator to process votes and submit weights
validate:
bun run validator/index.ts
# Check current pool weights and rankings
pools:
bun run scripts/pools.ts
# Display EVM balances for all keys
balance:
NETWORK=mainnet bun run scripts/balance.ts
# Generate or import an EVM keypair
create-key:
bun run scripts/create-key.ts
# Check if a Bittensor key is registered
check-key:
bun run scripts/check-key.ts
# Calculate and display weight distributions
weights:
bun run scripts/weights.ts
# Independently recompute miner weights and compare to the central API
verify-weights:
bun run scripts/verify-weights.ts