Bitcoin Forum
June 23, 2024, 03:54:29 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 24 25 26 27 28 »
  Print  
Author Topic: [ANN - Pre-ICO] BlockPay - Zero Cost, digital currency Point-Of-Sale systems  (Read 44480 times)
dking7334
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile
December 12, 2016, 03:14:59 AM
 #361

Interesting project and very cheap price atm I'll be following along, best of luck team!
teasider
Jr. Member
*
Offline Offline

Activity: 75
Merit: 1


View Profile
December 12, 2016, 11:34:50 AM
 #362

Is this thing even going to be traded anywhere?
What's going on with it?
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
December 12, 2016, 11:42:47 AM
 #363

Is this thing even going to be traded anywhere?
What's going on with it?

The BlockPay tokens can be traded today on the BitShares Decentralized Exchange, on https://openledger.info/ and on http://www.freedomledger.com/ . More exchanges will be added spring 2017.

Visit us at www.payger.com
Deanero
Sr. Member
****
Offline Offline

Activity: 324
Merit: 250



View Profile
December 13, 2016, 10:06:41 AM
 #364

It's all gone quiet.
What's happening? Are the devs on Slack?

We have daily updates on our Social Media channels. Please check

www.Facebook.com/blockpayde/
www.twitter.com/blockpay_ch
www.steemit.com/created/BlockPay
https://www.youtube.com/channel/UCJl3M4kuMaihU-yUQvnexkg

We also have a weekly dev update every Friday. Here is the latest update:

https://bitsharestalk.org/index.php/topic,22576.120.html
Quote
TONS of work done this week:
https://github.com/kenCode-de?tab=repositories
 
C-IPFS and BlockPay related:
 
Work continued on the development of c-ipfs, in the area of data storage. Blocks are now written to both the lightningdb database, and the /blocks directory. We also wrote tests to cover more code, and adjusted existing code to clean up memory leaks. Valgrind now runs fairly clean over our tests of c-ipfs.
 
The difference between what is stored in the /blocks directory and what is stored in the database is not totally clear yet, but this week will hopefully uncover the rest of it. While successfully writing to block storage is a big accomplishment, block retrieval isn't finished yet. This task is minor in complexity though. Also, block storage must now be leveraged to take on the MerkleDAG and the unixfs code that runs on top of it. This will allow for files to be placed in namespaces (aka: directories), be broken into pieces, and read/found by local and remote BlockPay or mobile wallet clients.
 
More c-ipfs and c-ipns (was running very slow) commits:
https://github.com/kenCode-de/c-ipfs/commit/8da6e2df690d698067b2cb5615cce12f00a1f3bd
https://github.com/kenCode-de/c-ipfs/commit/0f5964ad3cb6fca94651001b43e76ae0ef3032ec
https://github.com/kenCode-de/c-ipfs/commit/ac4cc8feaaef747295b8705fa7f1b6d43d72f4dd
https://github.com/kenCode-de/c-ipfs/commit/a21330af436c0b9c6e8628f6f15acf1f0e2d37c0
https://github.com/kenCode-de/c-ipfs/commit/47e035e29f8d4870b6a9def0cb1a397cb91ac5bf
https://github.com/kenCode-de/c-ipfs/commit/d761e6062b7e92b69b604d96e42b80d58f7ebad9
https://github.com/kenCode-de/c-ipfs/commit/cba5839f5623af89bd969a959de1a7b0012bf908
https://github.com/kenCode-de/c-ipfs/commit/75f86b4107f87489efcd7b4ebea230cb8e24dd71
https://github.com/kenCode-de/c-ipfs/commit/8f686f6115c613614382e4599d73aa5e8d118bd6
https://github.com/kenCode-de/c-ipfs/commit/e89b5515c24ed32334f7bff04224b79b19257e7e
https://github.com/kenCode-de/c-ipfs/commit/a4b6a14ea524689556e9f9cf927a3519c64c0e24
https://github.com/kenCode-de/c-ipfs/commit/9ba3112b9705d48b7a333f43a4d11a45c5ad5d8f
https://github.com/kenCode-de/c-ipfs/commit/33afac194a0d6e6f153d3408ebacb3a2565ba030
https://github.com/kenCode-de/c-ipfs/commit/316c880bd1354a4649302c4429559c9f681de69e
 
We've been redesigning go-ipld-node + go-ipfs/merkledag/node + go-ipld, etc. to actually work together in C as they can't be preserved in go's form, the languages differ too much. Creating merkledag nodes, which can either be links to other nodes or data nodes, these will process data stored in files in the future (with merkledag done) assure validity of data, etc.
 
