-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(iota): update testnet and devnet urls #4001
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thibault-martinez this only contains snapshot URLs, do we have them? |
crates/iota/src/client_commands.rs
Outdated
@@ -1541,8 +1541,8 @@ impl IotaClientCommands { | |||
|
|||
if let Ok(env) = active_env { | |||
let network = match env.rpc().as_str() { | |||
IOTA_DEVNET_URL => "https://faucet.devnet.iota.io/v1/gas", | |||
IOTA_TESTNET_URL => "https://faucet.testnet.iota.io/v1/gas", | |||
IOTA_DEVNET_URL => "https://faucet.devnet.iota.cafe/gas", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should keep the v1/gas
endpoints, as thet will be needed when we enable batched faucet, until then they automatically fall back to the serial faucet in the server
crates/iota/src/client_commands.rs
Outdated
IOTA_DEVNET_URL => "https://faucet.devnet.iota.io/v1/gas", | ||
IOTA_TESTNET_URL => "https://faucet.testnet.iota.io/v1/gas", | ||
IOTA_DEVNET_URL => "https://faucet.devnet.iota.cafe/gas", | ||
IOTA_TESTNET_URL => "https://faucet.testnet.iota.cafe/gas", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also here, keep v1/gas
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed
Alright, if we don't have these URLs then let's merge this PR and assess the other issue in another one. |
Update the testnet and devnet urls as the previous ones where just placeholders
Fixes #4000