Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ProsusCorp/ProsusMoney
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.8.4
Choose a base ref
...
head repository: ProsusCorp/ProsusMoney
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 3 files changed
  • 2 contributors

Commits on May 16, 2021

  1. Update WalletRpcServer.cpp

    yerkobits authored May 16, 2021
    Copy the full SHA
    19c8213 View commit details

Commits on Jun 23, 2021

  1. Copy the full SHA
    c9fba02 View commit details

Commits on Jun 28, 2021

  1. Update README.md

    yerkobits authored Jun 28, 2021
    Copy the full SHA
    6ed7b08 View commit details

Commits on Nov 5, 2021

  1. logo 2022

    yerkobits authored Nov 5, 2021
    Copy the full SHA
    92a46da View commit details

Commits on Nov 8, 2021

  1. Telegram URL

    yerkobits authored Nov 8, 2021
    Copy the full SHA
    c9b905d View commit details

Commits on Feb 22, 2022

  1. Update README.md

    yerkobits authored Feb 22, 2022
    Copy the full SHA
    23cb0ae View commit details

Commits on Jun 3, 2022

  1. Update README.md

    yerkobits authored Jun 3, 2022
    Copy the full SHA
    2ee2c71 View commit details

Commits on Mar 29, 2023

  1. Updated instructions to install Boost 1.55

    Boost 1.55 is no longer distributed with Ubuntu
    driquelme authored and yerkobits committed Mar 29, 2023
    Copy the full SHA
    0575e76 View commit details
Showing with 12 additions and 19 deletions.
  1. +2 −8 BUILD.md
  2. +7 −8 README.md
  3. +3 −3 cli/src/Wallet/WalletRpcServer.cpp
10 changes: 2 additions & 8 deletions BUILD.md
Original file line number Diff line number Diff line change
@@ -18,13 +18,7 @@ make
----
## 1.2 💾 Build on Debian/Ubuntu

If you don't have the Source repositories (Which is the Ubuntu Default) installed, you should execute:

This is the repository for the C libboost libraries, needed to compile.

```
sudo add-apt-repository -s 'deb http://us.archive.ubuntu.com/ubuntu/ $(lsb_release -sc) universe'
```
Boost 1.55 needs to be installed from source following the directions in this [page](https://www.boost.org/doc/libs/1_55_0/more/getting_started/unix-variants.html).

Now we need like 300MB of the QT Graphical interface libraries

@@ -37,7 +31,7 @@ Then, do the following:
(sudo)
apt-get update
apt-get upgrade
apt-get install build-essential git cmake libboost-all-dev
apt-get install build-essential git cmake
git clone https://github.com/ProsusCorp/prosus.money.git
```

15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

# PROSUS MONEY

<img src="http://prosus.money/wp-content/uploads/2021/03/splash.png">
<img src="https://prosusmoney.cl/wp-content/uploads/2021/10/prosus-criptomoneda-chilena.png">

Cryptocurrency created in Chile (2016) as a means of payment, focused on training users without technical knowledge. Low hardware requirement. This project promote a future resource-based economy.
Prosus Money is a cryptocurrency for R&D, founded in Chile in 2015. It stands out for its constant evolution and adaptation to the new needs of its user community.

The Prosus Money ticker symbol is **xPR** or **PROSUS** .

@@ -40,15 +40,14 @@ make

----
## :star: Official web sites
* [Home](http://prosus.money)
* [Home](https://prosusmoney.cl)
* [Block Explorer](http://explorer.prosus.money)
* [Docs](http://wiki.prosus.money)
* [Smart Energy Project](http://prosus.energy)
* [Research and Technological Development](http://prosuscorp.com)

## :family: Community
* [Facebook](https://www.facebook.com/groups/prosus.money)
* [Telegram](https://t.me/prosus_money)
* [Telegram (español)](https://t.me/prosus)
* [Discord](https://discord.com/channels/395402947971776515/713085376209616907)
* [Facebook](https://www.facebook.com/groups/prosusmoney)
* [Telegram](https://t.me/prosus)
* [Telegram (español)](https://t.me/prosusmoney)
* [Discord](https://discord.com/channels/748936986328301638/748981559599824998)
* [Marketplace](https://prosus.dinova.cl)
6 changes: 3 additions & 3 deletions cli/src/Wallet/WalletRpcServer.cpp
Original file line number Diff line number Diff line change
@@ -128,15 +128,15 @@ void wallet_rpc_server::processRequest(const CryptoNote::HttpRequest& request, C
{
{ "getbalance" , makeMemberMethod(&wallet_rpc_server::on_getbalance) },
{ "transfer" , makeMemberMethod(&wallet_rpc_server::on_transfer) },
{ "store" , makeMemberMethod(&wallet_rpc_server::on_store) },
{ "store" , makeMemberMethod(&wallet_rpc_server::on_store) },
{ "stop_wallet" , makeMemberMethod(&wallet_rpc_server::on_stop_wallet) },
{ "get_payments" , makeMemberMethod(&wallet_rpc_server::on_get_payments) },
{ "get_transfers" , makeMemberMethod(&wallet_rpc_server::on_get_transfers) },
{ "get_transaction", makeMemberMethod(&wallet_rpc_server::on_get_transaction) },
{ "get_transaction", makeMemberMethod(&wallet_rpc_server::on_get_transaction) },
{ "get_height" , makeMemberMethod(&wallet_rpc_server::on_get_height) },
{ "get_address" , makeMemberMethod(&wallet_rpc_server::on_get_address) },
{ "query_key" , makeMemberMethod(&wallet_rpc_server::on_query_key) },
{ "reset" , makeMemberMethod(&wallet_rpc_server::on_reset) },
{ "reset" , makeMemberMethod(&wallet_rpc_server::on_reset) },
{ "get_paymentid" , makeMemberMethod(&wallet_rpc_server::on_gen_paymentid) },
};