Skip to content

Commit baf7e41

Browse files
committed
Update multiple files
- Dev tools: razor, wallet connect - PoS: minor fixes
1 parent 4e6d862 commit baf7e41

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docs/pos/concepts/transactions/meta-transactions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ For any action that requires blockchain interaction,
9595
Steps:
9696

9797
1. Let's register our contracts to Biconomy dashboard
98-
1. Visit [Biconomy's offical docs](https://docs.biconomy.io/dashboard)
99-
2. Navigate and login to the Dashboard
100-
3. Select `Polygon Mumbai` when registering your dapp
101-
2. Copy the`API key` to use for you dapp's frontend
102-
3. And Add function `executeMetaTransaction` in Manage-Api and make sure to enable meta-tx. (Check 'native-metatx' option)
98+
1. Visit [Biconomy's offical docs](https://docs.biconomy.io/dashboard).
99+
2. Navigate and login to the Dashboard.
100+
3. Select **Polygon Amoy Testnet** when registering your dApp.
101+
2. Copy the API key to use for you dApp's frontend.
102+
3. And add function `executeMetaTransaction` in **Manage-Api** and make sure to enable meta-tx (Check **native-metatx** option).
103103

104104
- If you'd like to use your own custom API that sends signed transactions on the blockchain, you can refer to the server code here: [https://github.com/angelagilhotra/ETHOnline-Workshop/tree/master/2-network-agnostic-transfer](https://github.com/angelagilhotra/ETHOnline-Workshop/tree/master/2-network-agnostic-transfer)
105105

docs/tools/oracles/razor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ The core of Razor Network is a set of smart contracts that can run on any Ethere
88

99
## Usage
1010

11-
This oracle network is currently running on the Polygon Mumbai testnet. To get started with connecting to the data feed, check out this **[tutorial](https://docs.razor.network/)**.
11+
This oracle network is currently running on the Polygon mainnet and testnet. To get started with connecting to the data feed, check out this **[tutorial](https://docs.razor.network/)**.
1212

1313
The Razor Network can be explored using [Razorscan](https://razorscan.io/).

docs/tools/wallets/walletconnect.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ import Web3 from "web3"
2626
import Matic from "maticjs"
2727
```
2828

29-
Next, set up Polygon and Ropsten provider via WalletConnect’s object:
29+
Next, set up Polygon and Sepolia provider via WalletConnect’s object:
3030

3131
```javascript
3232
const maticProvider = new WalletConnectProvider(
3333
{
34-
host: `https://rpc-mumbai.matic.today`,
34+
host: `https://rpc-amoy.polygon.technology`,
3535
callbacks: {
3636
onConnect: console.log('connected'),
3737
onDisconnect: console.log('disconnected!')
3838
}
3939
}
4040
)
4141

42-
const ropstenProvider = new WalletConnectProvider({
43-
host: `https://ropsten.infura.io/v3/70645f042c3a409599c60f96f6dd9fbc`,
42+
const sepoliaProvider = new WalletConnectProvider({
43+
host: `https://ethereum-sepolia-rpc.publicnode.com`,
4444
callbacks: {
4545
onConnect: console.log('connected'),
4646
onDisconnect: console.log('disconnected')
@@ -52,7 +52,7 @@ We created the above two provider objects to instantiate our Web3 object with:
5252

5353
```js
5454
const maticWeb3 = new Web3(maticProvider)
55-
const ropstenWeb3 = new Web3(ropstenProvider)
55+
const sepoliaWeb3 = new Web3(sepoliaProvider)
5656
```
5757

5858
## Instantiating contracts

0 commit comments

Comments
 (0)