Skip to content

Commit c8db87c

Browse files
committed
Update RPC URLs
1 parent 75b7d4b commit c8db87c

File tree

29 files changed

+38
-38
lines changed

29 files changed

+38
-38
lines changed

android/android-aggregate-verifier-example/app/src/main/java/com/sbz/web3authdemoapp/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class MainActivity : AppCompatActivity() {
3535
private lateinit var web3Auth: Web3Auth
3636
private lateinit var web3: Web3j
3737
private lateinit var credentials: Credentials
38-
private val rpcUrl = "https://rpc.ankr.com/eth_sepolia"
38+
private val rpcUrl = "https://1rpc.io/sepolia"
3939
private val gson = Gson()
4040

4141
override fun onCreate(savedInstanceState: Bundle?) {
@@ -212,7 +212,7 @@ class MainActivity : AppCompatActivity() {
212212
val completableFuture = web3Auth.launchWalletServices(
213213
ChainConfig(
214214
chainId = "0x1",
215-
rpcTarget = "https://rpc.ankr.com/eth",
215+
rpcTarget = "https://1rpc.io/eth",
216216
ticker = "ETH",
217217
chainNamespace = ChainNamespace.EIP155
218218
)

android/android-auth0-example/app/src/main/java/com/sbz/web3authdemoapp/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class MainActivity : AppCompatActivity() {
3939
private lateinit var web3: Web3j
4040
private lateinit var credentials: Credentials
4141
private lateinit var loginParams: LoginParams
42-
private val rpcUrl = "https://rpc.ankr.com/eth_sepolia"
42+
private val rpcUrl = "https://1rpc.io/sepolia"
4343

4444
override fun onCreate(savedInstanceState: Bundle?) {
4545
super.onCreate(savedInstanceState)
@@ -190,7 +190,7 @@ class MainActivity : AppCompatActivity() {
190190
val completableFuture = web3Auth.launchWalletServices(
191191
ChainConfig(
192192
chainId = "0x1",
193-
rpcTarget = "https://rpc.ankr.com/eth",
193+
rpcTarget = "https://1rpc.io/eth",
194194
ticker = "ETH",
195195
chainNamespace = ChainNamespace.EIP155
196196
)

android/android-firebase-example/app/src/main/java/com/sbz/web3authdemoapp/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class MainActivity : AppCompatActivity() {
4444
private lateinit var web3: Web3j
4545
private lateinit var credentials: Credentials
4646
private lateinit var auth: FirebaseAuth
47-
private val rpcUrl = "https://rpc.ankr.com/eth_sepolia"
47+
private val rpcUrl = "https://1rpc.io/sepolia"
4848

4949
private val gson = Gson()
5050

@@ -229,7 +229,7 @@ class MainActivity : AppCompatActivity() {
229229
val completableFuture = web3Auth.launchWalletServices(
230230
ChainConfig(
231231
chainId = "0x1",
232-
rpcTarget = "https://rpc.ankr.com/eth",
232+
rpcTarget = "https://1rpc.io/eth",
233233
ticker = "ETH",
234234
chainNamespace = ChainNamespace.EIP155
235235
)

android/android-quick-start/app/src/main/java/com/sbz/web3authdemoapp/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class MainActivity : AppCompatActivity() {
4242
private lateinit var web3: Web3j
4343
private lateinit var credentials: Credentials
4444
private lateinit var emailInput: EditText
45-
private val rpcUrl = "https://rpc.ankr.com/eth_sepolia"
45+
private val rpcUrl = "https://1rpc.io/sepolia"
4646

4747
private val gson = Gson()
4848

flutter/flutter-aggregate-verifier-example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class MyApp extends StatefulWidget {
2828
class _MyAppState extends State<MyApp> with WidgetsBindingObserver {
2929
String _result = '';
3030
bool logoutVisible = false;
31-
String rpcUrl = 'https://rpc.ankr.com/eth_sepolia';
31+
String rpcUrl = 'https://1rpc.io/sepolia';
3232

3333
@override
3434
void initState() {

flutter/flutter-auth0-example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class MyApp extends StatefulWidget {
2828
class _MyAppState extends State<MyApp> with WidgetsBindingObserver {
2929
String _result = '';
3030
bool logoutVisible = false;
31-
String rpcUrl = 'https://rpc.ankr.com/eth_sepolia';
31+
String rpcUrl = 'https://1rpc.io/sepolia';
3232

3333
@override
3434
void initState() {

flutter/flutter-playground/lib/core/utils/chain_configs.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ final chainConfigs = [
66
"chainId": "0xaa36a7",
77
"displayName": "Ethereum Sepolia",
88
"ticker": "ETH",
9-
"rpcTarget": "https://rpc.ankr.com/eth_sepolia",
9+
"rpcTarget": "https://1rpc.io/sepolia",
1010
"blockExplorerUrl": "https://sepolia.etherscan.io",
1111
"logo": "https://web3auth.io/images/web3authlog.png",
1212
"wss": '',
@@ -15,7 +15,7 @@ final chainConfigs = [
1515
"chainNamespace": ChainNamespace.eip155.name,
1616
"chainId": "0x1",
1717
"displayName": "Ethereum Mainnet",
18-
"rpcTarget": "https://rpc.ankr.com/eth",
18+
"rpcTarget": "https://1rpc.io/eth",
1919
"blockExplorerUrl": "https://etherscan.io",
2020
"ticker": "ETH",
2121
"logo": "https://web3auth.io/images/web3authlog.png",

flutter/flutter-quick-start/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class _MyAppState extends State<MyApp> with WidgetsBindingObserver {
3030
// IMP END - Quick Start
3131
String _result = '';
3232
bool logoutVisible = false;
33-
String rpcUrl = 'https://rpc.ankr.com/eth_sepolia';
33+
String rpcUrl = 'https://1rpc.io/sepolia';
3434
// TextEditingController for handling input from the text field
3535
final TextEditingController emailController = TextEditingController();
3636

ios/ios-aggregate-verifier-example/ios-aggregate-example/web3RPC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Web3RPC : ObservableObject {
1313
private var account: EthereumAccount
1414
private var latestBlock = 0
1515
private var chainID = 11155111
16-
private var RPC_URL = "https://rpc.ankr.com/eth_sepolia"
16+
private var RPC_URL = "https://1rpc.io/sepolia"
1717

1818
@Published var balance: Double = 0
1919
@Published var signedMessageHashString:String = ""

ios/ios-auth0-example/ios-auth0-example/web3RPC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Web3RPC : ObservableObject {
1313
private var account: EthereumAccount
1414
private var latestBlock = 0
1515
private var chainID = 11155111
16-
private var RPC_URL = "https://rpc.ankr.com/eth_sepolia"
16+
private var RPC_URL = "https://1rpc.io/sepolia"
1717

1818
@Published var balance: Double = 0
1919
@Published var signedMessageHashString:String = ""

0 commit comments

Comments
 (0)