- What's in this Repo?
- Setup
- Usage
- Testing
- Pull Requests
- Developing
- Contributors
- Embedding the C++
- API
This repository holds the C++ source code for the Monero/CryptoNote cryptography and protocols, plus lightwallet functions which power the official MyMonero apps.
A primary goal for this repository is its future convergence and reimplementation with an essential Monero core library.
-
contrib/monero-core-custom
is a Git submodule which contains a curated subset of the official Monero C/C++ source code, eventually to be replaced by new official Monero core repo -
src
contains all the custom code written for this repo.serial_bridge_index
contains a central JSON interface to a set of central mymonero-core functions, documented below.
-
This readme is located at
README.md
, and the license is located atLICENSE.txt
. All source code copyright © 2014-2018 by MyMonero. All rights reserved.
-
(to use included shell scripts) cmake
-
Boost 1.58 library components
-
system
-
thread
-
If running tests:
unit_test_framework
-
-
monero-core-custom
(see "Setup")
- Run
bin/update_submodules
Simply embed the relevant code in your application, generally via CMake. See CMakeLists.txt
for required files.
One example usage of this code is its transpilation into wasm and JS by mymonero-core-js.
- Run
bin/buildAndRun_tests
to execute Boost test cases.
Please submit any bugs as Issues unless they have already been reported.
Suggestions and feedback are very welcome!
We'll merge nearly anything constructive and relevant. There are lots of items slated for development or happening concurrently, so get in touch and we'll let you know if anyone's working on it. We often collaborate over IRC in #mymonero on Freenode.
Contributors credited in releases.
All development happens off the develop
branch like the Gitflow Workflow.
-
If you use a Mac and want to develop within Xcode, run
bin/genXcodeProj
to generate./xcode/TEST.xcodeproj
. Once opened, its build target can be switched from ALL_BUILD to test_all, from which a Build & Run will display test results in the console. -
Branches and PRs should be made from and to the
develop
branch, which gets merged tomaster
for tagged releases
-
💫
Paul Shapiro
Lead dev, maintainer -
🍄
luigi1111
-
🤵
vtnerd
C++ & Monero advisory -
🐮
moneromooo-monero
Major Monero contributor; Advisory -
🦁
ndorf
C++ & Monero expertise, architecture, code contributions -
🏍
gutenye
Code contributions
If you want to embed the C++ or build the source in your own project, please take note of the following:
-
slow-hash.c
must be compiled with-maes
-
The Monero source, a slightly modified version of which is a dep of this project, can only be built on versions of iOS >= 9 due to required support for
thread_local
as used bythreadpool.cpp
. -
Not all Monero
.cpp
files which are inmonero-core-custom
must be included formymonero-core-cpp
- such as when their symbols are not required by any code called by this project. SeeCMakeLists.txt
for a list of files required for compilation. -
If you only want to call the C++ directly without using
serial_bridge_index
(described below), then that file-pair does not need to be included in your build. (See mymonero-app-ios link)
- If you are implementing the below-described Send routine yourself (examples: JS, Swift), you should:
- implement the necessary re-entry logic if step2 indicates reconstruction required, and
- (optional) construct the
err_msg
if the error code indicates not enough spendable balance.
Coming soon
For examples see src/serial_bridge_index.cpp
and mymonero-app-ios/MyMoneroCore_ObjCpp.mm.
src/serial_bridge_index
exposes this project's core library functions. Each bridge function takes a string-serialized JSON object as an argument and returns a string-serialized JSON object.
Usage of each of these JSON-bridge functions is demonstrated in tests/test_all.cpp
.
When they fail, some of these functions return only a key-value err_msg
.
-
Some args must be passed as strings, such as
uint64
args likeindex
s andamount
s. -
Some boolean return values may be sent (by Boost) in JSON as strings instead, called
BoolString
below ( e.g."false"
). -
Network type is sent as a string (
NettypeString
below), which can be obtained viaserial_bridge::string_from_nettype()
.
Compressing / reducing size of key names could be a significant optimization, as could a migration to msgpack.
decode_address
-
Args:
nettype_string: NettypeString
,address: String
-
Returns:
err_msg: String
ORpub_spendKey_string: String
,pub_viewKey_string: String
,paymentID_string: String
, andisSubaddress: Boolstring
is_subaddress
-
Args:
nettype_string: NettypeString
,address: String
-
Returns:
err_msg: String
ORretVal: Boolstring
is_integrated_address
-
Args:
nettype_string: NettypeString
,address: String
-
Returns:
err_msg: String
ORretVal: Boolstring
newly_created_wallet
-
Args:
nettype_string: NettypeString
,locale_language_code: String
-
Returns:
err_msg: String
ORmnemonic_string: String
,mnemonic_language: WordsetNameString
,sec_seed_string: String
,address_string: String
,pub_spendKey_string: String
,pub_viewKey_string: String
,sec_viewKey_string: String
, andsec_spendKey_string: String
are_equal_mnemonics
-
Args:
a: String
,b: String
-
Returns:
err_msg: String
ORretVal: Boolstring
mnemonic_from_seed
-
Args:
seed_string: String
wordset_name: WordsetNameString
returned asmnemonic_language
byseed_and_keys_from_mnemonic
andnewly_created_wallet
-
Returns:
err_msg: String
ORretVal: String
seed_and_keys_from_mnemonic
-
Args:
nettype_string: NettypeString
,mnemonic_string: String
-
Returns:
err_msg: String
ORmnemonic_language: WordsetNameString
,sec_seed_string: String
,address_string: String
,pub_spendKey_string: String
,pub_viewKey_string: String
,sec_viewKey_string: String
, andsec_spendKey_string: String
validate_components_for_login
-
Args:
nettype_string: NettypeString
,address_string: String
,sec_viewKey_string: String
,sec_spendKey_string: Optional<String>
,seed_string: Optional<String>
-
Returns:
err_msg: String
ORpub_spendKey_string: String
,pub_viewKey_string: String
,isInViewOnlyMode: Boolstring
, andisValid: Boolstring
address_and_keys_from_seed
-
AKA
create_address
in legacy mymonero-core-js -
Args:
nettype_string: NettypeString
,seed_string: String
-
Returns:
err_msg: String
ORaddress_string: String
,pub_spendKey_string: String
,pub_viewKey_string: String
,sec_viewKey_string: String
, andsec_spendKey_string: String
new_integrated_address
-
Args:
nettype_string: NettypeString
,short_pid: String
,address: String
-
Returns:
err_msg: String
ORretVal: String
new_payment_id
-
Args: empty object
-
Returns:
err_msg: String
ORretVal: String
generate_key_image
-
Args:
sec_viewKey_string: String
,sec_spendKey_string: String
,pub_spendKey_string: String
,tx_pub_key: String
,out_index: UInt32String
-
Returns:
err_msg: String
ORretVal: String
estimated_tx_network_fee
Useful for displaying an estimated fee – To obtain exact fees, see "Creating and Sending Transactions"
-
Args:
fee_per_b: UInt64String
priority: UInt32String
fork_version: UInt8String
-
Returns:
retVal: UInt64String