Skip to content
Draft
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
4 changes: 0 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,9 @@ name: Build and Package .dapp
on:
push:
branches:
- dappnet
- workflow-test
- master
pull_request:
branches:
- dappnet
- workflow-test
- master
jobs:
build:
Expand Down
Binary file added html/dao-accumulator.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion html/index.js

Large diffs are not rendered by default.

182 changes: 118 additions & 64 deletions html/styles.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/build-dapp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail
DAPP_NAME="dex-app"
MANIFEST_NAME="Beam DEX"
MANIFEST_DESCRIPTION="AMM based decentralized exchange for Confidential Assets"
MANIFEST_VERSION_PREFIX="1.0"
MANIFEST_VERSION_PREFIX="1.1"
MANIFEST_ICON="localapp/app/logo.svg"
MANIFEST_URL="localapp/app/index.html"
MANIFEST_API_VERSION="7.3"
Expand Down
16 changes: 10 additions & 6 deletions src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import {
WithdrawPool,
SwapPoolsHome,
ExplorePools,
PoolView,
MyPools,
AccumulatorRewards,
AssetInfo,
Assets,
} from '@app/containers';
import { ROUTES } from '@app/shared/constants';
import { AlertWallet, Loader, TopNav } from '@app/shared/components';
Expand All @@ -44,16 +44,16 @@ const routes = [
element: <SwapPoolsHome />,
},
{
path: ROUTES.NAV.EXPLORE,
path: ROUTES.NAV.POOLS,
element: <ExplorePools />,
},
{
path: ROUTES.NAV.POOL,
element: <PoolView />,
element: <Navigate to={ROUTES.NAV.TRADE} replace />,
},
{
path: ROUTES.NAV.MY,
element: <MyPools />,
path: ROUTES.NAV.ASSETS,
element: <Assets />,
},
{
path: ROUTES.POOLS.CREATE_POOL,
Expand All @@ -71,6 +71,10 @@ const routes = [
path: ROUTES.POOLS.WITHDRAW_POOL,
element: <WithdrawPool />,
},
{
path: ROUTES.POOLS.ACCUMULATOR_REWARDS,
element: <AccumulatorRewards />,
},
{
path: '/asset/:id',
element: <AssetInfo />,
Expand Down
Loading
Loading