Android Smartcoins Wallet and security audits:
 
This week we streamlined a bunch of code and moved more of it to the client side so that now hardly any trips to the server need to be made. By letting the client do more of the work, it has sped the app up a bit and greatly reduced bandwidth utilization. BIP39 support has been added too (real words, instead of brainkey "weird" words). During the security audit, we have also made some other improvements this week:
Improved Websocket communication
Create Account Activity
Debugging Python server-side components
Encrypt/Decrypt AES
Compress/Decompress LZMA library
Export / Import Bin File Library, compatible with old bin files now
Export bin file Activity
Import bin file Activity (in progress)
A bug with the transfer transaction was fixed. The problem happened randomly and because of that was not caught initially. The reason has to do with the strictness of the graphene network on its approval of signatures. Sadly the bitcoinj doesn't provide support for non-deterministic signature generation, so we had to be creative when coming up with a solution. A valid compromise was deemed to slightly change the expiration time of the transaction in order to generate a valid signature. It is important to note however that this has no visible impact whatsoever for the user and the transaction gets processed super fast as always.
 
Improvements were made to the QR-code generation mechanism. The reliance on a server for the QR generation, encoding and compression of the eReceipt data has been dropped. This has had a dramatic improvement in the speed of the generation of a QR-code. And of course to be able to generate the QR-code while off-line is also a major advantage in speed and bandwidth utilization. The corresponding change in the procedure of decompression and decoding the data when reading a QR-code with the camera also had to be adjusted, since a server was being used there too.
 
graphenej in progress, BIP39 support added and now being tested.
 
Stealth related:
 
Libsnark is now fully integrated, replaced libsodium crypto primitives, finished notes encryption/decryption and fully tested. UI now being worked on, will upload more screenshots soon.

BlockPay and our other products are growing rapidly and we make amazing progress with IPFS in C! Due to security reasons are our main developers in no chat channels. We only work with the best and we don´t want to distract them from their work.

Cheers Chris



Hi Chris,

I highly recommend you start a slack channel. It's a great way to further build the community.

Almost all projects these days have a slack or Telegram channel.

Please add one.

Cheers

Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
December 13, 2016, 11:19:18 AM
 #365

We actually have both Smiley

Telegram is here: www.telegram.me/blockpay
Slack is here: https://echocircle.herokuapp.com/

We are hiring and need your Help Bitcointalk!

We are looking for a Expert C programmer with some trading experience
Please find the job description here https://www.xbtfreelancer.com/project.php?id=2494
We only pay in BTC and per milestones. If you think you can take the job, contact us!

We are looking forward to your application Smiley

Visit us at www.payger.com
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
December 13, 2016, 06:30:31 PM
Last edit: December 14, 2016, 11:02:18 AM by Chris4210x
 #366

A BlockPay Christmas surprise!
It’s that most wonderful time of the year ...as we at BitShares Munich look back on a successful year! BlockPay was just the beginning and due to its high demand, we began developing new products like Echo, C-IPFS and others to reach our vision of accelerating the transition to a blockchain-based digital economy.

But enough about us, today we've got a Christmas surprise just for you! We are going to pimp your wardrobe and wallet by giving you a chance to get your hands on a limited edition BlockPay t-shirt and 250 BlockPay Token!



How to join?

Two easy steps:

  • Tell us where you would like to use your digital currencies and tag this place.
  • Include the hashtag #BlockPay.

Example:

"I would like to use bitcoins to pay for my beer at @place #BlockPay"

We are running this contest on Facebook, Twitter and Steemit so you even get to pick the social media of your choice!

Just remember that if you’re doing it on Facebook, make sure your post is set to Public, and not Friends or Private so that we can search for it. On Twitter, you profile should be Public too.

Everyone gets three entries so you could even opt for posting one entry on Facebook, one on Twitter and one on Steemit.


So what are you waiting for?

Time to get creative! We’re looking forward to your amazing posts, tweets, GIFs and photos.

We will select 10 lucky winners.

Each lucky winner will win:

  • A limited edition BlockPay T-Shirt
  • A set of Bitcoin and BlockPay sticker’s
  • 250 BlockPay Tokens!



The Contest Timeframe

The contest starts NOW and ends on December 24th, 12.00pm CET! The 10 winner will be announced on December 26th on Facebook, Twitter, and Steemit.

Good luck!

We would also like to take this opportunity to wish you all a Merry Christmas and a Happy New Year!

Here is the video.



