NewYearNewNet [04/01/2024 Testnet] [Offline]

We’re quite happy with how ZeroNet went. With nodes running smoothly, and some client/faucet issues highlighted and acted upon, we’re hoping for a similar showing this time round.

Indeed, the nodes themselves were so cool, this time round we’re trying twice as many nodes per droplet, i.e. 40 nodes per droplet. This may well change things/cause some issues, but it will be good to find out exactly what’s possible here.

Another important change is that clients no longer publish the DataMap by default. This means that you’re not forced into making your data public (as the final data maps, being small data, may not be encrypted; please see below for more info there!).

Instead clients now have a -p flag to publish the DataMaps optionally. If you’re wanting to share your data, this will be needed to be added to any scripts you might have.

Other changes:

  • Transaction progression now checks previous spends have been stored, and will otherwise try and resend transactions.
  • Data is verified by clients via a hashing system as opposed to requesting the full data.
  • The pricing algo has been tweaked and goes off of the new tests we have. It aims to ensure nodes adjust price depending on how many records they’ve had in, so more nodes should get paid sooner here, and price variation should be reduced :crossed_fingers:

A note for testers:

Just to highlight for folk (as the question has cropped up in other threads), encryption of files is a client side endeavour, and right now there is a lower limit on what can be encrypted. So small files are not yet encrypted as things stand.

This also means that the DataMaps, which are used to know where all the self-encrypted chunks of a file live, may not be encrypted. So be careful using the publish option with your data (-p).

And finally, registers are currently not encrypted at all. We’re looking at ways to improve UX and allow for encryption there too.

Network Details

Node version: 0.100.36
Client version: 0.86.90
Faucet url: 134.209.21.136:8000

We have 51 droplets running a total of 2001 nodes. One droplet has 2vcpu and 4GB of memory.


If you are a regular user, see the ‘quickstart’ section for getting up and running.

If you are a first-time user, or would like more information, see the ‘further information’ section.


Quickstart

If you already have safeup, you can obtain the client and node binaries:

safeup client --version 0.86.90
safeup node --version 0.100.36

Run a Node

Linux/macOS:

safenode

Windows:

safenode

Check local node’s reward balance

Your local node’s peer id will be printed to the terminal on startup with an example command). (You can also retrieve this from the node directory.)

safe wallet balance --peer-id="<local-node-peer-id>"

Connect to the Network as a Client

Linux/macOS:

safe wallet get-faucet 134.209.21.136:8000
safe files upload <directory-path>

Windows:

safe wallet get-faucet 134.209.21.136:8000
safe files upload <directory-path>

To do this with non-default batch-sizes (along with SAFE_PEERS set as above):

safe files upload --batch-size 40 <directory-path> 

40 being the integer value you want to set

To do this and make the files publicly accessible

safe files upload -p  <directory-path> 

Further Information

You can participate in the testnet either by connecting as a client or running your own node.

Connecting as a client requires the safe client binary; running a node requires the safenode binary.

Obtaining Binaries

We have a tool named safeup which is intended to make it easy to obtain the client, node, and other utility binaries.

Installing Safeup

On Linux/macOS, run the following command in your terminal:

curl -sSL https://raw.githubusercontent.com/maidsafe/safeup/main/install.sh | bash

On Windows, run the following command in a Powershell session (be careful to use Powershell, not cmd.exe):

iex (Invoke-RestMethod -Uri "https://raw.githubusercontent.com/maidsafe/safeup/main/install.ps1")

On either platform, you may need to restart your shell session for safeup to become available.

Installing Binaries

After obtaining safeup, you can install binaries like so:

safeup client # get the latest version of the client
safeup client --version 0.86.90 # get a specific version

safeup node # get the latest version of the node
safeup node --version 0.100.36 # get a specific version

safeup update # update all installed components to latest versions

When participating in our testnets, it is recommended to use a specific version. In our project we release a new version of the binaries every time we merge new code. This happens frequently, so over the lifetime of a testnet, many new releases will probably occur. So for participating in this particular testnet, you may not want the latest version.

The binaries are installed to ~/.local/bin on Linux and macOS, and on Windows they go to C:\Users\<username>\safe. Windows doesn’t really have a standard location for binaries that doesn’t require elevated privileges.

