- 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-customis 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 -
srccontains all the custom code written for this repo.serial_bridge_indexcontains 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_teststo 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/genXcodeProjto 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
developbranch, which gets merged tomasterfor tagged releases
-
💫
Paul ShapiroLead dev, maintainer -
🍄
luigi1111 -
🤵
vtnerdC++ & Monero advisory -
🐮
moneromooo-moneroMajor Monero contributor; Advisory -
🦁
ndorfC++ & Monero expertise, architecture, code contributions -
🏍
gutenyeCode contributions
If you want to embed the C++ or build the source in your own project, please take note of the following:
-
slow-hash.cmust 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_localas used bythreadpool.cpp. -
Not all Monero
.cppfiles which are inmonero-core-custommust be included formymonero-core-cpp- such as when their symbols are not required by any code called by this project. SeeCMakeLists.txtfor 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_msgif 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
uint64args likeindexs andamounts. -
Some boolean return values may be sent (by Boost) in JSON as strings instead, called
BoolStringbelow ( e.g."false"). -
Network type is sent as a string (
NettypeStringbelow), 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: StringORpub_spendKey_string: String,pub_viewKey_string: String,paymentID_string: String, andisSubaddress: Boolstring
is_subaddress
-
Args:
nettype_string: NettypeString,address: String -
Returns:
err_msg: StringORretVal: Boolstring
is_integrated_address
-
Args:
nettype_string: NettypeString,address: String -
Returns:
err_msg: StringORretVal: Boolstring
newly_created_wallet
-
Args:
nettype_string: NettypeString,locale_language_code: String -
Returns:
err_msg: StringORmnemonic_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: StringORretVal: Boolstring
mnemonic_from_seed
-
Args:
seed_string: Stringwordset_name: WordsetNameStringreturned asmnemonic_languagebyseed_and_keys_from_mnemonicandnewly_created_wallet
-
Returns:
err_msg: StringORretVal: String
seed_and_keys_from_mnemonic
-
Args:
nettype_string: NettypeString,mnemonic_string: String -
Returns:
err_msg: StringORmnemonic_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: StringORpub_spendKey_string: String,pub_viewKey_string: String,isInViewOnlyMode: Boolstring, andisValid: Boolstring
address_and_keys_from_seed
-
AKA
create_addressin legacy mymonero-core-js -
Args:
nettype_string: NettypeString,seed_string: String -
Returns:
err_msg: StringORaddress_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: StringORretVal: String
new_payment_id
-
Args: empty object
-
Returns:
err_msg: StringORretVal: 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: StringORretVal: String
estimated_tx_network_fee
Useful for displaying an estimated fee – To obtain exact fees, see "Creating and Sending Transactions"
-
Args:
fee_per_b: UInt64Stringpriority: UInt32Stringfork_version: UInt8String
-
Returns:
retVal: UInt64String