Currency simulator on tilde.town and other tildeboxes on tildeverse.org
- Clone the repo.
- Create a service user specifically for tcoin.
- Make sure you have
bash,realpath,echo,touch,mkdir,g++,head,true,base64, andcatare available. - Run
./ntcoin a b c das the service user, wherea,b,canddare defined as follows:a: the absolute path to the directory (without the trailing slash) where thetcoinfolder containing all the users' data will be stored (i.e., the script will create the directorya/tcoin/)b: the absolute path to the directory (without the trailing slash) where thetcoinandpcoinexecutables will be located, i.e., all users will have to haver-xpermissions onbso that they can access the executablesb/tcoinandb/pcoin. Please note thatb/tcoinandb/pcoinwill have the suid bit set. This means that when they runb/tcoinandb/pcoin, it will be with the uid of the service user (not their own uid). This is how they are able to send and receive coins only through the executables but not modify thea/tcoin/themselves.c: an integer number of tildecoins that every user starts with. This is stored ina/tcoin/base/base.txt, and for universal-basic-income-style inflation, one can modifya/tcoin/base/base.txtusing a cronjob. This will increase everybody's coins in real time.d: a host name (in quotation marks, e.g., d = "tilde.town") that will appear intcoin --help.
- Run
b/npcoin aas the service user in the parent directory of thetcoinfolder, i.e., if thetcoinfolder is in directory with absolute pathx, then runcd x; b/npcoin a. Here,ais the name of the program account you want to create, andbis the absolute path to thetcoinrepository that contains thenpcoinscript. Program accounts should start with a capital letter (e.g.,My_program_accountorMy-program-account). - Create a file in the
tcoin/secrets/pcoin_keys/directory with the following name:My_program_account.txt(assuming the name of the program isMy_program_account) and add the following newline-terminated line to it:<a 64-character random alphanumeric (either all lowercase, or mixed-case will also work) string> - The string will be the key that the program uses to access and operate its account, and must be given to the requester of the program account securely (and currently, manually). I usually use random.org to generate these 64-character strings because I don't trust pseudorandom number generators (even if they are cryptographically-secure pseudorandom number generators). Anybody who can guess a key can use that program's account.
- Program-account creation is currently not automated because of concerns about name-squatting and similarly-named program names.