Repost so that this quote does not get lost. We still hire people!


We are hiring and need your Help Bitcointalk!

We are looking for a Expert C programmer with some trading experience
Please find the job description here https://www.xbtfreelancer.com/project.php?id=2494
We only pay in BTC and per milestones. If you think you can take the job, contact us!

We are looking forward to your application Smiley



Visit us at www.payger.com
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
December 14, 2016, 11:03:22 AM
 #367

Hi all, I want to move the Telegram/Slack channel to our new Discord chatting program that allows us to chat in real time, share more content and is easier to manage. I will merge all social media chat groups, Slack and Telegram on Discord. Here is the link to join. https://discord.gg/VMmMmTd

Hope to see you all around!

Visit us at www.payger.com
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
December 29, 2016, 09:05:07 PM
 #368



Wow, that was fun!

Thank you all for the great submissions and your awesome contributions at this years BlockPay Christmas Contest 2016! We received many submission with #BlockPay on Twitter, Facebook, and Steemit during the last days and it was challenging for Rodrigo and Chris to pick the 10 winners. We are now more than ever excited to announce the 10 lucky winners.

Each will get a limited edition of BlockPay T-Shirt, a set of Bitcoin and BlockPay stickers and 250 BlockPay tokens!

List of winners:

  • BTSWolf - "I would like to use #BitShares to pay for my Hot Wings at @KFCDeutschland #BlockPay"
  • Abikey7 - "I would like to use bitcoins to buy electronics at @Walmart #BlockPay"
  • Cyber Performance - "I`d like to use #blockpay at @cyberport_hk & @startup_stadium"
  • Fyrstikken -"I would like to use bitcoins to pay for my beer at @BarrancoBeerCo #BlockPay"
  • By24seven - "I would like to use #bitshares to pay for my new car at @TeslaMotors #BlockPay#blockchain"
  • @CM-Steem - "I would love to use Gridcoin (Open.GRC) at grocery stores (or even better - supermarkets) in the UK! #BlockPay"
  • @oldtimer - "When steem hit 1000$ I would like to pay for my Ferrari at @Ferrari #BlockPay."
  • @applecrisp - "I would like to use bitcoins to make a holiday donation to my local Community Food Centre - where people come together to grow, cook, share and advocate for good food Smiley #BlockPay"
  • @Nextgen - "I would like to use bitcoins to pay for my holiday in Shanghai, take my son to @disneyland, stay at @hilton, and buy food from local markets. This would allow me to save on expensive currency conversion and international transaction fees. #BlockPay"
  • @Full-steem-ahead - "I would like to use BitShares to pay for my property taxes @county-courthouse #BlockPay Also see my holiday article in a similar vein here. Happy Holidays to all, especially the team at BitShares Munich!!!"

All of the winners from Steemit, please write in the comments your email, so we can get in touch with you!

We selected the 10 submissions and are looking forward introducing digital currencies and BlockPay at your favorite holiday destination, supporting local community food center through donations, saving science, and inviting the supermarkets near you to the future of digital payments!

Thank you all for your great support and contributions and we wish you all a Merry Christmas and a Happy New Year!

Cheers Rodrigo & Christoph

For more information on BlockPay visit our website or for any inquiries send Chris or Rodrigo an e-mail at christoph@BlockPay.ch, rodrigo@BlockPay.ch

Visit us at www.payger.com
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
December 30, 2016, 03:24:24 PM
 #369

Friday Dev updates to BlockPay, Smartcoins Wallet (core of Echo) and Stealth


The challange of stealth transaction and zero knowledge transactions.

Quote
Quote
Quote from: ag on Today at 12:35:17 AM
stealth by February all I care about! I'm not a criminal. thanks.
 
Stealth transactions (in my opinion) are imperative to the survival of Liberty. February is my goal for the formal Stealth launch, but this has to be perfect, via the cryptography that we have to work with right now. Zero Knowledge ("zk") transactions are the holy grail of financial privacy, and I want this to be impenetrable. Besides completion of the UI for Stealth, there was one final issue with Stealth that we had to tackle, called "trusted setup".
 
What is trusted setup?

