File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.
66
77* Released*
88
9+
10+ ## [ v0.1.0] - 2021-03-24
11+
12+ ### Additions
13+ - First release with mainnet configuration support
14+ - Added capability to customize gas limit and network fee on transactions
15+ - Introduced a capability to specify address index for Ledger wallet creations
16+ - Added support for re-delegation in the wallet
17+
918## [ v0.0.25] - 2021-03-12
1019
1120### Bug Fixes
Original file line number Diff line number Diff line change 11{
22 "name" : " chain-desktop-wallet" ,
3- "version" : " 0.0.25 " ,
3+ "version" : " 0.1.0 " ,
44 "description" : " Crypto.com Chain Desktop Wallet App" ,
55 "repository" : " github:crypto-com/chain-desktop-wallet" ,
66 "author" :
" Crypto.org <[email protected] >" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import IconWallet from '../../svg/IconWallet';
2525import ModalPopup from '../../components/ModalPopup/ModalPopup' ;
2626import { walletService } from '../../service/WalletService' ;
2727import { Session } from '../../models/Session' ;
28+ import packageJson from '../../../package.json' ;
2829
2930interface HomeLayoutProps {
3031 children ?: React . ReactNode ;
@@ -229,12 +230,14 @@ function HomeLayout(props: HomeLayoutProps) {
229230 ) ;
230231 } ;
231232
233+ const buildVersion = packageJson . version ;
234+
232235 return (
233236 < main className = "home-layout" >
234237 < Layout >
235238 < Sider >
236239 < div className = "logo" />
237- < div className = "version" > SAMPLE WALLET v0.0.1 </ div >
240+ < div className = "version" > SAMPLE WALLET v { buildVersion } </ div >
238241 < HomeMenu />
239242 < Dropdown
240243 overlay = { < WalletMenu /> }
You can’t perform that action at this time.
0 commit comments