diff --git a/web-wallet/README.md b/web-wallet/README.md index c42cc24aed..ec583725a2 100644 --- a/web-wallet/README.md +++ b/web-wallet/README.md @@ -51,6 +51,7 @@ VITE_TESTNET_NODE="https://nodes.dusk.network/" VITE_TESTNET_PROVER_NODE="https://provers.dusk.network/" VITE_TRANSFER_CONTRACT="0100000000000000000000000000000000000000000000000000000000000000" VITE_GET_QUOTE_API_ENDPOINT="https://api.dusk.network/v1/quote" +VITE_MOONLIGHT_DISABLED=true ``` To run a local node different steps are needed, so please read the [related section](#running-a-local-rusk-node). diff --git a/web-wallet/src/lib/components/ContractOperations/ContractOperations.svelte b/web-wallet/src/lib/components/ContractOperations/ContractOperations.svelte index 5e49615d5c..b7b91df057 100644 --- a/web-wallet/src/lib/components/ContractOperations/ContractOperations.svelte +++ b/web-wallet/src/lib/components/ContractOperations/ContractOperations.svelte @@ -4,12 +4,14 @@ import { createEventDispatcher } from "svelte"; import { mdiArrowDownBoldBoxOutline, + mdiArrowLeft, mdiArrowUpBoldBoxOutline, mdiDatabaseArrowDownOutline, mdiDatabaseOutline, mdiHelpCircleOutline, } from "@mdi/js"; + import { AppAnchorButton } from "$lib/components"; import { Button } from "$lib/dusk/components"; /** @type {ContractOperation[]} */ @@ -44,6 +46,18 @@ /> {/each} +
  • + { + dispatch("operationChange", ""); + }} + text="Back" + variant="tertiary" + /> +