Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • rehrar/revuo-weekly
  • maravelle/revuo-weekly
2 results
Show changes
Commits on Source (275)
Showing
with 2137 additions and 40 deletions
.sass-cache
.DS_Store
_site
.jekyll-cache
\ No newline at end of file
......@@ -9,7 +9,7 @@ markdown: kramdown
source: .
destination: ./_site
permalink: /:title
paginate: 8
paginate: 6
paginate_path: /page:num/
# Default values
......@@ -22,8 +22,9 @@ defaults:
layout: "post"
# Plugins
gems:
plugins:
- jekyll-paginate
- jekyll-feed
# Custom variables
version: "1.1.0"
......@@ -33,3 +34,6 @@ excerpt_separator: <!--more-->
custom_header: false
custom_nav_footer: false
reverse: false
twitter:
username: monero
\ No newline at end of file
<footer class="footer"><span>2019 - Revuo Monero</span></footer>
\ No newline at end of file
<footer class="footer"><span>2021 - Revuo Monero</span></footer>
\ No newline at end of file
......@@ -3,11 +3,23 @@
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="generator" content="Jekyll">
<title>{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="Revuo Monero is a weekly newsletter where you can find find the most recent Monero news.">
<meta name="keywords" content="monero, xmr, bitmonero, cryptocurrency">
<link rel="icon" type="image/png" sizes="32x32" href="/img/revuo-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
{% if page.path contains '_posts' %}
<link rel="canonical" href="{{ page.issuenumber | replace:'index.html','' | prepend: "https://localmonero.co/revuo/weekly/" }}" />
{%elsif page.periodical == "yes"%}
<link rel="canonical" href="{{ page.issuenumber | replace:'index.html','' | prepend: "https://localmonero.co/revuo/periodical/" }}" />
{%else%}
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: "https://localmonero.co/revuo" }}" />
{%endif%}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Revuo Monero - {{page.title}}">
<meta name="twitter:image" content="https://revuo-monero.com{{ page.image }}">
<!-- CSS & fonts -->
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl | replace: '//', '/' }}">
......@@ -15,5 +27,4 @@
<!-- RSS -->
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" />
</head>
<header id="header">
<a href="{{ site.baseurl }}">
<!--img src="{{ "/img/emerald.svg" | prepend: site.baseurl | replace: '//', '/' }}" alt="Emerald Logo"-->
<h1>Revuo Monero</h1>
</a>
<div>
<a href="{{ site.baseurl }}">
<img src="{{ "/img/revuo-monero-logo.png" | prepend: site.baseurl | replace: '//', '/' }}" alt="Revuo Monero Logo"-->
</a>
</div>
<div class="revuo-classes">
<a href="{{ site.baseurl }}" class="wk">Weekly</a>
<a href="/periodicals/" class="pd">Periodical</a>
</div>
</header>
<nav {% if site.reverse == true %}id="nav-left"{% else %}id="nav"{% endif %}>
<div id="nav-list">
<a href="{{ site.baseurl }}">Home</a>
<a href="{{ site.baseurl }}">Revuo Weekly</a>
<!-- Nav pages -->
{% for page in site.pages %}
......
......@@ -31,33 +31,31 @@
</main>
<!-- Pagination links -->
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% elsif paginator.previous_page%}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% else %}
<span class="page-item">&laquo;</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="page-item">{{ page }}</span>
{% elsif page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="page-item">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&raquo;</a>
{% else %}
<span class="page-item">&raquo;</span>
{% endif %}
</div>
{% endif %}
<div class="pagination">
{% if paginator.total_pages > 1 %}
<div class="page-numbers"><p>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path}}" class="page-button prev">Prev</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% assign total = paginator.total_pages %}
{% if page == paginator.page %}
{{ page }} of {{total}}
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path}}" class="page-button next">Next</a>
{% endif %}
</p></div>
{% endif %}
</div>
</div>
......
---
layout: default
layout: revuo-period
---
<article id="page">
......
---
layout: default
---
<article id="post-page">
<h2>{{ page.title }}</h2>
<div class="content">
{{ content }}
</div>
</article>
\ No newline at end of file
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div id="wrap">
<div id="periodical">
<!-- Navigation -->
{% include menu.html %}
<!-- Icon menu -->
<a {% if site.reverse == true %}id="nav-menu-left"{% else %}id="nav-menu"{% endif %}>
<div id="menu"></div>
</a>
<!-- Header -->
{% if site.custom_header == true %}
{% include header-custom.html %}
{% else %}
{% include header.html %}
{% endif %}
<!-- Main content -->
<div id="container">
<main>
{{ content }}
</main>
<!-- Pagination links -->
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% elsif paginator.previous_page%}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% else %}
<span class="page-item">&laquo;</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="page-item">{{ page }}</span>
{% elsif page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="page-item">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&raquo;</a>
{% else %}
<span class="page-item">&raquo;</span>
{% endif %}
</div>
{% endif %}
</div>
<!-- Footer -->
{% include footer.html %}
<!-- Script -->
{% include script.html %}
</div>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div id="wrap">
<div id="weekly">
<!-- Navigation -->
{% include menu.html %}
<!-- Icon menu -->
<a {% if site.reverse == true %}id="nav-menu-left"{% else %}id="nav-menu"{% endif %}>
<div id="menu"></div>
</a>
<!-- Header -->
{% if site.custom_header == true %}
{% include header-custom.html %}
{% else %}
{% include header.html %}
{% endif %}
<!-- Main content -->
<div id="container">
<main>
{{ content }}
</main>
<!-- Pagination links -->
<div class="pagination">
{% if paginator.total_pages > 1 %}
<div class="page-numbers">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path}}" class="page-item prev">«</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% assign total = paginator.total_pages %}
{% if page == paginator.page %}
<p class="page-numbers-display">{{ page }} of {{total}}</p>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path}}" class="page-item next">»</a>
{% endif %}
</div>
{% endif %}
</div>
</div>
<!-- Footer -->
{% include footer.html %}
<!-- Script -->
{% include script.html %}
</div>
</div>
</body>
</html>
\ No newline at end of file
---
title: Revuo Monero Weekly - March 29, 2019
title: Issue 1&#58; March 22-29, 2019
issuenumber: 1
---
The first issue of Revuo Monero Weekly. Week of March 22-29, 2019.
[<img src="/img/img-issue1.jpg" alt="Revuo Monero Weekly Issue 1 Image">]({% post_url 2019-03-27-issue-1 %}.html)
Revuo Monero Weekly: Week of March 22 - March 29, 2019.
<!--more-->
<h3>Table of Contents:</h3>
......@@ -243,6 +246,8 @@ Cypher Market is a business with a social vision, to experiment with new, sustai
Check back next week for another merchant that accepts Monero for their goods and services.
*Disclaimer: Cypher Market is owned by the author of the Revuo.*
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
......
---
title: Issue 2&#58; March 29 - April 4, 2019
issuenumber: 2
---
[<img src="/img/img-issue2.jpg" alt="Revuo Monero Weekly Issue 2 Image">]({% post_url 2019-04-04-issue-2 %}.html)
Revuo Monero Weekly: Week of March 29 - April 4, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#proposals">CCS Proposals</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#merchant">Monero Merchant of the Week</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/b7s97g/some_generous_donors_topped_off_all_of_the/" target="_blank">All current proposals in CCS Funding Required have been fully funded by an anonymous donor</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://repo.getmonero.org/monero-project/monero-site/blob/989dfe4db6d25e64b997f203bcb9fa913ccc5120/_posts/2019-03-31-logs-for-the-dev-meeting-held-on-2019-03-31.md" target="_blank">Logs from the dev meeting on Monero Point Release from March 31 are availlable on GitLab</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/b73rng/xmrto_not_serving_us_customers_for_the_time_being/" target="_blank">XMR.to not serving US customers for the time being</a>
</h4>
</div>
<div class="newsbyte">
<h4>
Monero Core software now allows the <a href="https://twitter.com/JEhrenhofer/status/1112745292301041664" target="_blank">freezing and thawing of specific outputs</a>, which can be useful for organizations such as non-profits, and anything else that requires “due diligence”.
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://twitter.com/elkakai/status/1113139958716469249" target="_blank">Monero community donated 64 XMR to the Tor Project</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/b6pbhj/monero_quickfacts_sheet_revised_212019/" target="_blank">The Monero Outreach Workgroup released an updated Monero Quick-Facts Sheet</a>
</h4>
<p>Quickfacts were revised on 2/1/19 and are now available in different languages.</p>
</div>
<div class="newsbyte">
<h4>
<a href="https://github.com/monero-project/meta/issues/324" target="_blank">Join the community discussion about celebration Monero‘s 5th birthday on GitHub</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.monerooutreach.org/mine-to-support-the-network.php" target="_blank">The Monero Outreach Workgroup published a Public Service Announcement on protecting the network by mining</a>
</h4>
</div>
<div class="newsbyte">
<h4>
Monero Talk on the Italian government’s testing of an online blockchain voting system built on Monero – <a href="https://www.youtube.com/watch?v=LLabc2nPE7o" target="_blank">available on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/b7z8g0/monero_listed_on_tokenomy_exchange/" target="_blank">Monero is listed on Tokenomy Exchange</a></h4>
<p>Supported trading pair is XMR/BTC.</p>
</div>
<div class="newsbyte">
<h4>
<a href="https://medium.com/resistanceio/monero-wins-the-donation-contest-e1e7f771ac12" target="_blank">Monero Wins Resistance 15% Donation Contest</a>
</h4>
</div>
<div class="newsbyte">
<h4>
Reddit user sech1 made <a href="https://cdn.discordapp.com/attachments/494821900711886848/561498176973045770/nonces.png" target="_blank">a nonce distribution chart</a> which spans the last six forks.
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://twitter.com/TuurDemeester/status/1111131198020112385" target="_blank">@tuurdemeester on Twitter used the Estibot tool to estimate the amount of searches cryptocurrencies are getting.</a>
</h4>
<p>Monero is quite high on the list.</p>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date">April 6, 2019 – 17:00 UTC</p>
<p>DefCon 27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 8, 2019 – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 11, 2019 – 18:00 UTC</p>
<p markdown="1">Tini2p Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 13, 2019 – 17:00 UTC</p>
<p markdown="1">Community Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 18th, 2019</p>
<p markdown="1">Monero Birthday – 5 years old</p>
</div>
<h3 id="proposals">CCS Proposals</h3>
None. All funded. :) But keep a look out for proposals in the future, or donate to the General Fund (<a href="#donate">donation address</a> at the bottom of the Revuo).
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1806027</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>290.577 MH/s</b></p>
<p>Average Tx per block: <b>5.76</b></p>
<p>Weekly Moving Average Tx per day: <b>4152</b></p>
<p>Block reward: <b>2.95 XMR</b></p>
</div>
<p class="note">Data taken on April 4, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0404.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,086,168,791</b><br>Localmonero.co Street Price: <b>$69.38</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>4/4/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="03/29/19">$64.20</td>
<td data-th="Week" class="green">+21.9%</td>
<td data-th="Month" class="green">+32.8%</td>
<td data-th="Year" class="red">-62.4%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="03/29/19">€57.20</td>
<td data-th="Week" class="green">+22.0%</td>
<td data-th="Month" class="green">+33.8%</td>
<td data-th="Year" class="red">-58.8%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="03/29/19">Ƀ0.01303894</td>
<td data-th="Week" class="red">-0.4%</td>
<td data-th="Month" class="green">+3.9%</td>
<td data-th="Year" class="red">-47.7%</td>
</tr>
</table>
<p class="note">Data taken on April 4, 2019</p>
<p class="table-title">XMR Price Graph for March 29 - April 4, 2019</p>
![XMR Price Graph 03/29/19-04/04/19](/img/weekly-chart-0404.png "XMR Price Graph 03/22/19-03/29/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="merchant">Monero Merchant of the Week</h3>
<a href="http://cloakvpn.com/" target="_blank"><img src="/img/cloakvpnlogo.jpg" alt="CloakVPN Logo" class="merchant-img" id="cloakvpn"></a>
<a href="http://cloakvpn.com/" target="_blank">Cloakvpn.com</a> is an VPN service using the OpenVPN protocol. CloakVPN encrypts your internet traffic and cloaks your actual location. CloakVPN accepts Monero and provisions users directly off the blockchain payments without needing any user information.
Check back next week for another merchant that accepts Monero for their goods and services.
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
<p class="date"><a href="https://www.reddit.com/r/Monero/comments/b11aec/call_for_contributors_new_strings_for_monerujo_we/" target="_blank">Monerujo is looking for translators</a></p>
<p>If you speak any language beside English, Monerujo needs your help.</p>
<p><a href="https://www.reddit.com/r/Monero/comments/b5fe5j/psa_seeking_volunteer_reviewers_for_pow_randomx/" target="_blank">Seeking Volunteer Reviewers for PoW RandomX</a></p>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 3&#58; April 4-11, 2019
issuenumber: 3
---
[<img src="/img/img-issue3.jpg" alt="Revuo Monero Weekly Issue 3 Image">]({% post_url 2019-04-11-issue-3 %}.html)
Revuo Monero Weekly: Week of April 4 - April 11, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#merchant">Monero Merchant of the Week</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/bavnwl/ledger_change_output_bug_post_mortem_with_a_happy/" target="_blank">Postmortem of the Ledger change output bug</a>
</h4>
<p>Ledger is now safe to use provided the user is:</p>
<ol>
<li>Using GUI v0.14.0.0 (or CLI v0.14.0.2)</li>
<li>Using Ledger Monero app v1.2.2</li>
<li>Using Ledger Live firmware v1.5.5 or v1.6.0</li>
</ol>
</div>
<div class="newsbyte">
<h4>
<a href="https://github.com/fraudmarc/dots" target="_blank">Dots churn software is now available for testing.</a>
</h4>
<p>It is being discussed how this software will improve user churn ability. USE ONLY ON TESTNET for now, and do not trust the software with your anonymity and privacy yet.</p>
</div>
<div class="newsbyte">
<h4>
<a href="https://monerokon.com/registration" target="_blank">Tickets available for Monero Konferenco</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://monerokon.com/schedule" target="_blank">Monero Konferenco schedule is available online</a>
</h4>
</div>
<div class="newsbyte">
<h4>
Recent Monero GUI updates include <a href="https://github.com/monero-project/monero-gui/pull/2019" target="_blank">Trezor support</a> and <a href="https://www.reddit.com/r/Monero/comments/ban52m/small_monero_gui_update/" target="_blank">other features</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/ba6xx0/ethos_of_decentralization_solo_gpucpu_mining_is/" target="_blank">Solo GPU/CPU miners are released - thanks to hyc_symas</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.monerooutreach.org/monero_best_practices/" target="_blank">The Monero Outreach Workgroup public service announcements are available on their website</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://youtu.be/adNi17O791M" target="_blank">Watch Monero Coffee Chat stream from April 6, 2019 on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://youtu.be/LFNT_6nqtdA" target="_blank">Monero Talk w/ Riccardo Spagni aka Fluffypony - “Is Monero digital cash?”</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/b9rutj/monero_quickfacts_sheet_revised_212019_french/" target="_blank">Monero Quick-Facts Sheet revised on 2/1/2019 is available in French</a></h4>
</div>
<div class="newsbyte">
<h4>
CoinLoan.io, a P2P lending platform for crypto-to-fiat loans, <a href="https://www.reddit.com/r/Monero/comments/bbdcr4/finally_monero_backed_loans/" target="_blank">is now accepting Monero as collateral</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/bb1bwv/update_announcement_a_monero_mining_pool_server/" target="_blank">Updates on the Monero mining pool server written in C</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://twitter.com/coindirectcom/status/1113471728456540166" target="_blank">Coindirect added Monero</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/baj9v5/update_about_monero_game/" target="_blank">Gscoders published an update on Monero Game</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.monero.how/monero-transaction-fees" target="_blank">See live chart of Monero Transaction Fees vs. BTC</a>
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date">April 13, 2019 (Saturday) – 17:00 UTC</p>
<p>Community Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 15, 2019 (Monday) – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 18, 2019 (Thursday) – All Day</p>
<a href="https://github.com/monero-project/meta/issues/324#issuecomment-482330612"><p markdown="1">Monero Birthday – 5 years old, various events happening throughout the day.</p></a>
</div>
<div class="event">
<p class="date" markdown="1">April 21, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/54" target="_blank">Knueffelbund GUI design for Q2 2019</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/55" target="_blank">Xiphon part time coding</a></p>
</div>
<h3 id="proposals">CCS Proposals</h3>
None. All funded. :) But keep a look out for proposals in the future, or donate to the General Fund (<a href="#donate">donation address</a> at the bottom of the Revuo).
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1810929</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>298.340 MH/s</b></p>
<p>Average Tx per block: <b>5.71</b></p>
<p>Weekly Moving Average Tx per day: <b>4101</b></p>
<p>Block reward: <b>2.93 XMR</b></p>
</div>
<p class="note">Data taken on April 11, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0411.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,113,296,833</b><br>Localmonero.co Street Price: <b>$71.38</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>4/11/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="04/11/19">$65.19</td>
<td data-th="Week" class="red">-1.6%</td>
<td data-th="Month" class="green">+33.9%</td>
<td data-th="Year" class="red">-60.6%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="04/11/19">€58.45</td>
<td data-th="Week" class="red">-1.7%</td>
<td data-th="Month" class="green">+33.9%</td>
<td data-th="Year" class="red">-56.8%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="04/11/19">Ƀ0.01306811</td>
<td data-th="Week" class="red">-3.4%</td>
<td data-th="Month" class="green">+2.5%</td>
<td data-th="Year" class="red">-46.7%</td>
</tr>
</table>
<p class="note">Data taken on April 11, 2019</p>
<p class="table-title">XMR Price Graph for April 4-11, 2019</p>
![XMR Price Graph 04/04/19-04/11/19](/img/weekly-chart-0411.png "XMR Price Graph 03/22/19-03/29/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="merchant">Monero Merchant of the Week</h3>
<a href="https://xmr.to/" target="_blank"><img src="/img/xmrto-logo.png" alt="XMR.to Logo" class="merchant-img" id="xmrto"></a>
<a href="https://xmr.to/" target="_blank">XMR.to</a> allows you to make a Bitcoin payment with the strong privacy provided by Monero. This means that using Monero together with XMR.TO, you can pay any Bitcoin address in the world while protecting your privacy.
You send them Monero, and they send out Bitcoin. They even pay the BTC transaction fees for you.
Check back next week for another merchant that accepts Monero for their goods and services.
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<p class="date"><a href="https://www.reddit.com/r/Monero/comments/baudu4/localization_workgroup_cli_and_gui_wallet_waiting/" target="_blank">CLI, GUI and Monerujo wallets need translators</a></p>
<p></p>
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
<p><a href="https://www.reddit.com/r/Monero/comments/b5fe5j/psa_seeking_volunteer_reviewers_for_pow_randomx/" target="_blank">Seeking Volunteer Reviewers for PoW RandomX</a></p>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 4&#58; April 11-18, 2019
issuenumber: 4
---
[<img src="/img/img-issue4.jpg" alt="Revuo Monero Weekly Issue 4 Image">]({% post_url 2019-04-17-issue-4 %}.html)
Revuo Monero Weekly: Week of April 11 - April 18, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#moneroversary">Moneroversary</a></li>
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#merchant">Monero Merchant of the Week</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="moneroversary">Moneroversary</h3>
Today (April 18th, 2019) is Monero’s 5th Anniversary of existence. Some might call it a birthday. There are many events planned. The schedule of events is posted below.
<table class="moneroversary-table">
<tr class="row1">
<th>Time</th>
<th>Description</th>
<th>Livestream</th>
</tr>
<tr>
<td data-th="Time">8:00 UTC</td>
<td data-th="Description">Vienna Riat informal discussion begins</td>
<td data-th="Livestream">No</td>
</tr>
<tr class="row3">
<td data-th="Time">10:30 UTC</td>
<td data-th="Description">Vienna Riat countdown to Monero launch anniversary</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=Ihgrs_H1mbA" target="_blank">Yes</a></td>
</tr>
<tr>
<td data-th="Time">11:30 UTC</td>
<td data-th="Description">Vienna Riat workshops</td>
<td data-th="Livestream">No</td>
</tr>
<tr class="row3">
<td data-th="Time">16:00 UTC</td>
<td data-th="Description"><a href="https://www.meetup.com/Monero-ZRH/events/260371194/" target="_blank">Inaugural Zurich meetup</a></td>
<td data-th="Livestream">No</td>
</tr>
<tr>
<td data-th="Time">17:00 UTC</td>
<td data-th="Description">Monero Talk with Mitchell About Mastering Monero</td>
<td data-th="Livestream">Yes</td>
</tr>
<tr class="row3">
<td data-th="Time">19:30 UTC</td>
<td data-th="Description">Vienna Riat Meetup</td>
<td data-th="Livestream">No</td>
</tr>
<tr>
<td data-th="Time">21:00 UTC</td>
<td data-th="Description">Check-in with Vienna Riat Meetup</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=HhQaySyAkxc" target="_blank">Yes</a></td>
</tr>
<tr class="row3">
<td data-th="Time">21:15 UTC</td>
<td data-th="Description">Monero's history with fluffypony</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=HhQaySyAkxc" target="_blank">Yes</a></td>
</tr>
<tr>
<td data-th="Time">22:00 UTC</td>
<td data-th="Description">Coffee Chat-style Q&A (Justin, rehrar, fluffypony, sarang, others)</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=HhQaySyAkxc" target="_blank">Yes</a></td>
</tr>
<tr class="row3">
<td data-th="Time">23:00 UTC</td>
<td data-th="Description">The importance of financial privacy is critically downplayed in cryptocurrency communities (rehrar)</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=HhQaySyAkxc" target="_blank">Yes</a></td>
</tr>
<tr>
<td data-th="Time">23:45 UTC</td>
<td data-th="Description">Recent news and announcements</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=HhQaySyAkxc" target="_blank">Yes</a></td>
</tr>
<tr class="row3">
<td data-th="Time">00:00 UTC</td>
<td data-th="Description">Puzzle (needmoney90)</td>
<td data-th="Livestream"><a href="https://www.youtube.com/watch?v=HhQaySyAkxc" target="_blank">Yes</a></td>
</tr>
</table>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4><a href="http://thebitcoinpodcast.com/hashing-it-out-42/" target="_blank">Brandon “suraeNoether” Goodell from the Monero Research Lab was a guest on The Bitcoin Podcast</a> where he talks about Monero, and other privacy and cryptocurrency related topics.
</h4>
</div>
<div class="newsbyte">
<h4>Wookey Wallet - an open source, iOS/Android, privacy coin focused mobile wallet released this week, featuring Monero as its first (and only) supported coin</h4>
<p><a href="https://wallet.wookey.io/" target="_blank">See their website for more details and downloads.</a></p>
</div>
<div class="newsbyte">
<h4>Monero confirmed to have a village at Defcon again this year, with a bigger room than before.</h4>
<p>Now, with the <a href="https://ccs.getmonero.org/proposals/pwrcycle-Defcon_Monero_Party_2019.html" target="_blank">Monero Party proposal</a> funded, it seems Monero’s presence in Las Vegas, NV will be even bigger than last year, all things considered.</p>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.monerooutreach.org/stories/monero_swot_analysis.php" target="_blank">The Monero Outreach Workgroup published an in-depth SWOT analysis of Monero</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/bczdgl/monero_quickfacts_sheet_revised_212019_brazilian/" target="_blank">Monero Quick-Facts sheet revised 2/1/2019 is available in Brazilian Portuguese</a>
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date" markdown="1">April 18, 2019 (Today)</p>
<a href="https://github.com/monero-project/meta/issues/324#issuecomment-482330612" target="_blank"><p markdown="1">Monero Birthday – 5 years old, various events happening throughout the day</p></a>
</div>
<div class="event">
<p class="date">April 20, 2019 (Saturday) – 17:00 UTC</p>
<p>Defcon 27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 21, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 22, 2019 (Monday) – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">April 25, 2019 (Thursday) – 17:00 UTC</p>
<p markdown="1">Tini2p Dev Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/56" target="_blank">Korean Translations GUI & CLI by Xeagu</a></p>
</div>
<h3 id="proposals">CCS Proposals</h3>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/ErCiccione-localizations.html" target="_blank">ErCiccione: Coordinator of the Localization Workgroup - March</a> by ErCiccione</p>
<p>Raised <b>1.00 of 144.00</b> XMR (0.00694444%)</p>
</div>
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1815436</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>284.327 MH/s</b></p>
<p>Average Tx per block: <b>5.38</b></p>
<p>Weekly Moving Average Tx per day: <b>3844</b></p>
<p>Block reward: <b>2.90 XMR</b></p>
</div>
<p class="note">Data taken on April 18, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0418.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,166,166,495</b><br>Localmonero.co Street Price: <b>$64.56</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>4/18/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="04/18/19">$68.91</td>
<td data-th="Week" class="red">-2.7%</td>
<td data-th="Month" class="green">+33.3%</td>
<td data-th="Year" class="red">-64.7%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="04/18/19">€60.90</td>
<td data-th="Week" class="red">-2.9%</td>
<td data-th="Month" class="green">+33.7%</td>
<td data-th="Year" class="red">-61.3%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="04/18/19">Ƀ0.01307770</td>
<td data-th="Week" class="red">-1.8%</td>
<td data-th="Month" class="green">+1.1%</td>
<td data-th="Year" class="red">-47.1%</td>
</tr>
</table>
<p class="note">Data taken on April 18, 2019</p>
<p class="table-title">XMR Price Graph for April 11-18, 2019</p>
![XMR Price Graph 04/11/19-04/18/19](/img/weekly-chart-0418.png "XMR Price Graph 04/11/19-04/18/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="merchant">Monero Merchant of the Week</h3>
<a href="https://njal.la/" target="_blank"><img src="/img/njalla.svg" alt="Njalla Logo" class="merchant-img" id="njalla"></a>
<a href="https://njal.la/" target="_blank">Njal.la</a> is a domain registration service with privacy as the primary focus. To understand their service, we quote directly from their About section:
“When you buy a domain in our system, we're actually purchasing it for ourselves. We will be the actual owners of the domain, it's not an ownership by proxy as found with all other providers. However, you will still have the full control over the domain name. You can either use our information, our nameservers or you can go with your custom data.
If you ever want to move the domain from our system, we'll of course give you the domain without any additional costs.
The idea is to make sure that we minimise your visibility to the public. We're not going to give your customer data out easily. However, we will help if there are legal merits to any formal government requests to our system. If you use our service in a way that affects anyone's health or safety, we reserve the right to suspend your service.”
<i>Check back next week for another merchant that accepts Monero for their goods and services.</i>
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<p class="date"><a href="https://www.reddit.com/r/Monero/comments/baudu4/localization_workgroup_cli_and_gui_wallet_waiting/" target="_blank">Turkish translators wanted for Getmonero.org translation review</a></p>
<p></p>
<p class="date"><a href="https://www.reddit.com/r/Monero/comments/bddztr/do_you_speak_turkish_monero_needs_your_help_to/" target="_blank">CLI, GUI and Monerujo wallets need translators</a></p>
<p></p>
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
<p><a href="https://www.reddit.com/r/Monero/comments/b5fe5j/psa_seeking_volunteer_reviewers_for_pow_randomx/" target="_blank">Seeking Volunteer Reviewers for PoW RandomX</a></p>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 5&#58; April 18-25, 2019
issuenumber: 5
---
[<img src="/img/img-issue5.jpg" alt="Revuo Monero Weekly Issue 5 Image">]({% post_url 2019-04-25-issue-5 %}.html)
Revuo Monero Weekly: Week of April 18 - April 25, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#merchant">Monero Merchant of the Week</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<table class="moneroversary-table">
<tbody><tr class="row1">
<th>Moneroversary Recap</th>
</tr>
</tbody></table>
<div class="newsbyte">
<h4><a href="https://www.youtube.com/playlist?list=PLsSYUeVwrHBkx9Gqi4HitIEWfQo2sTdti" target="_blank">Moneroversary Playlist</a>
</h4>
<ul>
<li>Intro</li>
<li>Coffee Chat</li>
<li>Monero's Early History w/ fluffypony</li>
<li>Privacy Chat w/ rehrar</li>
<li>News & Announcements</li>
<li>Monero Puzzle</li>
<li>Monero Trivia Game</li>
<li>Cake & Closing</li>
</ul>
</div>
<div class="newsbyte">
<h4><a href="https://www.coindesk.com/privacy-crypto-monero-celebrates-its-5th-birthday" target="_blank">CoinDesk Article on Monero's 5th Birthday</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.youtube.com/watch?v=Ihgrs_H1mbA" target="_blank">Moneroversary Countdown (RIAT)</a>
</h4>
</div>
<table class="moneroversary-table">
<tbody><tr class="row1">
<th>Other News</th>
</tr>
</tbody></table>
<div class="newsbyte">
<h4><a href="https://masteringmonero.com/" target="_blank">Mastering Monero eBook FREE version has been released</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.youtube.com/watch?v=6v4UMr1utuA" target="_blank">Monero Talk w/ Mitchell Krawiec-Thayer on Mastering Monero</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://minko.to/" target="_blank">Minko</a>, a new game that utilizes Monero was launched. Play it here: <a href="https://minko.to/" target="_blank">minko.to</a></h4>
</div>
<div class="newsbyte">
<h4><a href="https://youtu.be/qrUq0v5VgdU" target="_blank">99Bitcoins released a video about Monero for noobs</a></h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monerobox/comments/bggcd7/monerobox_now_supports_tor_hidden_service_for/" target="_blank">Monerobox enables Tor hidden service</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://ww.getmonero.org/tr/index.html" target="_blank">Getmonero.org available in Turkish</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.monerooutreach.org/stories/monero_wallet_quickstart.php" target="_blank">The Monero Outreach Workgroup released a simplified Guide to Monero Wallets</a>
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date" markdown="1">April 27, 2019 (Saturday) - 17:00 UTC</p>
<p markdown="1">Community Workgroup Meeting</p>
</div>
<div class="event">
<p class="date">April 29, 2019 (Monday) – 17:00 UTC</p>
<p>Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 4, 2019 (Saturday) – 17:00 UTC</p>
<p markdown="1">DefCon 27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 5, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/58" target="_blank">Monero currency and blockchain statistics hub</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/56" target="_blank">Korean Translations GUI & CLI by Xeagu</a></p>
</div>
<h3 id="proposals">CCS Proposals Need Funding</h3>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/dsc-2019-q2.html" target="_blank">GUI UX coding (3 months)</a> by dsc</p>
<p>Raised <b>97.12 of 282.00</b> XMR (34%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/xiphon-part-time.html" target="_blank">Xiphon part time coding (3 months)</a> by xiphon</p>
<p>Raised <b>15.07 of 111.00</b> XMR (14%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/knueffelbund-gui-design-for-q2-2019.html" target="_blank">Knueffelbund GUI design for Q2 2019</a> by knueffelbund</p>
<p>Raised <b>24.02 of 37.00</b> XMR (65%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/ErCiccione-localizations.html" target="_blank">ErCiccione: Coordinator of the Localization Workgroup - March</a> by ErCiccione</p>
<p>Raised <b>18.01 of 144.00</b> XMR (13%)</p>
</div>
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1820974</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>302.883 MH/s</b></p>
<p>Average Tx per block: <b>10.36</b></p>
<p>Weekly Moving Average Tx per day: <b>3229</b></p>
<p>Block reward: <b>2.87 XMR</b></p>
</div>
<p class="note">Data taken on April 25, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0425.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,145,953,168</b><br>Localmonero.co Street Price: <b>$63.67</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>4/25/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="04/25/19">$67.69</td>
<td data-th="Week" class="red">-0.9%</td>
<td data-th="Month" class="green">+31.5%</td>
<td data-th="Year" class="red">-77.1%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="04/25/19">€60.81</td>
<td data-th="Week" class="green">+0.6%</td>
<td data-th="Month" class="green">+33.7%</td>
<td data-th="Year" class="red">-74.8%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="04/25/19">Ƀ0.01235750 </td>
<td data-th="Week" class="red">-5.5%</td>
<td data-th="Month" class="red">-5.6%</td>
<td data-th="Year" class="red">-59.4%</td>
</tr>
</table>
<p class="note">Data taken on April 25, 2019</p>
<p class="table-title">XMR Price Graph for April 18-25, 2019</p>
![XMR Price Graph 04/18/19-04/25/19](/img/weekly-chart-0425.png "XMR Price Graph 04/18/19-04/25/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="merchant">Monero Merchant of the Week</h3>
<a href="https://airvpn.org/" target="_blank"><img src="/img/airvpn-logo.png" alt="AirVPN Logo" class="merchant-img" id="airvpn"></a>
<a href="https://airvpn.org/" target="_blank">AirVPN.org</a> is a VPN provider based in Italy. They contribute to FOSS by having created and currently maintaining a GUI for OpenVPN called <a href="https://github.com/AirVPN/Eddie" target="_blank">Eddie</a>, and accept Monero for all of their services. They are fairly highly rated by <a href="https://thatoneprivacysite.net/vpn-comparison-chart/" target="_blank">That One Privacy Site</a>, although every user is encouraged to do their own research to find something that fits their needs.
<i>Check back next week for another merchant that accepts Monero for their goods and services.</i>
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<p><a href="https://www.reddit.com/r/Monero/comments/b5fe5j/psa_seeking_volunteer_reviewers_for_pow_randomx/" target="_blank">Seeking Volunteer Reviewers for PoW RandomX</a></p>
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 6&#58; April 26 - May 2, 2019
issuenumber: 6
---
[<img src="/img/img-issue6.jpg" alt="Revuo Monero Weekly Issue 6 Image">]({% post_url 2019-05-02-issue-6 %}.html)
Revuo Monero Weekly: Week of April 26 - May 2, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4><a href="https://www.exodus.io/monero/" target="_blank">Monero is now available on Exodus wallet</a>
</h4>
</div>
<div class="newsbyte">
<h4>Dr. Sarang Noether published his monthly research report for April - <a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/34#note_5903" target="_blank">available on GitLab</a>
</h4>
</div>
<div class="newsbyte">
<h4>LocalMonero now has a <a href="https://localmonero.co/nojs/" target="_blank">no-JavaScript version</a>. Tor/I2P visits will load the no-JavaScript version by default.
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://minko.to/" target="_blank">Minko</a>, a provably fair Monero game, <a href="https://www.reddit.com/r/Monero/comments/bhmpgk/astrobot_is_alive_or_so_does_he_think_on_minko/" target="_blank">has added AstroBot</a> that asks trivia questions and rewards correct answers</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bhp5j6/the_monero_ecosystem_now_has_a_chatroom_and_a/" target="_blank">The Monero Ecosystem project now has a chatroom and a website</a></h4>
</div>
<div class="newsbyte">
<h4>Breaking Monero Episode 11: Mailbag Episode by SamsungGalaxyPlayer - <a href="https://www.youtube.com/watch?v=q1gdYWsvXDU" target="_blank">available on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4>Monero Talk about Lightning Network on Monero with Bernhard Breytenbach - <a href="https://youtu.be/-jlsGevNdm4" target="_blank">available on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bjer8z/xmrrureport_april/" target="_blank">XMR.RU team posted a report on their translation work for March</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bhedhg/monero_quickfacts_sheet_revised_212019_dutch_nl/" target="_blank">Monero Quick-Facts sheet revised 2/1/2019 is available in Dutch</a>
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date" markdown="1">May 4, 2019 (Saturday) - 16:00 UTC</p>
<p markdown="1">Monero Coffee Chat - <a href="https://www.youtube.com/channel/UCKxLNPJeEjPXOke55i5AIXA" target="_blank">watch online here</a></p>
</div>
<div class="event">
<p class="date">May 4, 2019 (Saturday) – 17:00 UTC</p>
<p>DefCon27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 5, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 6, 2019 (Monday) – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 7, 2019 (Tuesday) – 17:00 UTC</p>
<p markdown="1">Monero GUI Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 9, 2019 (Thursday) – 17:00 UTC</p>
<p markdown="1">Tini2p Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 11, 2019 (Saturday) – 17:00 UTC</p>
<p markdown="1">Community Workgroup Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/58" target="_blank">Monero currency and blockchain statistics hub</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/56" target="_blank">Korean Translations GUI & CLI by Xeagu</a></p>
</div>
<h3 id="proposals">CCS Proposals Need Funding</h3>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/dsc-2019-q2.html" target="_blank">GUI UX coding (3 months)</a> by dsc</p>
<p>Raised <b>98.48 of 282.00</b> XMR (35%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/xiphon-part-time.html" target="_blank">Xiphon part time coding (3 months)</a> by xiphon</p>
<p>Raised <b>18.10 of 111.00</b> XMR (16%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/knueffelbund-gui-design-for-q2-2019.html" target="_blank">Knueffelbund GUI design for Q2 2019</a> by knueffelbund</p>
<p>Raised <b>25.55 of 37.00</b> XMR (69%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/ErCiccione-localizations.html" target="_blank">ErCiccione: Coordinator of the Localization Workgroup - March</a> by ErCiccione</p>
<p>Raised <b>20.03 of 144.00</b> XMR (14%)</p>
</div>
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1826047</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>283.135 MH/s</b></p>
<p>Average Tx per block: <b>13.76</b></p>
<p>Weekly Moving Average Tx per day: <b>9878</b></p>
<p>Block reward: <b>2.84 XMR</b></p>
</div>
<p class="note">Data taken on May 2, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0502.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,092,379,011</b><br>Localmonero.co Street Price: <b>$64.22</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>05/02/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="05/02/19">$64.16</td>
<td data-th="Week" class="red">-5.1%</td>
<td data-th="Month" class="green">+5.8%</td>
<td data-th="Year" class="red">-73.1%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="05/02/19">€57.41</td>
<td data-th="Week" class="red">-5.2%</td>
<td data-th="Month" class="green">+6.1%</td>
<td data-th="Year" class="red">-71.2%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="05/02/19">Ƀ0.01172669</td>
<td data-th="Week" class="red">-5.7%</td>
<td data-th="Month" class="red">-19.8%</td>
<td data-th="Year" class="red">-55.7%</td>
</tr>
</table>
<p class="note">Data taken on May 2, 2019</p>
<p class="table-title">XMR Price Graph for April 26 - May 2, 2019</p>
![XMR Price Graph 04/26/19-05/02/19](/img/weekly-chart-0502.png "XMR Price Graph 04/26/19-05/02/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<div class="newsbyte">
<p>If you know of any merchants or exchanges that are still using a long form payment ID, please let the community know so we can contact them and ask them to integrated addresses or subaddresses. Feel free to leave them in the comments of <a href="https://reddit.com/r/Monero/comments/bib6zq/list_of_services_using_long_payment_ids_a_call/" target="_blank">this Reddit thread</a>.</p>
</div>
<div class="newsbyte">
<p><a href="https://www.reddit.com/r/Monero/comments/b5fe5j/psa_seeking_volunteer_reviewers_for_pow_randomx/" target="_blank">Seeking Volunteer Reviewers for PoW RandomX</a></p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
</div>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 7&#58; May 2-9, 2019
issuenumber: 7
---
[<img src="/img/img-issue7.jpg" alt="Revuo Monero Weekly Issue 7 Image">]({% post_url 2019-05-09-issue-7 %}.html)
Revuo Monero Weekly: Week of May 2 - May 9, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#merchant">Monero-Accepting Non-Profit of the Week</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4><a href="https://bitinfocharts.com/comparison/monero-transactions.html" target="_blank">Monero transactions have reached their all time high this past week</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bl1uai/the_defcon_monero_village_call_for_presentations/" target="_blank">The DefCon Monero Village Call for Presentations and Volunteers is now open</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://twitter.com/Trezor/status/1125429283697172482" target="_blank">Trezor.io now accepts payments in XMR</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://finance.yahoo.com/news/key-conference-private-cryptocurrency-held-135100005.html" target="_blank">Yahoo Finance reported on the Monero Konferenco that will be happening this June</a>
</h4>
</div>
<div class="newsbyte">
<h4>Logs from the Dev Meeting from May 5, 2019 <a href="https://repo.getmonero.org/monero-project/monero-site/blob/31ee489b3a57d930b91be50c4934e6b1612756d9/_posts/2019-05-05-logs-for-the-dev-meeting-held-on-2019-05-05.md" target="_blank">are available on GitLab</a>
</h4>
</div>
<div class="newsbyte">
<h4>There are two new updates for monero-pool, a Monero mining pool server written in C. <a href="https://www.reddit.com/r/Monero/comments/bkokrk/update_announcement_a_monero_mining_pool_server/" target="_blank">The first is optimizations and improvements</a>, and <a href="https://www.reddit.com/r/Monero/comments/bmcmqi/announcement_moneropool_a_special_new_update/" target="_blank">the second is a brand new feature which uses the --block-notify flag to do block notifications via signals</a>.
</h4>
</div>
<div class="newsbyte">
<h4>XMR can now be used to buy & sell everything on <a href="https://weshopwithcrypto.com/supported-coins/" target="_blank">WSWC, a marketplace like eBay for cryptocurrency users</a>
</h4>
</div>
<div class="newsbyte">
<h4>Monero Coffee Chat stream from May 4, 2019 <a href="https://www.youtube.com/watch?v=jlGd_9QMwTA" target="_blank">is available on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bkj6ag/monero_added_to_delta_exchange_derivative/" target="_blank">Monero added to Delta Exchange (not an endorsement)</a>
</h4>
</div>
<div class="newsbyte">
<h4>Monero Talk with Mohamed Fouda on Evaluating the Privacy Coin Space <a href="https://www.youtube.com/watch?v=shEygxdSqeo" target="_blank">is available on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bko08i/logs_from_yesterdays_meeting_of_the_monero/" target="_blank">Logs from Monero Localization Workgroup Meeting held on May 3, 2019 are posted</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.pinode.co.uk/monero-plug-and-play.html" target="_blank">PiNode has released an update with new options and an updated presync’d blockchain</a>
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date" markdown="1">May 11, 2019 (Saturday) – 17:00 UTC</p>
<p markdown="1">Community Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 13, 2019 (Monday) – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 14, 2019 (Tuesday) – 17:00 UTC</p>
<p markdown="1">Monero GUI Meeting</p>
</div>
<div class="event">
<p class="date">May 18, 2019 (Saturday) – 17:00 UTC</p>
<p>DefCon27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 19, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 23, 2019 (Thursday) – 17:00 UTC</p>
<p markdown="1">Tini2p Dev Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/65" target="_blank">Funding To Produce, Write And Record An Entirely Original Rap/Hip-Hop Anthem Exclusively For Monero</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/63" target="_blank">BtcPayServer Monero Integration</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/58" target="_blank">Monero currency and blockchain statistics hub</a></p>
</div>
<h3 id="proposals">CCS Proposals Need Funding</h3>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/midipoet-represent_Monero_at_the_Oslo_Freedom_Forum_2019.html" target="_blank">Monero representation at the Oslo Freedom Forum 2019</a> by midipoet</p>
<p>Raised <b>21.01 of 40.00</b> XMR (53%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/dsc-2019-q2.html" target="_blank">GUI UX coding (3 months)</a> by dsc</p>
<p>Raised <b>161 of 282.00</b> XMR (57%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/xiphon-part-time.html" target="_blank">Xiphon part time coding (3 months)</a> by xiphon</p>
<p>Raised <b>74.18 of 111.00</b> XMR (67%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/knueffelbund-gui-design-for-q2-2019.html" target="_blank">Knueffelbund GUI design for Q2 2019</a> by knueffelbund</p>
<p>Raised <b>31.56 of 37.00</b> XMR (85%)</p>
</div>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/ErCiccione-localizations.html" target="_blank">ErCiccione: Coordinator of the Localization Workgroup - March</a> by ErCiccione</p>
<p>Raised <b>51.50 of 144.00</b> XMR (36%)</p>
</div>
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1831097</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>327.214 MH/s</b></p>
<p>Average Tx per block: <b>16.14</b></p>
<p>Weekly Moving Average Tx per day: <b>11737</b></p>
<p>Block reward: <b>2.82 XMR</b></p>
</div>
<p class="note">Data taken on May 9, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0509.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,089,114,039</b><br>Localmonero.co Street Price: <b>$64.51</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>05/09/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="05/09/19">$64.17</td>
<td data-th="Week" class="red">-0.5%</td>
<td data-th="Month" class="red">-9.8.8%</td>
<td data-th="Year" class="red">-71.1%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="05/09/19">€57.31</td>
<td data-th="Week" class="red">-0.6%</td>
<td data-th="Month" class="red">-9.4%</td>
<td data-th="Year" class="red">-69.4%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="05/09/19">Ƀ0.01051846</td>
<td data-th="Week" class="red">-12.7%</td>
<td data-th="Month" class="red">-22.2%</td>
<td data-th="Year" class="red">-56.7%</td>
</tr>
</table>
<p class="note">Data taken on May 9, 2019</p>
<p class="table-title">XMR Price Graph for May 2 - May 9, 2019</p>
![XMR Price Graph 05/02/19-05/09/19](/img/weekly-chart-0509.png "XMR Price Graph 05/02/19-05/09/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="merchant">Monero-Accepting Non-Profit of the Week</h3>
<a href="https://magicgrants.org" target="_blank"><img src="/img/magic-logo.png" alt="MAGIC Logo" class="merchant-img" id="magic"></a>
<a href="https://magicgrants.org" target="_blank">Multidisciplinary Academic Grants in Cryptocurrencies (MAGIC)</a> is a non-profit that is focused on doing good in the world utilizing cryptocurrencies. Their mission includes such things as “providing undergraduate scholarships, research grants, and infrastructure grants, as well as hosting and participating in educational, scientific, or otherwise academic events.”
They accept donations in Monero and other cryptocurrencies via Globee.
<i>Check back next week for another merchant that accepts Monero for their goods and services.</i>
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<div class="newsbyte">
<p>If you know of any merchants or exchanges that are still using a long form payment ID, please let the community know so we can contact them and ask them to integrated addresses or subaddresses. Feel free to leave them in the comments of <a href="https://reddit.com/r/Monero/comments/bib6zq/list_of_services_using_long_payment_ids_a_call/" target="_blank">this Reddit thread</a>.</p>
</div>
<div class="newsbyte">
<p><a href="https://www.reddit.com/r/Monero/comments/b5fe5j/psa_seeking_volunteer_reviewers_for_pow_randomx/" target="_blank">Seeking Volunteer Reviewers for PoW RandomX</a></p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
</div>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 8&#58; May 9-16, 2019
issuenumber: 8
---
[<img src="/img/img-issue8.jpg" alt="Revuo Monero Weekly Issue 8 Image">]({% post_url 2019-05-16-issue-8 %}.html)
Revuo Monero Weekly: Week of May 9 - May 16, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#merchant">Monero Merchant of the Week</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4>RandomX, a <a href="https://www.reddit.com/r/Monero/comments/bmybxn/randomx_status_update/" target="_blank">Status Update</a> and community feedback needed for <a href="https://www.reddit.com/r/Monero/comments/bozr0z/randomx_auditor_selection/" target="_blank">Auditor Selection</a> (Super important! Please make your opinion known!)
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bosdwj/update_cake_wallet_version_319_is_now_live_with_a/" target="_blank">Cake Wallet version 3.1.9 is now live</a> with a new refreshed design, new accounts feature, better subaddresses management, and a new insta-exchange: ChangeNow
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reuters.com/article/us-crypto-currencies-altcoins-explainer/explainer-privacy-coin-monero-offers-near-total-anonymity-idUSKCN1SL0F0" target="_blank">Reuters published an article on Monero</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bonpt3/monero_outreach_round_2_ccs_final_report_see_what/" target="_blank">Monero Outreach Workgroup posted their Round 2 CCS Final Report</a>
</h4>
</div>
<div class="newsbyte">
<h4>Watch two new Breaking Monero Episodes on YouTube: <a href="https://youtu.be/-zJpvsj1rWE" target="_blank">Episode 12: Input/Output Metadata</a> and <a href="https://www.youtube.com/watch?v=_A6k4RQ-uIE" target="_blank">Episode 13: Blockchain Explorer OpSec</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://coincenter.org/entry/fincen-s-new-cryptocurrency-guidance-matches-coin-center-recommendations" target="_blank">FinCEN’s new cryptocurrency guidance matches Coin Center recommendations.</a> Multi-sig wallets, decentralized exchanges, and privacy protecting cryptocurrency developers are not regulated
</h4>
</div>
<div class="newsbyte">
<h4>Monero Talk with Binary Fate with Jeremie Dubois-Lacoste - <a href="https://youtu.be/j7oYXqcfXqU" target="_blank">available on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4>Magical Crypto Conference 2019 took place in NYC. Monero Talk recorded interviews with the conference visitors. The playlist is available <a href="https://www.youtube.com/playlist?list=PLfJ_JjSwYaa9JNWQ3vn9AR9eGjjWITEbf" target="_blank">on YouTube</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://flyp.me/en/#/" target="_blank">Flyp.me implemented sub-addresses to their crypto to crypto exchange without registration</a>
</h4>
</div>
<div class="newsbyte">
<h4>MyMonero and Urbane Security at Magical Crypto Con <a href="https://www.reddit.com/r/Monero/comments/bo3vml/mymonero_and_urbane_security_at_magical_crypto/" target="_blank">announced new web resource integrity protocol and browser plugin called SecureBrowse</a>, to eliminate risk of compromised JS
</h4>
</div>
<div class="newsbyte">
<h4>Monero mining pool server written in C update is <a href="https://www.reddit.com/r/Monero/comments/bnkyta/github_jtgrassiemoneropool_a_monero_mining_pool/
" target="_blank">available here</a>
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date">May 18, 2019 (Saturday) – 17:00 UTC</p>
<p>DefCon27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 19, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 20, 2019 (Monday) – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 21, 2019 (Tuesday) – 17:00 UTC</p>
<p markdown="1">Monero GUI Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 23, 2019 (Thursday) – 17:00 UTC</p>
<p markdown="1">Tini2p Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 25, 2019 (Saturday) – 17:00 UTC</p>
<p markdown="1">Community Workgroup Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/65" target="_blank">Funding To Produce, Write And Record An Entirely Original Rap/Hip-Hop Anthem Exclusively For Monero</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/63" target="_blank">BtcPayServer Monero Integration</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/58" target="_blank">Monero currency and blockchain statistics hub</a></p>
</div>
<h3 id="proposals">CCS Proposals Need Funding</h3>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/ErCiccione-localizations.html" target="_blank">ErCiccione: Coordinator of the Localization Workgroup - March</a> by ErCiccione</p>
<p>Raised <b>53.50 of 144.00</b> XMR (37%)</p>
</div>
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1836180</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>319.806 MH/s</b></p>
<p>Average Tx per block: <b>14.28</b></p>
<p>Weekly Moving Average Tx per day: <b>10206</b></p>
<p>Block reward: <b>2.79 XMR</b></p>
</div>
<p class="note">Data taken on May 16, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0516.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,467,467,016</b><br>Localmonero.co Street Price: <b>$87.19</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>05/16/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="05/16/19">$86.37</td>
<td data-th="Week" class="green">+29%</td>
<td data-th="Month" class="green">+34.7%</td>
<td data-th="Year" class="red">-57.6%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="05/16/19">€77.33</td>
<td data-th="Week" class="green">+29.2%</td>
<td data-th="Month" class="green">+36.3%</td>
<td data-th="Year" class="red">-55.1%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="05/16/19">Ƀ0.01096109</td>
<td data-th="Week" class="red">-2.6%</td>
<td data-th="Month" class="red">-13.7%</td>
<td data-th="Year" class="red">-54.4%</td>
</tr>
</table>
<p class="note">Data taken on May 16, 2019</p>
<p class="table-title">XMR Price Graph for May 10 - May 16, 2019</p>
![XMR Price Graph 05/09/19-05/16/19](/img/weekly-chart-0516.png "XMR Price Graph 05/09/19-05/16/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="merchant">Monero Merchant of the Week</h3>
<a href="https://www.azirevpn.com/" target="_blank"><img src="/img/og_azirevpn.png" alt="AzireVPN Logo" class="merchant-img" id="azirevpn"></a>
<a href="https://www.azirevpn.com/" target="_blank">AzireVPN</a> was founded in 2012 with the mission to become a market-leading VPN service to help people avoiding censorship and interception on the Internet. Since then, the service has been continuously developed to keep up to date with the latest technologies and VPN protocols.
They are Sweden-based, and support WireGuard, as well as being one of the few VPNs that do not require an email for sign up.
Also, for the first time ever on the Revuo, they have partnered with us to give Revuo readers access to an exclusive offer. Use the promo code **"monero4life"** to receive 20% off on the 1 and 3 month packages. Offer valid through the 1st of December, 2019.
<i>Check back next week for another merchant that accepts Monero for their goods and services.</i>
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<div class="newsbyte">
<p><a href="https://www.reddit.com/r/Monero/comments/bojcre/the_new_gui_for_the_next_release_is_ready_but_the/" target="_blank">Translators needed for the new GUI release</a>.</p>
</div>
<div class="newsbyte">
<p>If you know of any merchants or exchanges that are still using a long form payment ID, please let the community know so we can contact them and ask them to integrated addresses or subaddresses. Feel free to leave them in the comments of <a href="https://reddit.com/r/Monero/comments/bib6zq/list_of_services_using_long_payment_ids_a_call/" target="_blank">this Reddit thread</a>.</p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
</div>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file
---
title: Issue 9&#58; May 16-23, 2019
issuenumber: 9
---
[<img src="/img/img-issue9.jpg" alt="Revuo Monero Weekly Issue 9 Image">]({% post_url 2019-05-23-issue-9 %}.html)
Revuo Monero Weekly: Week of May 16 - May 23, 2019.
<!--more-->
<h3>Table of Contents:</h3>
<ul class="contents">
<li><a href="#news">Recent News</a></li>
<li><a href="#events">Upcoming Events</a></li>
<li><a href="#ideas">CCS Proposal Ideas</a></li>
<li><a href="#proposals">CCS Proposals Need Funding</a></li>
<li><a href="#stats">Price & Blockchain Stats</a></li>
<li><a href="#volunteer">Volunteer Opportunities</a></li>
<li><a href="#donate">Donate</a></li>
</ul>
<h3 id="news">Recent News</h3>
<div class="newsbyte">
<h4>The Monero Outreach Workgroup published <a href="https://www.monerooutreach.org/response-to-reuters.php" target="_blank">a response</a> to the <a href="https://www.reuters.com/article/us-crypto-currencies-altcoins-explainer/explainer-privacy-coin-monero-offers-near-total-anonymity-idUSKCN1SL0F0" target="_blank">Reuters article about Monero</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://www.reddit.com/r/Monero/comments/bpkuln/randomx_integration_in_monerod/" target="_blank">Full support for RandomX in monerod</a> is now available for testing/review/feedback
</h4>
</div>
<div class="newsbyte">
<h4>go-monero-rpc-client, a client for the Monero RPC (wallet and daemon) in golang, <a href="https://www.reddit.com/r/Monero/comments/bqtrj5/gomonerorpcclient_a_client_for_the_monero_rpc/" target="_blank">just joined the Monero Ecosystem project</a>
</h4>
</div>
<div class="newsbyte">
<h4>
<a href="https://www.reddit.com/r/Monero/comments/br0wzt/development_version_of_fully_opensourced_online/" target="_blank">Development version of fully open-sourced online Generic Monero Scanner is available for testing</a>
</h4>
</div>
<div class="newsbyte">
<h4><a href="https://itunes.apple.com/us/app/cake-wallet-for-xmr-monero/id1334702542?mt=8" target="_blank">Cake Wallet Version 3.1.11 available - the bug fix edition</a>
</h4>
</div>
<div class="newsbyte">
<h4>Minko’s beta launch promised to donate all proceeds from the first month to the general fund. The month has ended, and <a href="https://www.reddit.com/r/Monero/comments/br67pt/minko_1st_month_donation_sent/" target="_blank">Minko has donated 315 XMR to the general fund</a>.
</h4>
</div>
<h3 id="events">Upcoming Events</h3>
<div class="event">
<p class="date" markdown="1">May 25, 2019 (Saturday) – 17:00 UTC</p>
<p markdown="1">Community Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 27, 2019 (Monday) – 17:00 UTC</p>
<p markdown="1">Research Lab Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">May 28, 2019 (Tuesday) – 17:00 UTC</p>
<p markdown="1">Monero GUI Meeting</p>
</div>
<div class="event">
<p class="date">June 1, 2019 (Saturday) – 17:00 UTC</p>
<p>DefCon27 Workgroup Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">June 2, 2019 (Sunday) – 17:00 UTC</p>
<p markdown="1">Dev Meeting</p>
</div>
<div class="event">
<p class="date" markdown="1">june 6, 2019 (Thursday) – 17:00 UTC</p>
<p markdown="1">Tini2p Dev Meeting</p>
</div>
<h3 id="ideas">CCS Proposal Ideas</h3>
<p>Below you can find recent CCS proposal ideas open for discussion.</p>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/71" target="_blank">Monero DefCon 27 Supplies</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/70" target="_blank">Monero Outreach Round 3</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/69" target="_blank">DefCon 2019 Volunteer Reimbursement</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/62" target="_blank">New idea for ideas section: Rapida, fibre like thing for monero</a></p>
</div>
<div class="proposal">
<p><a href="https://repo.getmonero.org/monero-project/ccs-proposals/merge_requests/65" target="_blank">Funding To Produce, Write And Record An Entirely Original Rap/Hip-Hop Anthem Exclusively For Monero</a></p>
</div>
<h3 id="proposals">CCS Proposals Need Funding</h3>
<div class="proposal">
<p><a href="https://ccs.getmonero.org/proposals/RandomX-audit.html" target="_blank">RandomX Audits</a> by Howard Chu</p>
<p>Raised <b>1023.83 of 1400.00</b> XMR (73%)</p>
</div>
<h3 id="stats">Price & Blockchain Stats</h3>
<h4 class="stat">Blockchain Stats</h4>
<div class="bcstats">
<p>Block height: <b>1841115</b></p>
<p>Median block size: <b>292.97 kB</b></p>
<p>Hash rate: <b>282.618 MH/s</b></p>
<p>Average Tx per block: <b>14.85</b></p>
<p>Weekly Moving Average Tx per day: <b>10610</b></p>
<p>Block reward: <b>2.76 XMR</b></p>
</div>
<p class="note">Data taken on May 23, 2019</p>
<h4 class="stat">Hashrate Pool Distribution</h4>
<p><img src="/img/hashrate-pool-distribution-0523.png" alt="Hashrate Pool Distribution Pie Chart"/></p>
<h4 class="stat">Price & Performance</h4>
<div class="price-intro">XMR Market Cap: <b>$1,429,727,294</b><br>Localmonero.co Street Price: <b>$83.88</b></div>
<p class="table-title">Monero (XMR) Price</p>
<table class="price-table">
<tr class="row1">
<th>XMR to</th>
<th>05/23/19</th>
<th>Week</th>
<th>Month</th>
<th>Year</th>
</tr>
<tr>
<td data-th="XMR to">USD</td>
<td data-th="05/23/19">$84.02</td>
<td data-th="Week" class="red">-11.4%</td>
<td data-th="Month" class="green">+21.5%</td>
<td data-th="Year" class="red">-52.4%</td>
</tr>
<tr class="row3">
<td data-th="XMR to">EUR</td>
<td data-th="05/23/19">€74.98</td>
<td data-th="Week" class="red">-11.2%</td>
<td data-th="Month" class="green">+22.3%</td>
<td data-th="Year" class="red">-49.8%</td>
</tr>
<tr>
<td data-th="XMR to">BTC</td>
<td data-th="05/23/19">Ƀ0.01075545</td>
<td data-th="Week" class="red">-6.5%</td>
<td data-th="Month" class="red">-16.0%</td>
<td data-th="Year" class="red">-50.9%</td>
</tr>
</table>
<p class="note">Data taken on May 23, 2019</p>
<p class="table-title">XMR Price Graph for May 17 - May 23, 2019</p>
![XMR Price Graph 05/17/19-05/23/19](/img/weekly-chart-0523.png "XMR Price Graph 05/17/19-05/23/19")
Sources: <a href="https://community.xmr.to/explorer/mainnet/" target="_blank">community.xmr.to</a>, <a href="https://moneroblocks.info/stats/transaction-stats" target="_blank">moneroblocks.info</a>, <a href="https://minexmr.com/pools.html" target="_blank">minexmr.com</a>, <a href="https://bitinfocharts.com/monero/" target="_blank">bitinfocharts.com</a>, <a href="https://www.coingecko.com/" target="_blank">coingecko.com</a>, <a href="https://localmonero.co/" target="_blank">localmonero.co</a>
<h3 id="volunteer">Volunteer Opportunities</h3>
<p>If you want to get involved in making Monero better, but aren’t sure how, check out the volunteer opportunities below.</p>
<div class="newsbyte">
<p><a href="https://old.reddit.com/r/Monero/comments/bqhjw8/many_languages_of_the_gui_wallet_still_need_to_be/" target="_blank">Translators needed for the new GUI release</a>.</p>
</div>
<div class="newsbyte">
<p>If you know of any merchants or exchanges that are still using a long form payment ID, please let the community know so we can contact them and ask them to integrated addresses or subaddresses. Feel free to leave them in the comments of <a href="https://reddit.com/r/Monero/comments/bib6zq/list_of_services_using_long_payment_ids_a_call/" target="_blank">this Reddit thread</a>.</p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/i2p-zero/i2p-zero/releases" target="_blank">Test I2P-Zero</a></p>
<p>Download I2P Zero for your machine, follow the direction in the README, and report any issues to the Issue tracker on GitHub, or IRC channel #i2p-zero.</p>
</div>
<div class="newsbyte">
<p class="date"><a href="https://github.com/monero-project/monero" target="_blank">Test Monero Core Software</a></p>
<p>Anyone with moderate technical ability is encouraged to try to build and run Monero nightlies. Do not trust it with your Monero, but feel free to open an Issue on Github as problems arise. Instructions to build on your OS of choice can be found <a href="https://github.com/monero-project/monero#compiling-monero-from-source" target="_blank">on GitHub</a>. </p>
</div>
<h3 id="donate">Donate</h3>
<p markdown="1">If you enjoy this publication and want to support it, we encourage you to donate to the Monero General Fund, using the following address:</p>
<p class="address" markdown="1">44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A</p>
<!--p><a href="monero:44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A" class="qr"><img src="/img/donate-monero.png"></a></p-->
Comments, criticism, complaints or corrections? Please contact rehrar at **rehrar** at **tuta.io**. Say rehrar sent you.
\ No newline at end of file