The safeup tool will modify the PATH variable on Linux/macOS, or the user Path variable on Windows. The effect of this is that the installed binaries will then become available in your shell without having to refer to them with their full paths. However, if you’re installing for the first time, you may need to start a new shell session for this change to be picked up.

Running a Node

You can participate in the testnet by running your own node. At the moment, you may not be successful if you’re running the node from your home machine. This is a situation we are working on. If you run from a cloud provider like Digital Ocean or AWS, you should be able to participate.

You can run the node process like so:

# Linux/macOS
safenode

# Windows
safenode

This will output all the logs to the filesystem, with the location of logs being platform specific:

# Linux
~/.local/share/safe/node/<peer id>/logs

# macOS
/Users/<username>/Library/Application Support/safe/node/<peer id>/logs

# Windows
C:\Users\<username>\AppData\Roaming\safe\node\<peer-id>\logs

If you wish, you can also provide your own path:

# Linux/macOS
SN_LOG=all safenode --log-output-dest <path>

# Windows
$env:SN_LOG = "all"; safenode --log-output-dest <path>

The advantage of using the predefined data-dir location is you can run multiple nodes on one machine without having to specify your own unique path for each node and manage that overhead yourself.

Connecting as a Client

You can use the safe client binary to connect as a client and upload or download files to/from the network.

Using the Client

You’ll first need to get some Safe Network Tokens:

safe wallet get-faucet 134.209.21.136:8000

You can now proceed to use the client, by, e.g., uploading files:

safe files upload <directory-path>

To obtain a network address you can use for sharing data, ensure you publish your data with the -p flag.

safe file upload -p [directory/filename] <directory-path>

To download that same content:

safe files download

This will download the files to the default location, which is platform specific:

# Linux
~/.local/share/safe/client/downloaded_files

# macOS
/Users/<username>/Library/Application Support/safe/client/downloaded_files

# Windows
C:\Users\<username>\AppData\Roaming\safe\client\downloaded_files

To download to a particular file or directory:

safe file download [directory/filename] [NetworkAddress]

Troubleshooting

Cleanup

If you’ve used previous versions of the network before and you find problems when running commands, you may want to consider clearing out previous data (worthless DBCs from previous runs, old logs, old keys, etc.).

# Linux
rm -rf ~/.local/share/safe

# macOS
rm -rf ~/Library/Application\ Support/safe

# Windows
rmdir /s C:\Users\<username>\AppData\Roaming\safe

If you encounter a problem running any of our binaries on Windows, it’s possible you need the Visual C++ Redistributable installed.

37 Likes

First wohooo :tada:

18 Likes

Second be joining the fun soon

14 Likes

Only nodedrunners should claim a :trophy:


:wink:

15 Likes

Can anyone give screenshot?
I see short ChunkAddress(b996f1) and that’s it.
Should be larger, no? :man_facepalming:

3 Likes

Two big changes for me so far already, on the client side over my mobile broadband hotspot:

  • for this and the preceding testnet safeup worked flawlessly. It’s been a long while since that’s happened cc @chriso :clap:
  • first time success uploading a significant, only 6.6M but 365 files which I wasn’t able to upload with ZeroNet.

Some strangeness though:

  • the upload claimed 5 chunks were already present on the network which seems unlikely. @joshuef
  • BUG?: I’m not sure if this is a bug, but Ctrl-\ (correctly) sends SIGQUIT which causes safe to dump core, which can corrupt the wallet.
16 Likes

I forgot to add to the OP (just seen a note on it in the pre dev update thread): the pricing algo has been tweaked and goes off of the new tests we have. It aims to ensure nodes adjust price depending on how many records they’ve had in, so more nodes should get paid sooner here, and price variation should be reduced :crossed_fingers:

I’ll add that to the op!

16 Likes

Can you share your safe version? The latest version of safe (sn_cli-v0.86.90) should not have this issue.

6 Likes

New Year Resolutions have been made and will the testnet keep to its resolutions. Better pricing promised and slimmer payment process. Will it keep to its slimming resolution.

The Year of the TestNet Solutions has begun

15 Likes

The information behind the link:

