update monero version

This commit is contained in:
creating2morrow 2023-10-29 18:38:36 -04:00
parent 3a68e9c774
commit 27507a659c
5 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View file

@ -10,6 +10,6 @@ notes.txt
.vscode/settings.json .vscode/settings.json
*.bz2 *.bz2
*.zip *.zip
*/monero-x86_64-linux-gnu-v0.18.2.2/** */monero-x86_64-linux-gnu-v0.18.3.1/**
*/i2p-zero-linux.v1.20/** */i2p-zero-linux.v1.20/**
*.jar *.jar

View file

@ -26,12 +26,12 @@ NEVidebla-EKOnomia (invisible economy)
* `git clone https://github.com/creating2morrow/neveko` * `git clone https://github.com/creating2morrow/neveko`
* `cd neveko && ./scripts/build_all_and_run.sh "-- -h"` * `cd neveko && ./scripts/build_all_and_run.sh "-- -h"`
* Example to start neveko with remote stagenet node / i2p proxy remote for development: * Example to start neveko with remote stagenet node / i2p proxy remote for development:
* `./scripts/build_all_and_run.sh "-- --monero-location /home/user/monero-x86_64-linux-gnu-v0.18.2.2 --monero-rpc-host http://127.0.0.1:38083 --monero-rpc-daemon http://xmr3kaacphwkk4z2gp35bdl47lrrnzimmyqj4oliauqrjzqecofa.b32.i2p:38081 --monero-rpc-username user --monero-rpc-cred pass --remote-node --i2p-advanced --i2p-tunnels-json /home/user/neveko/i2p-manual/config --i2p-proxy-host http://x.x.x.x:xxxx --i2p-socks-proxy-host http://x.x.x.x:xxxx"` * `./scripts/build_all_and_run.sh "-- --monero-location /home/user/monero-x86_64-linux-gnu-v0.18.3.1 --monero-rpc-host http://127.0.0.1:38083 --monero-rpc-daemon http://xmr3kaacphwkk4z2gp35bdl47lrrnzimmyqj4oliauqrjzqecofa.b32.i2p:38081 --monero-rpc-username user --monero-rpc-cred pass --remote-node --i2p-advanced --i2p-tunnels-json /home/user/neveko/i2p-manual/config --i2p-proxy-host http://x.x.x.x:xxxx --i2p-socks-proxy-host http://x.x.x.x:xxxx"`
* the `--monero-location` flag is needed even when using a remote node because * the `--monero-location` flag is needed even when using a remote node because
neveko has its own monero-wallet-rpc instance neveko has its own monero-wallet-rpc instance
* remote nodes are forced over the `--i2p-proxy-host` * remote nodes are forced over the `--i2p-proxy-host`
* Recommended neveko-core startup with full node and i2p-zero locally running: * Recommended neveko-core startup with full node and i2p-zero locally running:
* ` ./scripts/build_all_and_run.sh "-- --monero-blockchain-dir=/home/user/.bitmonero --monero-location /home/user/monero-x86_64-linux-gnu-v0.18.2.2 --i2p-zero-dir /home/user/i2p-zero-linux.v1.21/ --monero-blockchain-dir /home/user/.bitmonero"` * ` ./scripts/build_all_and_run.sh "-- --monero-blockchain-dir=/home/user/.bitmonero --monero-location /home/user/monero-x86_64-linux-gnu-v0.18.3.1 --i2p-zero-dir /home/user/i2p-zero-linux.v1.21/ --monero-blockchain-dir /home/user/.bitmonero"`
* monerod doesn't need to be running because neveko will start it and monero-wallet-rpc * monerod doesn't need to be running because neveko will start it and monero-wallet-rpc
* gui will automatically detect monerod, rpc and i2p-zero if neveko core is started first * gui will automatically detect monerod, rpc and i2p-zero if neveko core is started first
* Neveko doesn't write logs to file. Use the command below to write to a log file: * Neveko doesn't write logs to file. Use the command below to write to a log file:

View file

@ -16,7 +16,7 @@ pub struct Args {
#[arg( #[arg(
long, long,
help = "Monero download absolute path.", help = "Monero download absolute path.",
default_value = "monero-x86_64-linux-gnu-v0.18.2.2" default_value = "monero-x86_64-linux-gnu-v0.18.3.1"
)] )]
pub monero_location: String, pub monero_location: String,
/// Monero RPC host /// Monero RPC host

View file

@ -56,9 +56,9 @@ pub const GUI_REMOTE_NODE: &str = "GUI_REMOTE_NODE";
pub const GUI_SET_REMOTE_NODE: &str = "1"; pub const GUI_SET_REMOTE_NODE: &str = "1";
/// The latest monero release download /// The latest monero release download
pub const MONERO_RELEASE_VERSION: &str = "monero-linux-x64-v0.18.2.2.tar.bz2"; pub const MONERO_RELEASE_VERSION: &str = "monero-linux-x64-v0.18.3.1.tar.bz2";
pub const MONERO_RELEASE_HASH: &str = pub const MONERO_RELEASE_HASH: &str =
"186800de18f67cca8475ce392168aabeb5709a8f8058b0f7919d7c693786d56b"; "23af572fdfe3459b9ab97e2e9aa7e3c11021c955d6064b801a27d7e8c21ae09d";
/// The latest i2p-zero release version /// The latest i2p-zero release version
pub const I2P_ZERO_RELEASE_VERSION: &str = "v1.21"; pub const I2P_ZERO_RELEASE_VERSION: &str = "v1.21";
pub const I2P_ZERO_RELEASH_HASH: &str = pub const I2P_ZERO_RELEASH_HASH: &str =

View file

@ -113,7 +113,7 @@ impl Default for Connections {
is_remote_node: false, is_remote_node: false,
is_i2p_advanced: false, is_i2p_advanced: false,
mainnet: false, mainnet: false,
monero_location: String::from("/home/user/monero-x86_64-linux-gnu-v0.18.2.2"), monero_location: String::from("/home/user/monero-x86_64-linux-gnu-v0.18.3.1"),
rpc_credential: String::from("pass"), rpc_credential: String::from("pass"),
rpc_username: String::from("user"), rpc_username: String::from("user"),
rpc_host: String::from("http://127.0.0.1:38083"), rpc_host: String::from("http://127.0.0.1:38083"),