Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
* main:
  chore(release): 1.1.9 [skip ci]
  fix: mainnet whitelist url for iframes
  chore(release): 1.1.8 [skip ci]
  fix: update to support rpc spec 0.7
  chore(release): 1.1.7 [skip ci]
  fix: provider in account
  chore(release): 1.1.6 [skip ci]
  fix: force trpc subscribe using apply
  chore(release): 1.1.5 [skip ci]
  fix: enable sepolia and iframes on chrome for webwallet
  Update connection ordering
  • Loading branch information
bluecco committed Aug 23, 2024
2 parents abe9201 + c4e9555 commit baac7ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ const wallet = await connect()

By default, the list of connectors is:

- Argent webwallet
- Argent mobile
- Argent X
- Braavos
- Argent mobile
- Argent webwallet

## Connect with specific connectors

Expand Down
4 changes: 2 additions & 2 deletions src/helpers/publicRcpNodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export type PublicRpcNode = {
// Public RPC nodes
export const BLAST_RPC_NODE: PublicRpcNode = {
mainnet: "https://starknet-mainnet.public.blastapi.io",
testnet: "https://starknet-testnet.public.blastapi.io",
testnet: "https://starknet-sepolia.public.blastapi.io",
} as const

export const LAVA_RPC_NODE: PublicRpcNode = {
mainnet: "https://rpc.starknet.lava.build",
testnet: "https://rpc.starknet-testnet.lava.build",
testnet: "https://rpc.starknet-sepolia.lava.build",
} as const

export const PUBLIC_RPC_NODES = [BLAST_RPC_NODE, LAVA_RPC_NODE] as const
Expand Down

0 comments on commit baac7ea

Please sign in to comment.