You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
moneroexamples fa4707c084
RealInputsToSubaddress test added
5 years ago
cmake use INTERFACE_INCLUDE_DIRECTORIES 5 years ago
ext first commit 6 years ago
src Handling subaddresses added to RealInput 5 years ago
tests RealInputsToSubaddress test added 5 years ago
.gitignore mocks.h updated 6 years ago
.gitmodules first commit 6 years ago
CMakeLists.txt BUILD_INTERFACE added 5 years ago
LICENSE first commit 6 years ago
README.md readme updated 5 years ago
main.cpp add monero version 5 years ago

README.md

Core moneroexamples repositry

This repository includes code that is oftenly used among moneroexamples projects. It includes:

  • classess for decoding outputs/inputs, payment ids
  • general utility tools (e.g., get default monero blockchain path)
  • unified representation of monero addresses/accounts
  • identification of outputs for subaddresses based on primary address

Monero download and compilation

Follow instructions in the following link:

https://github.com/moneroexamples/monero-compilation/blob/master/README.md

Compilation of the xmregcore

C++14 is required to run this code.


# go to home folder if still in ~/monero
cd ~

git clone --recurse-submodules  https://github.com/moneroexamples/xmregcore.git

cd xmregcore

mkdir build && cd build

cmake ..

# altearnatively can use cmake -DMONERO_DIR=/path/to/monero_folder ..
# if monero is not in ~/monero

make

# run tests
make test

Other examples

Other examples can be found on github. Please know that some of the examples/repositories are not finished and may not work as intended.

How can you help?

Constructive criticism, code and website edits are always good. They can be made through github.