Bitcoin Forum
July 30, 2024, 11:43:11 AM *
News: Help 1Dq create 15th anniversary forum artwork.
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3] 4 5 »
41  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 08, 2018, 09:28:31 PM
If you are using a firewall make sure that port 1334 is open or TCP connections.
This can be ensured by running:
Code:
sudo ufw allow 1334/tcp 

Also your log files might getting huge.You can delete them by running:
Code:
sudo rm -rf /var/ubic/LOGS/*.txt
42  Alternate cryptocurrencies / Bounties (Altcoins) / UBI distribution on: May 03, 2018, 02:41:30 PM
UBIC is a crypto currency that distributes a UBI to all it's members.
To receive it you need an NFC reader, a passport from one of the supported countries and a linux installation.
Once you have subscribed you'll receive a UBI payment every block until your passport expires.

This is the main thread if you wish to learn more: https://bitcointalk.org/index.php?topic=3021063.0
43  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 02, 2018, 09:24:51 PM
Just after I registered my passport my SSD died, luckily it's still readable.
Where can I find my wallet keys to save then?
If you lose your keys is it possible to recover your coins using your passport?
The seed of your private keys location is: ~/ubic/wallet.dat
This is the only file you need to backup, it's 33 bytes in size.
Currently there is no way to recover your private keys or seed from your passport, once the seed is gone your coins are too.
44  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 01, 2018, 01:41:46 PM
I am also running a node with the IP address 51.15.99.155
This might be useful.

Thank you! I just added it here: https://github.com/UBIC-repo/node-list/blob/master/nodes
If some one else wants to add a node he can directly create a pull request there.
45  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 01, 2018, 01:39:40 PM
What is the purpose of creating a UBIC token, what specific tasks will your tokens solve, what is the value of the UBIC token? What is the maximum number of issued UBIC tokens, when you plan to go to the exchanges, how much does the 1 UBIC token?
You'll find most answers in the whitepaper: https://github.com/UBIC-repo/Whitepaper

But summarize
Quote
What is the purpose of creating a UBIC token
UBIC aims to distribute coins following universal basic income principles.
Instead of rewarding coins proportionally to your computing power every citizen of one of the supported countries will be rewarded with tokens just for being a human being and being part of the UBIC network.

Quote
What specific tasks will your tokens solve
It aims to solve the distribution problems resulting from POW and POS. It also solve a security issue called sybil attack and has possible KYC and E-Voting applications.


Quote
What is the value of the UBIC token?
The value of a token depends on the size of it's network effect.
Because participants that have registered their passports are rewarded with a UBI, the incentive to join UBIC as a user can be higher than with other cryptocurrencies.
This will hopefully result in a great network effect

Quote
What is the maximum number of issued UBIC tokens
Unlike Bitcoin UBIC has no cap. The amounts you saw in the first post are static and will be issued every year.
The real number of coins in circulation will however be lower as all transaction fees are burned to limit inflation.

Quote
When you plan to go to the exchange
I can not give any ETA

Quote
how much does the 1 UBIC token?
I didn't understood this part
46  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 01, 2018, 12:46:46 PM
:(I guess have to wait for mobile app. Tried with Android and Windows phone. Failed to read.

To register your passport you need to connect a usb NFC reader to your computer.
I'll write you as soon a mobile app is ready, I already got in touch with some people that are interested in doing it.
47  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 01, 2018, 11:28:44 AM
How to install update?

Code:
/etc/init.d/ubic stop
cd /usr/local/src/
sudo rm -rf core
sudo git clone https://github.com/UBIC-repo/core.git
sudo chmod 777 -R core
cd /usr/local/src/core
cmake CMakeLists.txt
sudo make install
/etc/init.d/ubic start

This should do it
48  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: May 01, 2018, 09:49:04 AM
I released V0.1.6 it fixes crashes due to register passport transactions. Make sure to update your node.
49  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 30, 2018, 11:52:13 AM
Depending on if your passport uses ECDSA or RSA and the key length the non-transferable proof of signature knowledge can vary from 0.2kb to 4kb. I can add a functionality to allow you to copy the base64 encoded transaction and then to broadcast it on the network using a connected node.

You can also take a look at how the code works, although I agree that it would take a lot of time to read it all.
Here is the most important part: https://github.com/UBIC-repo/core/blob/85993a7bfc31803a37f171d4f0657cfab8c3eb32/JSON/Api.cpp#L631

Bellow is the simplified code with explanations:

Code:
std::string Api::readPassport(std::string json) {

[...]

    if(reader->initConnection(bacKeys, sessionKeys)) // open connection with the passport through NFC
    {
        unsigned char fileId[3] = {'\x01', '\x1D', '\0'}; // EF.SOD file identifier

        if(!reader->readFile(fileId, file, &fileSize, sessionKeys)) { // reading out the SOD file (digitally signed file to verify the authenticity of the passport)
            reader->close();
            return "{\"success\": false, \"error\" : \"failed to read SOD file\"}";
        }
        reader->close();

[...]

        ldsParser->getTag((unsigned char*)"\x77")
                ->getContent(sod, &sodSize); // the SOD file is a ASN1 encoded file containing another PKCS7 file. We get this file here
[...]

        PKCS7Parser* pkcs7Parser = new PKCS7Parser((char*)sod, sodSize); // Parsing the PKCS7 file to extract the Document Signing Certificate, the signed hash and the digital signature
[...]

        Address randomWalletAddress = wallet.getRandomAddressFromWallet(); // get a random address from our wallet, this address will receive the UBI

        if(pkcs7Parser->isRSA()) { // if the parsed PKCS7 file contained a RSA certificate
[...]

            NtpRskSignatureVerificationObject *ntpRskSignatureVerificationObject = NtpRsk::signWithNtpRsk(
                    ntpRskSignatureRequestObject
            );

            CDataStream sntpRsk(SER_DISK, 1);
            sntpRsk << *ntpRskSignatureVerificationObject; // serialize the object

            Log(LOG_LEVEL_INFO) << "generated NtpRsk: " << sntpRsk;
            pIScript->setScript((unsigned char *) sntpRsk.data(), (uint16_t) sntpRsk.size());

            pTxIn->setScript(*pIScript); // set the non-transferable proof of signature knowledge as transaction input

        } else {
            // similar to as with RSA but for ECDSA
            [...]
        }

        [...]

        if(txPool.appendTransaction(*registerPassportTx)) { // Broadcast the transaction on the network
            Network &network = Network::Instance();
            network.broadCastTransaction(*registerPassportTx);
            return "{\"success\": true}";
        }

    [...]

}
50  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 30, 2018, 08:32:25 AM
If no PI data being stored on the blockchain, how is network aware of the passport country of origin?
Using the Document Signing Certificate, they are associated to a country.
You can also not register the same passport multiple times because the signed hash that is published is unique identifier.
51  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 30, 2018, 07:05:22 AM
So the goal of UBIC is replacing the old version of passport that still has many security issues.
By providing more secure system on the passport, that will give extra protection for everyone and minimize the possibilities of a fakes passport.
It uses the E-passport to distribute a UBI and defeat a sybil attack. E-passports are very secure!
52  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 30, 2018, 05:43:19 AM
The use of NFC enabled chip passport of awesome ideas, yet it might also be a big no no, since details and information or identity of an investor might be at risk if the system gets compromise. what are your plans about this matter?

There are no personal information published on the blockchain, in the current and future core implementation no personal information are extracted from the passport. Only the digital signature, the signed hash as well as the Document signing certificate are recovered.
What will be published on the Blockchain is:
 - The hash (checksum) of the chip content (name, lastname, passport number, jpeg picture of your face...)
 - The hash of the document signing certificate
 - A non-transferable proof of signature knowledge, not the signature itself

As a consequence only a government can know what UBI address belongs to who.
Non-UBI receiving remain completely anonymous.

How will people know that more information is not read off the chip than what is necessary? Do people have a guarantee that you will not ready any PI data? With GDPR imminent this becomes a very important discussion.

They can read the source code and compile from it.
53  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 29, 2018, 10:53:47 PM
Checking peers is done through this command:
Code:
ubic peers
54  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 29, 2018, 10:51:07 PM
There should be at least 3 peers (https://github.com/UBIC-repo/node-list/blob/master/nodes)
Code:
195.154.106.30
198.245.61.118
89.249.64.172

You can use this command to add some manually:
Code:
ubic add-peer <ip address>
55  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 29, 2018, 10:20:19 PM
The use of NFC enabled chip passport of awesome ideas, yet it might also be a big no no, since details and information or identity of an investor might be at risk if the system gets compromise. what are your plans about this matter?

There are no personal information published on the blockchain, in the current and future core implementation no personal information are extracted from the passport. Only the digital signature, the signed hash as well as the Document signing certificate are recovered.
What will be published on the Blockchain is:
 - The hash (checksum) of the chip content (name, lastname, passport number, jpeg picture of your face...)
 - The hash of the document signing certificate
 - A non-transferable proof of signature knowledge, not the signature itself

As a consequence only a government can know what UBI address belongs to who.
Non-UBI receiving remain completely anonymous.
56  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 29, 2018, 10:10:11 PM
Explorer blockchain 13793. My client height 6890?

Some times it deadlocks when it is syncing from several nodes, it is a known issue I am working on.
The simple workaround is to restart UBIC using
Code:
/etc/init.d/ubic restart
57  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 29, 2018, 08:03:13 PM
@uboid, @freepellent: thank you!!
@uboid I have linked your block explorer in the announcement post.
I am still looking for contributors to build a mobile app and improve the core source code, you are welcome.
58  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 24, 2018, 08:40:44 PM
Would you mind to elaborate the math behind the different yearly crypto ubi emission rates? Thank you!
The emission rate depends on the country population so that if the entire population of a country joins every citizen would get ~0.1 units a month or a total of ~1.2 units a year
59  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: April 23, 2018, 09:48:38 PM
The white paper is now ready: https://github.com/UBIC-repo/Whitepaper/blob/master/README.md
60  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] UBIC:The cryptocurrency providing UBI for the masses using the E-Passport on: March 05, 2018, 01:53:39 PM
@Fonneda I added information regarding the emission rate in the announcement.
Pages: « 1 2 [3] 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!