zkSNARK allows us to implement the perfect anonymity, the only issue is the fact that verification of the proof requires some interaction among Prover and Verifier. They should generate some kind of “shared secret”,  after that the Prover can prove something without disclosing any additional info. But this way is not acceptable in cryptocurrencies for transaction verification,  because it's impossible to interact with the transaction issuer every time somebody verifies the transaction. The workaround for this issue is pre-generation of this “shared secret” (usually it is called public parameters, or "pp") for all transactions and Verifiers at the very beginning. Very roughly speaking this pp is the constant value in the zkSNARK library code. The problem is that if somebody knows some data (let’s call it “toxic waste”) that was used during this pp generation, he can counterfeit any proof that was generated with using this pp. Library authors didn’t include this pp in the original zkSNARK implementation code because it is difficult to prove that they didn’t know this toxic waste for this predefined pp. So every zkSNARK client app should invent the way to generate this pp and prove to the community the fact that they are not storing the toxic waste for this pp. If they can do that, then it is safe to use the same pp in every other app that uses zkSNARK in the future. Zcash was the first client app with the zkSNARK library and that’s why they should generate this pp. If this pp generation is safe, then we can use the same pp value. If we think this generation is not safe, then we can generate it one more time in another, safer way. If zkSNARK has the pp generated one time in a safe manner, then all the other apps that use it don’t need any trusted setup or something like this anymore.
 
What is wrong with Zcash trusted setup?
 
The only weak place in Zcash cryptography is in the pp generation, usually called the trusted setup. They found the way to generate it in a safe enough manner, but were criticized because it's still the weakest place in their system (but it’s still safer than many other cryptocurrency weak places are). They can generate this pp by several participants so that if at least one of the participants will not save his part of the toxic waste and share it with other trusted setup participants, pp generation will be safe and nobody can counterfeit the generated proofs. Their error was that they use a predefined small number of participants, so it's possible that the 6 participants weren’t honest and modified the pp generator code and saved their toxic waste parts. All other procedures were safe; there are several participants, if only one of the participants is honest then the generation is safe, and there are participants that are not associated with Zcash.
 
How can we improve upon their trusted setup?
 
Our main idea is to allow anyone/everyone to participate in the trusted setup who's interested in security. These participants should not only be the members of the Bitshares community, but there are at least several Zcash forks that need zkSNARK pp too. So we are preparing a generator (open source of course), that every web user can install and start it on a predefined date, and the network of these generators will generate safe pp for zkSNARK. If only one of these users will be honest and will not save his part of the toxic waste, the pp is safe and can be used (not only by Bitshares, but by any other zkSNARK client too (Zcash forks, for example)). So if you don’t want to trust anybody in trusted setup you can just participate in this setup and be sure it was honest by destroying your part of the toxic waste (you don’t need to do something special for this, just build the source code without modification and start up the generator).
 
The main risk in this case is performance (the more participants, the more generation rounds), so in the worst case we should limit the number of participants. We think it’s ok however, because Bitshares already has a set of trusted members (thanx to DPOS). It can be any number of Committee members, Witnesses, or Stakeholders, for example. We hope to create the algo without any participation limits and should be finished with it very soon.
 
We have kept the new algo (more or less) the same in our libsnark implementation (github.com/kenCode-de/libsnark), and mainly edited the build scripts to facilitate this “trustless” setup redesign. This procedure should be started only once and after that, its result will be hardcoded into the code. Stealth transactions will not require any additional actions from any Bitshares system participants.
 
BlockPay of course, will soon include this extra layer of privacy via Stealth transactions as an option in the Settings screen.
edit: ps: I will post my normal weekly update in just a few hours...


More IPFS updates from us.

Quote
Tons of code uploaded to my github this week:
https://github.com/kenCode-de?tab=repositories
 
C-IPFS and BlockPay related:
 
To align the hashes with what is stored in the Go version of IPFS, the hashes must match. That was the purpose of these commits this week:
https://github.com/kenCode-de/c-ipfs/commit/914d3caaeda5cfbdcb2a9f5cf80012768b496262
https://github.com/kenCode-de/c-ipfs/commit/8d2aeab0167a7e5145d07659c6d0e5a03ef9fd41
https://github.com/kenCode-de/c-ipfs/commit/15b432c70e977b9682b35c9690e6a10b49f42b03
https://github.com/kenCode-de/c-ipfs/commit/1dcbf8962e14d490ee331668966b3dff2bc54754
https://github.com/kenCode-de/c-ipfs/commit/3004f1411a121c9e7a085e6945a6de93c452a8b4
https://github.com/kenCode-de/c-ipfs/commit/8f44c857db04812267928f69b69177ab8597949c
 
After that, we began working on importing of directories...
https://github.com/kenCode-de/c-ipfs/commit/9d77b2709f6e59b7dc388b7136466dd35b9e65df
https://github.com/kenCode-de/c-ipfs/commit/fa3dd77e96544863c238096a23442ddc28dd4263
 
