Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions docs/debugging/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,32 @@ cast call $PROXY_ADDR "debts(address)" $CONTRACT_ADDR --rpc-url $RPC_URL | cast

[More on Reactive Economy →](../docs/economy.md)

## Faucet Issue
## Getting Testnet lReact

If you’ve sent **SepETH** to the Reactive Faucet at `0x9b9BB25f1A81078C544C829c5EB7822d747Cf434` but haven’t received **REACT** within a few minutes, the faucet may be experiencing a temporary issue. Report it in our [General Telegram channel](https://t.me/reactivedevs/1). You will receive your test REACT once the issue is resolved.
To obtain testnet lReact, send SepEth to the Reactive faucet contract on Ethereum Sepolia: `0x9b9BB25f1A81078C544C829c5EB7822d747Cf434`. The exchange rate is **1 SepETH → 100 lReact** (e.g., **0.1 SepETH = 10 lReact**). Use MetaMask or any compatible wallet.

Alternatively, you can exchange SepETH for lREACT via [ReacDEFI](https://reacdefi.app/markets). Select the desired lREACT amount, and the app will calculate the required SepETH. An Ethereum Sepolia wallet (MetaMask or Coinbase) must be connected.

The current exchange rate is **0.1 SepETH = 10 REACT**. You can request REACT manually using MetaMask or Foundry cast command:
:::info[Important]
Do not send more than **5 SepETH** in a single transaction. Any excess will be lost. Maximum per request: **5 SepETH → 500 lReact**.
:::

You can also request lReact by calling the faucet contract:

```bash
cast send 0x9b9BB25f1A81078C544C829c5EB7822d747Cf434 --rpc-url $SEPOLIA_RPC --private-key $SEPOLIA_PRIVATE_KEY "request(address)" $CONTRACT_ADDR --value 0.1ether
cast send 0x9b9BB25f1A81078C544C829c5EB7822d747Cf434 \
--rpc-url $SEPOLIA_RPC \
--private-key $SEPOLIA_PRIVATE_KEY \
"request(address)" $CONTRACT_ADDR \
--value 0.1ether
```

[More on Reactive Faucet →](../docs/reactive-mainnet.mdx#get-testnet-react)

## Reactive Faucet Issue

If you’ve sent **SepETH** to the Reactive Faucet at `0x9b9BB25f1A81078C544C829c5EB7822d747Cf434` but haven’t received **REACT** within a few minutes, the faucet may be experiencing a temporary issue. Report it in our [General Telegram channel](https://t.me/reactivedevs/1). You will receive your test REACT once the issue is resolved.

## Nonce & Gas Price Issue

When encountering the `Replacement transaction underpriced` error, it means a new transaction is trying to replace a pending one with an equal or lower gas price. To fix this, first check your current **nonce**:
Expand Down Expand Up @@ -112,4 +126,6 @@ You will need to disable Smart Transactions in MetaMask:

After this, your transactions will go through the regular route and should work correctly.

[More on MetaMask's Smart Transactions →](https://support.metamask.io/manage-crypto/transactions/smart-transactions/)
[More on MetaMask's Smart Transactions →](https://support.metamask.io/manage-crypto/transactions/smart-transactions/)

## Getting Testnet lReact
2 changes: 2 additions & 0 deletions docs/docs/reactive-mainnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ Reactive Mainnet and Lasna Testnet use the same system contract address: `0x0000

To receive testnet REACT, send SepETH to the Reactive faucet contract on Ethereum Sepolia: `0x9b9BB25f1A81078C544C829c5EB7822d747Cf434`. The factor is 1/100, meaning you get 100 REACT for 1 SepETH sent. You can use MetaMask or any compatible wallet for the transfer.

You can exchange SepETH for lREACT using [ReacDEFI](https://reacdefi.app/markets), Reactive’s app. After selecting the desired amount of lREACT, the app automatically calculates the required SepETH. To complete the exchange, users must connect an Ethereum Sepolia wallet via MetaMask or Coinbase Wallet.

:::info[Important]
Do not send more than 5 SepETH per request, as doing so will cause you to lose the excess amount without receiving any additional REACT. The maximum that should be sent in a single transaction is 5 SepETH, which will yield 500 REACT.
:::
Expand Down
Loading
Loading