Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ quantus wormhole collect-rewards --wallet my_wallet --dry-run
- `--destination`: Destination address for withdrawn funds (required with `--mnemonic`, defaults to wallet address).
- `--amount`: Amount in DEV to withdraw (default: withdraw all available).
- `--wormhole-index`: Wormhole address index for HD derivation (default: `0`).
- `--subsquid-url`: Subsquid indexer URL (default: `https://subsquid.quantus.com/blue/graphql`).
- `--subsquid-url`: Subsquid indexer URL (default: `https://sub2.quantus.com/v1/graphql`).
- `--dry-run`: Show available transfers without submitting any transactions.
- `--at-block`: Use a specific block number for proofs instead of the latest block.

Expand All @@ -287,7 +287,7 @@ quantus wormhole check-nullifier --secret 0x<64-hex-chars> --transfer-counts 0-5
- `--secret`: 32-byte hex secret (alternative to `--wallet`).
- `--transfer-counts`: Single number or range (e.g., `0-10`) of transfer counts to check.
- `--wormhole-index`: Wormhole address index for HD derivation (default: `0`).
- `--subsquid-url`: Subsquid indexer URL (default: `https://subsquid.quantus.com/blue/graphql`).
- `--subsquid-url`: Subsquid indexer URL (default: `https://sub2.quantus.com/v1/graphql`).

---

Expand Down
2 changes: 1 addition & 1 deletion src/cli/transfers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub enum TransfersCommands {
/// Query transfers for your wallet addresses using privacy-preserving hash prefix queries
Query {
/// Subsquid indexer URL
#[arg(long, default_value = "https://subsquid.quantus.com/blue/graphql")]
#[arg(long, default_value = "https://sub2.quantus.com/v1/graphql")]
subsquid_url: String,

/// Hash prefix length in hex characters (1-64).
Expand Down
4 changes: 2 additions & 2 deletions src/cli/wormhole.rs
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ pub enum WormholeCommands {
destination: Option<String>,

/// Subsquid indexer URL for querying transfers
#[arg(long, default_value = "https://subsquid.quantus.com/blue/graphql")]
#[arg(long, default_value = "https://sub2.quantus.com/v1/graphql")]
subsquid_url: String,

/// Wormhole address index for HD derivation (default: 0, ignored when using --secret)
Expand Down Expand Up @@ -886,7 +886,7 @@ pub enum WormholeCommands {
transfer_counts: String,

/// Subsquid indexer URL for querying nullifiers
#[arg(long, default_value = "https://subsquid.quantus.com/blue/graphql")]
#[arg(long, default_value = "https://sub2.quantus.com/v1/graphql")]
subsquid_url: String,
},
}
Expand Down
Loading
Loading