-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjustfile
More file actions
31 lines (24 loc) · 677 Bytes
/
justfile
File metadata and controls
31 lines (24 loc) · 677 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
# 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