..and making the directory hash match the Go version:
https://github.com/kenCode-de/c-ipfs/commit/396dfc6abc45d664c5240e002a3295fe991b0b67
 
We have now added the code to retrieve a file based on the hash of the directory and the path to the file:
https://github.com/kenCode-de/c-ipfs/commit/addb5ba302cdb102a6ec2362d64adb2a5655ed42
 
The storage system is now to a point where it is functional and installable. It is not perfectly tested, but a damn good number of use cases work.
 
What is planned for the coming week:
More testing / commenting / docs (the IPFS community will be helping us with this)
Error handling around user input and better responses to the user
Resolving files across networks
More c-ipfs and c-ipns(lots of speed improvements thanx to our protobuf completion) commits:
https://github.com/kenCode-de/c-ipfs/commit/00bf29b0fafc37e7e058c8cfa2d43d6b5c891fe9
https://github.com/kenCode-de/c-ipfs/commit/37bab54a5c7d7cb4015ec97bb0e9515f4f9c952e
https://github.com/kenCode-de/c-ipfs/commit/d9774095d3948afd4abd537ea8d80d42e77b96ea
https://github.com/kenCode-de/c-ipfs/commit/ef380f2a6915e978bbd9f28fb7a7a1b495c6e94d
https://github.com/kenCode-de/c-ipfs/commit/9d194ad484a540cad515c015ca203f8abb847200
https://github.com/kenCode-de/c-ipfs/commit/f7a029ade3422fe636373df721925d265bedcc16
 
..and more:
"ipfs add [filename]" and "ipfs add -r [directory]" are now both functional
"ipfs object get [hash]" and "ipfs object get [path]" are now both functional
namesys-protobuf, c-ipfs-node and CJDNS basic support are also complete
Early next week we will finish pin, routing, libp2p-routing and c-ipns.
 
The CLI was released right before Christmas, and we now have Pre-Releases ready for Linux and Mac here:
https://github.com/kenCode-de/c-ipfs/releases
 
We should also have a Windows, and first formal Release for all platforms ready by next week at the link above.
 
Android Smartcoins Wallet and security audits:
 
We found a very rare bug that was preventing the storage of newly created keys to persistent storage. The previous procedure was storing them in memory and just promoting them to the shared preferences once we got the response back from the network and the account update procedure was deemed successful. This of course leaves a small breach that would happen if something were to happen in case the account update was successful, but the network response failed to reach the user. The situation described before never actually happened, but it could be emulated by purposely crashing the thread at a very specific point. Most users are not going to try to crash a thread on purpose.
 
