Assemble at the Start Line. The Beta is About to Begin

but the task manager does not show the exchange on the network for node-launchpad, and there are also no background safenet processes in it…

but there were background processes the previous time…

How about safenode processes?

yes, I mean them - safe mode, I wrote it wrong here…

passing 10 k !!!

19 Likes

3 Likes

*13,000

:wink:

11 Likes

Lol. But there is no $13000 bill.

2 Likes

It’s remarkable how easy it is for my laptop to run nodes now that the churning is not so intense.

I’m tempted to try to max out my system, but there does not seem to be a way to stop the nodes in smaller batches, or is there? I wouldn’t want to stop them all right away, should some problems arise. :thinking:

1 Like

Where such information is published?
Is it available only to Discord users or some command executed locally can show such results?

Not at the moment. Just discussing the possibility of having it in a bot, but it’s just an internal dash at the moment.

1 Like

But not so easy to get rewards.
Which means problem with upload testing by regular users.
Did anyone besides developers uploaded something?

Trying to install safeup with sudo on Ubuntu pro as Fedora OS got bricked a few days ago when tried to upgrade.
Does
curl -sSL https://raw.githubusercontent.com/maidsafe/safeup/main/install.sh | sudo bash
don’t download safeup-tar-gz or what is going on?

Not at the moment with the node-launcher. The best you can do is reduce the Resources to the number of nodes you want. But that will totally remove the nodes and their earnings that haven’t been set to MaidSafe.

With safenode-manager you can stop individual nodes with eg:-

sudo ~/.local/bin/safenode-manager stop --service-name safenode40

My launchpad has a few stuck nodes that are just “added”, if I install the safe node manager can I use that to start the stuck nodes?

I doubt many noderunners have uploaded anything yet. With no faucet they’d have had to receive some nanos and transfer them to another wallet and that is fiddly and likely to mess something up. And most people in Wave 1 will be sending whatever they earn to MaidSafe to get rewarded through the reward program. MaidSafe and partners will be putting data into the network.

1 Like

I wonder how many nodes and hours of waiting are needed for that.
My single node is running for 1 hour and got records (73) only at the start (during replication maybe?).
No new records means no chances for rewards if I understand it correctly.

so far iv farmed 50 nano’s i need 200 to upload old begblag on 70 nodes not sending in there rewards

2 Likes

Have you figured out how to collect and spend them?

1 Like

its a bit ruff @happybeing but here is a script for collecting nanos into the main wallet.

its for nodes running with sudo safenode-manager.

once the nodes are in the normal client wallet coins are good to go for transfers and uploads

#!/bin/bash

# Environment setup
export PATH=$PATH:$HOME/.local/bin
base_dir="/var/safenode-manager/services"

safe wallet address

wallet_address=$(safe wallet address | awk 'NR==3{print $1}')

echo "$wallet_address"

# Process nodes
for dir in "$base_dir"/*; do
    if [[ -f "$dir/safenode.pid" ]]; then
        dir_name=$(basename "$dir")
        node_number=${dir_name#safenode}
        rewards_balance=$(safe wallet balance --peer-id /var/safenode-manager/services/safenode$node_number | awk 'NR==3{print $7}')

                echo ""
                echo "$dir_name"
                echo "$rewards_balance"
                echo ""
				echo ""

        if (( $(echo "$rewards_balance > 0.000000000" |bc -l) )); then
                echo "has nanos"
				
				#move wallets to initiate a transfer
				sudo env "PATH=$PATH" safenode-manager stop --service-name "$dir_name"
				mv $HOME/.local/share/safe/client/wallet $HOME/.local/share/safe/client/wallet-backup
				sudo mv /var/safenode-manager/services/safenode$node_number/wallet/ $HOME/.local/share/safe/client/
				sudo chown -R "$USER":"$USER" $HOME/.local/share/safe/client/wallet
				
				node_balance=$(safe wallet balance | awk 'NR==3{print $1}')
				echo ""
				echo " node wallet transfered balance:$node_balance"
				echo ""
				
				#send rewards from node wallet to main wallet address
				deposit=$(safe wallet send $node_balance $wallet_address | awk 'NR==10{print $1}')
				echo ""
				echo "$deposit"
				echo ""
				
				#move wallets back to original location
				sudo mv $HOME/.local/share/safe/client/wallet /var/safenode-manager/services/safenode$node_number/
				mv $HOME/.local/share/safe/client/wallet-backup $HOME/.local/share/safe/client/wallet
				sudo chown -R safe:safe /var/safenode-manager/services/safenode$node_number/wallet
				sudo env "PATH=$PATH" safenode-manager start --service-name "$dir_name"
				
				safe wallet receive "$deposit"
				safe wallet balance
				
		fi
    fi
done
3 Likes

iv got 70 nodes earning for coins once iv got beg blag up ill get some together for you

1 Like