diff --git a/ui/src/app/components/ArcadeDialog.tsx b/ui/src/app/components/ArcadeDialog.tsx
index 30fec4424..da604a7ed 100644
--- a/ui/src/app/components/ArcadeDialog.tsx
+++ b/ui/src/app/components/ArcadeDialog.tsx
@@ -111,17 +111,17 @@ export const ArcadeDialog = () => {
{((connector?.options as any)?.id == "argentX" ||
(connector?.options as any)?.id == "braavos") && (
-
-
- Note: This will initiate a transfer of 0.001 ETH from your
- connected wallet to the arcade account to cover your transaction
- costs from normal gameplay.
-
-
create()} disabled={isWrongNetwork}>
- create arcade account
-
-
- )}
+
+
+ Note: This will initiate a transfer of 0.001 ETH from your
+ connected wallet to the arcade account to cover your transaction
+ costs from normal gameplay.
+
+
create()} disabled={isWrongNetwork}>
+ create arcade account
+
+
+ )}
{arcadeConnectors().map((account, index) => {
@@ -154,8 +154,8 @@ export const ArcadeDialog = () => {
{isSettingPermissions
? "Setting Permissions"
: isGeneratingNewKey
- ? "Generating New Key"
- : "Deploying Account"}
+ ? "Generating New Key"
+ : "Deploying Account"}
)}
@@ -242,23 +242,23 @@ export const ArcadeAccountCard = ({
{!arcadeConnectors.some(
(conn) => conn.options.options.id == walletAccount.address
) && (
- {
- topUp(account.name, walletAccount);
- getBalance(account.name);
- }}
- disabled={isToppingUp}
- >
- {isToppingUp ? (
- Topping Up
- ) : (
-
- Top Up (0.001Eth)
-
- )}
-
- )}
+ {
+ topUp(account.name, walletAccount);
+ getBalance(account.name);
+ }}
+ disabled={isToppingUp}
+ >
+ {isToppingUp ? (
+ Topping Up
+ ) : (
+
+ Top Up (0.001Eth)
+
+ )}
+
+ )}
{masterAccountAddress == walletAccount.address && (
diff --git a/ui/src/app/lib/burner.tsx b/ui/src/app/lib/burner.tsx
index e54d03239..9b791b8f6 100644
--- a/ui/src/app/lib/burner.tsx
+++ b/ui/src/app/lib/burner.tsx
@@ -16,11 +16,14 @@ import { useAccount, useConnectors } from "@starknet-react/core";
import { ArcadeConnector } from "./arcade";
import { useContracts } from "../hooks/useContracts";
import { BurnerStorage } from "../types";
-import { mainnet_addr } from "./constants";
export const PREFUND_AMOUNT = "0x38D7EA4C68000"; // 0.001ETH
-const provider = new Provider({ rpc: { nodeUrl: mainnet_addr }, sequencer: { baseUrl: mainnet_addr } });
+const provider = new Provider({
+ sequencer: {
+ baseUrl: "https://alpha4.starknet.io",
+ },
+});
export const useBurner = () => {
const { refresh } = useConnectors();