Skip to content

Commit

Permalink
feat: chain env
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhsuan19 committed Nov 16, 2024
1 parent b1912ba commit 38b51c0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions DripApp/Drip-iOS/Drip/Constants/BlockchainEnv.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@
import Foundation

enum BlockchainEnv {
static let chainId: String = "84532"
static let rpcURL: String = "https://sepolia.base.org"
static let polygonRPC = "https://chainlist.org/chain/2442"
static let polygonChainID = "2442"
static let mantlePRC = "https://rpc.sepolia.mantle.xyz"
static let mantleChainID = "5003"
static let basePRC = "https://sepolia.base.org"
static let baseChainId = "84532"

static let chainId: String = BlockchainEnv.baseChainId
static let rpcURL: String = BlockchainEnv.basePRC
static let nativeTokenSymbol: String = "ETH"
static let nativeTokenIcon: String = "token-eth"
}

0 comments on commit 38b51c0

Please sign in to comment.