Skip to content

Commit

Permalink
Merge pull request #270 from edge/develop
Browse files Browse the repository at this point in the history
v1.21.0
  • Loading branch information
adamkdean authored Jan 29, 2024
2 parents 416ef30 + 677917b commit 2d10826
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# 1. Build the Vue app
#
FROM node:lts AS build
FROM node:16 AS build

COPY *.config.js ./
COPY package*.json ./
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN npm run build
#
# 2. Copy the files over and run it
#
FROM node:lts
FROM node:16

WORKDIR /edge/wallet

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

The web wallet of the XE Blockchain.

## System Requirements

- Node.js v16+

## Contributing

Interested in contributing to the project? Amazing! Before you do, please have a quick look at our [Contributor Guidelines](CONTRIBUTING.md) where we've got a few tips to help you get started.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wallet",
"version": "1.20.2",
"version": "1.21.0",
"description": "Web wallet for managing XE coin",
"private": true,
"license": "GPL",
Expand Down
8 changes: 4 additions & 4 deletions src/components/tx/SwapModal.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<Modal :close="close" :preventClickOutside="true" :showCloseButton="true" :visible="visible" :width="900">
<Modal :close="close" :preventClickOutside="true" :showCloseButton="true" :visible="visible" :width="600">
<template v-slot:header>
<h2>Swap<span class="testnet-header" v-if="isTestnet">(Testnet)</span></h2>
</template>

<template v-slot:body>
<div class="grid grid-cols-1 gap-24 pt-12 pb-20 md:grid-cols-3">
<div class="grid grid-cols-1 gap-24 pt-12 pb-20 md:grid-cols-2">
<div>
<div class="leading-7 text-caption mb-65">
<strong>Deposit</strong>
Expand Down Expand Up @@ -33,7 +33,7 @@
Withdraw
</button>
</div>
<div>
<!-- <div>
<div class="leading-7 text-caption mb-65">
<strong>Sell</strong>
<p class="mb-25">Sell XE for USDC on the Ethereum network.</p>
Expand All @@ -45,7 +45,7 @@
</span>
Sell
</button>
</div>
</div> -->
</div>
</template>
</Modal>
Expand Down

0 comments on commit 2d10826

Please sign in to comment.