Skip to content

Commit c05a949

Browse files
committed
is this it
1 parent da2c6c3 commit c05a949

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

tooling/sparta/packages/discord/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This package provides Discord bot functionality for the Sparta project. It commu
99
- Role management commands
1010
- Human verification via Passport
1111
- Chain information queries
12+
- Node operator registration and monitoring
1213

1314
## Available Commands
1415

@@ -19,8 +20,8 @@ The bot supports the following slash commands:
1920
| `/human` | `verify` | Verify your identity with Human Passport | None |
2021
| `/human` | `status` | Check your Human Passport verification status | None |
2122
| `/operator` | `chain-info` | Get current chain information including pending/proven blocks, epoch, slot, and current proposer | None |
22-
| `/operator` | `my-info` | Check validator statistics | `address` (required): The validator address to check |
23-
| `/operator` | `register` | Register as a validator and get the Apprentice role | `address`, `block-number`, `proof` |
23+
| `/operator` | `my-stats` | Check validator statistics | `address` (required): The validator address to check |
24+
| `/operator` | `register` | Register as a validator and get the Apprentice role | `address` (optional): Your validator address<br>`block-number` (optional): Block number for verification<br>`proof` (optional): Your sync proof |
2425
| `/operator` | `help` | Display operator commands and instructions | None |
2526
| `/mod` | `help` | Display all moderator commands and their descriptions in a table | None |
2627
| `/mod` | `is-in-set` | Check if an address is in the validator set | `address` (required): The validator address to check |
@@ -43,7 +44,8 @@ Moderator commands (`/mod`) have the following restrictions:
4344

4445
### User Roles
4546

46-
- **Apprentice** (ID: 1366916508072148992): Assigned to users who successfully register as validators
47+
- **Verified+**: Assigned to users who have successfully verified with Human Passport
48+
- **Apprentice**: Assigned to users who successfully register as validators
4749

4850
## Usage
4951

tooling/sparta/terraform/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ terraform {
88
required_version = ">= 1.0" # Specify minimum Terraform version
99

1010
backend "s3" {
11-
bucket = "sparta-tf-state" # Ensure this bucket exists
11+
bucket = "sparta-terraf-state" # Ensure this bucket exists
1212
region = "eu-west-2"
1313
key = "production/terraform.tfstate"
1414
}
1515
}
1616

17+
1718
provider "aws" {
1819
region = var.aws_region
1920
# Assuming credentials are configured via environment variables, IAM instance profile, or AWS config/credentials file

0 commit comments

Comments
 (0)