Skip to content

Commit

Permalink
change endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
soaryong-c committed Apr 28, 2023
1 parent 8e045b8 commit 0a36d5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package io.cosmostation.suikotlin.model

sealed class Network(val name: String, val rpcUrl: String, val faucetUrl: String) {
class Devnet : Network("Devnet", "https://fullnode.devnet.sui.io/", "https://faucet.devnet.sui.io")
class Devnet : Network("Devnet", "https://sui-devnet-kr-1.cosmostation.io", "https://faucet.devnet.sui.io")

class Testnet : Network("Testnet", "https://fullnode.testnet.sui.io/", "https://faucet.testnet.sui.io")
class Testnet : Network("Testnet", "https://sui-testnet-kr-1.cosmostation.io", "https://faucet.testnet.sui.io")

class Localnet : Network("Localhost", "http://127.0.0.1:9000", "http://127.0.0.1:9000")

Expand Down

0 comments on commit 0a36d5a

Please sign in to comment.