diff --git a/README.md b/README.md index ed81a07..4e211a1 100644 --- a/README.md +++ b/README.md @@ -213,3 +213,10 @@ Please consider donating to support the development of this project. btcQrCode
bc1qndc2lesy0sse9vj33a35pnfrqz4znlhhs58vfp

+ +### Wownero + +

+ wowQrCode
+ WW33Zj3xu6EGTyKVWaz8EQZmqsTXKdK5eG7PDRaiPuJ1LyREhGHLCRDX3AaLx4r9NFCThRvsbq99KATbswJaxd3T1iwQLJ3Tw +

\ No newline at end of file diff --git a/donate_wow.png b/donate_wow.png new file mode 100644 index 0000000..7950ca7 Binary files /dev/null and b/donate_wow.png differ diff --git a/src/app/pages/about/about.component.html b/src/app/pages/about/about.component.html index 5382e86..0dae182 100644 --- a/src/app/pages/about/about.component.html +++ b/src/app/pages/about/about.component.html @@ -95,6 +95,11 @@
{{BTCAddress}}

+

+
+
+ {{WOWAddress}} +

diff --git a/src/app/pages/about/about.component.ts b/src/app/pages/about/about.component.ts index b24c7e2..7112a65 100644 --- a/src/app/pages/about/about.component.ts +++ b/src/app/pages/about/about.component.ts @@ -14,21 +14,20 @@ export class AboutComponent { new NavbarLink('pills-donate-tab', '#pills-donate', 'pills-donate', false, 'Donate', false) ]; - public donateCrypto: 'XMR' | 'BTC' = 'XMR'; + public donateCrypto: 'XMR' | 'BTC' | 'WOW' = 'XMR'; public readonly XMRAddress: string = '84Q1SdQgFWaEWRn5KcvSPCQUa3NF39EJ3HPCTaiM86RHLLftqgTZpkP24jXrK5YpeedWbQAjHcFcDLpFJfr9TypfAU7pPjA'; public readonly BTCAddress: string = 'bc1qndc2lesy0sse9vj33a35pnfrqz4znlhhs58vfp'; + public readonly WOWAddress: string = 'WW33Zj3xu6EGTyKVWaz8EQZmqsTXKdK5eG7PDRaiPuJ1LyREhGHLCRDX3AaLx4r9NFCThRvsbq99KATbswJaxd3T1iwQLJ3Tw'; public addressCopied: boolean = false; public get guiVersion(): string { return this.daemonService.getGuiVersion(); } - constructor(private daemonService: DaemonService) { - - } + constructor(private daemonService: DaemonService) { } public copyAddressToClipboard(): void { - window.electronAPI.copyToClipboard(this.donateCrypto == 'XMR' ? this.XMRAddress : this.BTCAddress); + window.electronAPI.copyToClipboard(this.donateCrypto == 'XMR' ? this.XMRAddress : this.donateCrypto == 'WOW' ? this.WOWAddress : this.BTCAddress); this.addressCopied = true; setTimeout(() => { diff --git a/src/assets/donations/wow.png b/src/assets/donations/wow.png new file mode 100644 index 0000000..7950ca7 Binary files /dev/null and b/src/assets/donations/wow.png differ