Skip to content

Commit

Permalink
add mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
soaryong-stamper committed May 2, 2023
1 parent 0e6b85d commit 8a3c763
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package io.cosmostation.suikotlin.model

sealed class Network(val name: String, val rpcUrl: String, val faucetUrl: String) {
class Mainnet : Network("Mainnet", "https://sui-mainnet-us-1.cosmostation.io", "")

class Devnet : Network("Devnet", "https://sui-devnet-kr-1.cosmostation.io", "https://faucet.devnet.sui.io")

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

0 comments on commit 8a3c763

Please sign in to comment.