/// The minimum size (before compression) of data to be self-encrypted, defined as 3kiB.
pub const MIN_ENCRYPTABLE_BYTES: usize = 3 * MIN_CHUNK_SIZE;
/// The maximum size (before compression) of an individual chunk of a file, defined as 500kiB.
pub const MAX_CHUNK_SIZE: usize = 512 * 1024;
/// The minimum size (before compression) of an individual chunk of a file, defined as 1kiB.
pub const MIN_CHUNK_SIZE: usize = 1024;
/// Controls the compression-speed vs compression-density tradeoffs.  The higher the quality, the
/// slower the compression.  Range is 0 to 11.
pub const COMPRESSION_QUALITY: i32 = 6;

I can not make sense of that. Can someone interpret that into more conventional form, what is the limit of file size to be encrypted? Is it 3kB, 3MB or something else?

3 Likes

As it stands right now, any file that is less than 3KB is not encrypted.
If the file is >3KB, they’re broken down into 512KB chunks and are self-encrypted.

10 Likes

I just tried and:

If you want to make public a file that you have already uploaded as private, just re-upload it with -p flag:

time safe files upload -p Waterfall_slo_mo.mp4
Logging to directory: "/home/topi/.local/share/safe/client/logs/log_2024-01-04_14-07-23"
Built with git version: ba2bb2b / main / ba2bb2b
Instantiating a SAFE client...
Trying to fetch the bootstrap peers from https://sn-testnet.s3.eu-west-2.amazonaws.com/network-contacts
Connecting to the network with 47 peers:
🔗 Connected to the Network                                                     "Waterfall_slo_mo.mp4" will be made public and linkable
Starting to chunk "Waterfall_slo_mo.mp4" now.
Starting to chunk "Waterfall_slo_mo.mp4" now.
Chunking 1 files...
Files upload attempted previously, verifying 115 chunks
All files were already uploaded and verified
**************************************
*          Uploaded Files            *
**************************************
"Waterfall_slo_mo.mp4" c61ffa6aa89fc1e518e9f114e24738cc11bf7f78812a698d3fd3671257d12076

real	0m20,367s
user	0m15,864s
sys	0m4,284s

Verifying 115 chunks took about 20 seconds. I haven’t saved any stats from before, but might this be somewhat faster than with previous system?

Feel free to download:

safe file download Waterfall_slo_mo.mp4 c61ffa6aa89fc1e518e9f114e24738cc11bf7f78812a698d3fd3671257d12076
9 Likes

Those extra bytes are some just random stuffing?

Anyway this means that almost any “normal sized” photos are well above encryption limits, for example. :+1:

8 Likes

Regarding the speed performance, might remain the same.

But will be sure a signifcant reduction of the traffic used, as now there is only hash of content to be fetched to confirm the existence.

16 Likes

Unfortunately I have not committed to memory how slow or fast I previously got rewards but I am getting plenty of rewards at haste, perhaps 10 or 15 minutes after starting up.

18 Likes

@Roland same here. The full address is part of the filename in the uploads directory, but the terminal only shows chunk address as @Vort shows above. That’s with

$ safe -V
sn_cli 0.86.90

EDIT: And this is really odd. I re-did the upload and now get full addresses. Is there a difference when you have not yet used -p? Will test…

Yes, that is it. If you upload without -p you don’t get full file addresses (unless you have already uploaded the same file(s) with -p. In the latter case you get full chunk addresses whatever.

I guess that’s the confusion, but makes sense otherwise people will try sharing addresses for datamaps that are not on the network.

14 Likes

8a3lry

10 Likes

Aha! We did not make changes to another codepath that led to this weirdness, sorry about that. Will put up a fix for it.

10 Likes

I’m not sure it needs fixing - did you see my edit?

3 Likes

I guess that’s the confusion, but makes sense otherwise people will try sharing addresses for datamaps that are not on the network.

That is indeed true! But currently, the -p flag is a bit loosely coupled with the files tracking. We will be making it concrete with follow-up PRs.

The issue that you had noticed earlier is not related to the -p flag, and you can recreate the same weirdness if you try to upload a new file more than once without -p flag.

Edit: The fix is in - sn_cli-v0.86.91

5 Likes