The code written to treat this very rare situation also took special care of checking if the stored key actually does match the public address of the "active" role of the account, and only then it proceeds to replace it. The described changes can be inspected in this commit (https://github.com/kenCode-de/smartcoins-wallet/commit/4ea07e741223680363225c5a038769988927a95f).
 
After having added support for the 'get_market_history' API call in our new graphenej library (https://github.com/kenCode-de/graphenej), this was introduced in the Smartcoins Wallet and used to obtain the historical market data, which in turn is useful to calculate the equivalent fiat values of past transactions. This was previously being done on-demand every time the app was restarted, a solution which was very inefficient and actually wrong, because the equivalent values were being calculated with current values, not past ones.
 
With the new changes introduced, after a batch of transactions is loaded and stored into the database, the app will perform a query looking for historical transactions that don't have an equivalent fiat value. With this in hand, the aforementioned 'get_market_history' API call is used to obtain historical market data and calculate the equivalent value.
 
Because not every token might have a very active market with the user desired Smartcoin, we make a 2-step equivalent value calculation. First calculating the historical relationship of the token with the BTS, and then in turn finding out how much that amount of BTS would have been in bitUSD or bitEUR (or the desired Smartcoin) at that point in time.
 
If the transaction was already made in BTS the first step was avoided, and if it was already a Smartcoin no conversion is needed of course. Every one of these special cases was treated and upgraded.
 
Also a mapping was created to match the location of the user with a set of Smartcoins. If no Smartcoin exists for a specific country (a situation that applies for most countries actually) then bitUSD is now used as a default.
 
The relevant commits for this work are:
https://github.com/kenCode-de/smartcoins-wallet/commit/0decd87e1f8160d98e7d77b458cae698072b67d0
https://github.com/kenCode-de/smartcoins-wallet/commit/ee7ac88eb45dd21fb19353d44f9e8f92bc029a51
https://github.com/kenCode-de/smartcoins-wallet/commit/39b581d17a36e230b779bd7e9451f5018bb1c060
 
And a more detailed description of the specific details about this procedure:
 
Transactions loading (on the home screen) - The procedure to load the database with historical transfers is somewhat complex due to the fact that what we want to display and what the API gives us is slightly different. Namely time and equivalent value information is missing. There is of course ways to obtain this data, but more on the specifics of this later. Let us first focus on obtaining the list of transactions and display whatever it already gives us.
 
The list of historical transactions is obtained by using the ‘get_relative_account_history’ API call. And even though this call has a hard limit on 100 operations per request, we can easily schedule a new request in case we note the user might have more than 100 transactions already. It is not really a problem to chain operations like this, since this procedure is only performed once upon installation to initially fill the database with operations performed prior to the apps' (Smartcoins Wallet and BlockPay both) install.
 
With this in place, we can already display information about what was sent, and if it was an incoming or outgoing transaction. A quick search to this newly loaded database can also give us the list of assets used and that information is used to obtain more information about each one of them. Specifically we would like to know each asset’s symbol and precision, in order to properly format them to the user. So that we can display USD 1.00 to the user instead of its raw value of 1000 for instance.
 
The first complication arises from the fact that the list of operations retrieved by this API call doesn’t explicitly have the time information in it. Instead each operation does indicate the block number in which it was included in the blockchain.
 
By taking the block number information however, we can then use the ‘get_block_header’ API call to get the UTC time for that specific block. The downside of this API call is that it doesn’t support batched calls. That is, a request has to be made specifically for every missing block header. This can be time-consuming, especially if we decide to load all historical transfer’s time information and then proceed to calculate equivalent values.
 
Since the user is more likely to be interested in the most recent transactions first, and recalling that this operation is only performed ONCE upon app install, it was decided to split the timestamp query and equivalent value calculations into batches. So this way the app will load all transactions first, and display the information about every transfer without any date and time or equivalent value first.
 
Then we’ll proceed to load date time information from top to bottom, but not going all the way down the list. But instead stopping at a specific batch size, and then proceed with the equivalent value calculation. In other words, don't annoy the user.
 
Please note that the equivalent value calculation depends on us having the specific date and time for every operation, since we’re using the ‘get_market_history’ API call, which takes a timestamp information instead of block number.
 
The timestamp query and the equivalent values thus are performed going from most recent to older transactions, which will appear low in the list anyways. Once this operation is finished, the app will just query the local database.
 
This initial database loading operation can take a while to conclude, but since it is done in the background by threads filling in the database the user doesn’t have to wait for it to conclude and is free to use the app. He can even interrupt the procedure by pressing the home button, and it will just resume from where it left when the app is reopened.
 
With the information about historical equivalent values in the databse, it was now possible to re-enable the "export to PDF/CSV" and "eReceipt" functionalities (which will be included in v1.5.6). This was done here:
https://github.com/kenCode-de/smartcoins-wallet/commit/a341882bb4e96c567be545be5c8641b2eb73b116
https://github.com/kenCode-de/smartcoins-wallet/commit/6e4325bfd6a51bc912a70b80879946e10c9e7c28
 
More features updated:
Caching for getAssets (more speed improvements)
Changing BalanceFragment Structure (Separating the view from the logic for the future c-ipfs integration)
As always, never keep more money in your wallet than you can afford to lose. Latest release can be downloaded from google play:
https://play.google.com/store/apps/details?id=de.bitsharesmunich.smartcoinswallet
 
Stealth related:
 
Finishing the "trustless" setup algo now, see my details on that in the forum post just above.
UI now being worked on, will upload more screenshots soon.

Visit us at www.payger.com
Deanero
Sr. Member
****
Offline Offline

Activity: 324
Merit: 250



View Profile
January 02, 2017, 08:13:11 AM
 #370

Hey BlockPay Team,

I invested 2 BTC into your ICO on the hopes that you would be active in your promotion and development of BlockPay.

When are we likely to see the value of BlockPay, as a whole, increase? Up till now, I havent seen too much tbh.

I like to see the updates etc, but I just don't see much going on. Looking for your reassurance and some info on what to expect in the coming weeks/months.

Thanks & Best of Luck.

Wishing BlockPay a successful 2017  Smiley

teasider
Jr. Member
*
Offline Offline

Activity: 75
Merit: 1


View Profile
January 02, 2017, 08:26:50 AM
 #371

Hey BlockPay Team,

I invested 2 BTC into your ICO on the hopes that you would be active in your promotion and development of BlockPay.

When are we likely to see the value of BlockPay, as a whole, increase? Up till now, I havent seen too much tbh.

I like to see the updates etc, but I just don't see much going on. Looking for your reassurance and some info on what to expect in the coming weeks/months.

Thanks & Best of Luck.

Wishing BlockPay a successful 2017  Smiley

I think the right term you're looking for is Donated.

right now investors are at -71% (If you put in 1 btc you now have 0.288 btc)

they claim that More exchanges will be added spring 2017 (other than decentralized ones)
Deanero
Sr. Member
****
Offline Offline

Activity: 324
Merit: 250



View Profile
January 02, 2017, 08:48:14 AM
 #372

Hey BlockPay Team,

I invested 2 BTC into your ICO on the hopes that you would be active in your promotion and development of BlockPay.

When are we likely to see the value of BlockPay, as a whole, increase? Up till now, I havent seen too much tbh.

I like to see the updates etc, but I just don't see much going on. Looking for your reassurance and some info on what to expect in the coming weeks/months.

Thanks & Best of Luck.

Wishing BlockPay a successful 2017  Smiley

I think the right term you're looking for is Donated.

right now investors are at -71% (If you put in 1 btc you now have 0.288 btc)

they claim that More exchanges will be added spring 2017 (other than decentralized ones)

What they are building has a lot of potential. Once other exchanges are added and regular updates and developments begin to come out, I believe we will see BlockPay gain some ground.

Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
January 02, 2017, 11:57:19 AM
 #373

Hey BlockPay Team,

I invested 2 BTC into your ICO on the hopes that you would be active in your promotion and development of BlockPay.

When are we likely to see the value of BlockPay, as a whole, increase? Up till now, I havent seen too much tbh.

I like to see the updates etc, but I just don't see much going on. Looking for your reassurance and some info on what to expect in the coming weeks/months.

Thanks & Best of Luck.

Wishing BlockPay a successful 2017  Smiley

Hi Deanero, Happy New Year to you two.

Thank you for your good question. We have weekly reports on our social media channels and a tec update every Friday. We are making good progress with the new BlockPay Core engine. Since all our products work with the same code libraries we had to temporarily shut down the BlockPay DE and FR server until we fixed some security update. In that task, we also improved the QR-code generation, increased the encryption, and made the sign-up process easier.

We are very careful with our security standards and rather take a bit longer for an update then deliver an insecure product. I expect to have the BlockPay servers up and running within the next few weeks.

Meanwhile, we are acquiring new customers around the world. We have +10 integration request for BlockPay, 3-5 custom wallet inquiries, and weekly request for the BlockPay API.

I will keep you up to date in this forum thread about our latest developments and improvements. You will be all surprised about the awesome products that we are building right now for the whole Blockchain Community Smiley The Token prices will display our work soon enough.



Visit us at www.payger.com
teasider
Jr. Member
*
Offline Offline

Activity: 75
Merit: 1


View Profile
January 09, 2017, 10:58:39 AM
 #374

Is blockpay a part of Bitshares? (I'm asking as the tokens are valued as BTS on openledger.)

"Its Github (https://github.com/bitshares) seems pretty dead as well as its community and transaction volume. Besides, any Bitshares asset can be implemented in Ethereum, so I don't see much of a future for Bitshares"
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
January 09, 2017, 12:40:03 PM
 #375

Is blockpay a part of Bitshares? (I'm asking as the tokens are valued as BTS on openledger.)

"Its Github (https://github.com/bitshares) seems pretty dead as well as its community and transaction volume. Besides, any Bitshares asset can be implemented in Ethereum, so I don't see much of a future for Bitshares"

Hi teasider,

thank you for your question. BlockPay, as well as all our other products, Echo and Stealth Transactions, are built on top of the BitShares Blockchain. The Blockchain itself is almost finished so that you don´t see any platform developed anymore. There is also no core dev team that extends the blockchain itself.

However, there are a growing amount of business building on top of the bitshares blockchain thanks to its powerful technology. Please see my latest reddit post regarding this topic. https://www.reddit.com/r/CryptoCurrency/comments/5ms9sh/is_bitshares_essentially_dead_where_is_it_going/dc707kd/


Yes, many assets can be transferred to Ethereum, so can Ethereum be assets added to BitShares. And they might should consider it.

- The transaction fees on the BitShares Blockchain are far lower, below 0.01 USD per tx fix,
- speed is higher, up to 100,000 txs (new speed test is planned , check  here https://www.reddit.com/r/ethereum/comments/5i5k9p/what_we_know_about_steemgraphenedpos_now/dc70qum/ ), the record is +3500 transactions per seconds = +10,000 transactions per block
- companies have multi ways to charge fees for their assets
- white and black listing features (perfect for compliance and AML / KYC)
- 6 different digital assets to create (UIA, MPA, FBA, PMPA, and more)
- Decentralized Exchange to trade all digital asset token with each other for almost no fees
- with the new stealth feature developed by us, BitShares will compete for head on with Monero, Dash, and Z-Cash. (with all BitShares benefits in the back)

These among many other reasons are attractive for a financial service business like us. We need a blockchain that is stable and works, is fast, secure and can also adopt to world affairs if needed through a sophisticated blockchain governance system.

No other Blockchain on the market can provide us these features yet. I am happy to learn more about other chains that can reach up.

Visit us at www.payger.com
PikachuYou
Full Member
***
Offline Offline

Activity: 238
Merit: 100

Me is Cute


View Profile
January 09, 2017, 12:41:12 PM
 #376

bitshares suck balls
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
January 09, 2017, 01:11:38 PM
 #377

bitshares suck balls

I am happy to answer constructive feedback. We work with all of the leading Blockchains including Bitcoin, Ethereum, Dash, Litecoin, Monero, BitShares, Steem and others.

Visit us at www.payger.com
rnr
Sr. Member
****
Offline Offline

Activity: 247
Merit: 250



View Profile
January 16, 2017, 07:30:56 AM
 #378

bitshares suck balls

I am happy to answer constructive feedback. We work with all of the leading Blockchains including Bitcoin, Ethereum, Dash, Litecoin, Monero, BitShares, Steem and others.

Just mentioned BlockPay in the SuperNET Slack (#marketing) channel.

For add Komodo (KMD) to BlockPay.

@Chris, are you registered there?
Chris4210x (OP)
Full Member
***
Offline Offline

Activity: 175
Merit: 100



View Profile WWW
January 16, 2017, 12:01:05 PM
 #379

Is this thing even going to be traded anywhere?
What's going on with it?

The BlockPay tokens can be traded today on the BitShares Decentralized Exchange, on https://openledger.info/ and on http://www.freedomledger.com/ . More exchanges will be added spring 2017.


Will those Exchanges be Poloniex, Kraken, or Bitstamp? I feel that Blockplay is being monopolized/centralized by the company and it's affiliate Exchange 

Our requests are still pending with the Exchanges. I would love to get a direct contact person rather than a google doc webform Smiley .



Just mentioned BlockPay in the SuperNET Slack (#marketing) channel.

For add Komodo (KMD) to BlockPay.

@Chris, are you registered there?


Hi rnr,

Cool, thank you for mentioning us. No, I am not registered there yet, but we are open to adding more coins and projects to our point of sale platform. Since we will be also available via API for online business, we can onboard many more coins and add them to our global merchant network. This will give even smaller communities access to thousands of stores!

Please contact me at Christoph@BlockPay.ch if you want to add your coin.


Visit us at www.payger.com
DaddyH
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
January 16, 2017, 01:03:07 PM
 #380

Is this thing even going to be traded anywhere?
What's going on with it?

The BlockPay tokens can be traded today on the BitShares Decentralized Exchange, on https://openledger.info/ and on http://www.freedomledger.com/ . More exchanges will be added spring 2017.


Will those Exchanges be Poloniex, Kraken, or Bitstamp? I feel that Blockplay is being monopolized/centralized by the company and it's affiliate Exchange 

Our requests are still pending with the Exchanges. I would love to get a direct contact person rather than a google doc webform Smiley .



Just mentioned BlockPay in the SuperNET Slack (#marketing) channel.

For add Komodo (KMD) to BlockPay.

@Chris, are you registered there?


Hi rnr,

Cool, thank you for mentioning us. No, I am not registered there yet, but we are open to adding more coins and projects to our point of sale platform. Since we will be also available via API for online business, we can onboard many more coins and add them to our global merchant network. This will give even smaller communities access to thousands of stores!

Please contact me at Christoph@BlockPay.ch if you want to add your coin.



Have you joined the Bittrex slack? You can chat to the devs there directly.

◇◆  STRATIS  ◇  BLOCKCHAIN SOLUTIONS  ◆◇
◇◇◆ BLOCKCHAIN AS A SERVICE [BAAS] PRIVATE CHAINS ◆◇◇
| FULL NODE GITHUB | STRATIS WEBSITE | FORUM THREAD |
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 24 25 26 27 28 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!