Author Topic: [ANN] BlockPay -Your favorite store can now accept any crypto thanx to Bitshares  (Read 100758 times)

0 Members and 1 Guest are viewing this topic.

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Tons of updates this week!
https://github.com/kenCode-de?tab=repositories
 

 
BlockPay related:
 
The main novelty this week has been the redesign of the Loyalty Points UI in the Settings screen. Instead of displaying a huge list of all of the UIA's that could potentially be used as Loyalty Points, we now have just a text box that uses an autocomplete mechanism in order to present the user with a list of potential UIA candidates. This has the advantage of leaving us with a much cleaner and simple-looking interface, while having access to even more UIA's than we had displayed before. This is because in order to have a list of a more reasonable size (there are more than a thousand UIAs!), we were filtering out UIA's with low usage/holders. The database is finally used as the true source of the data backing the list of suggestions that get displayed as you are typing.
 
Since we don't need to filter out the list of UIA's based on the number of holders each one of them has, this data doesn't have to be loaded at the initial setup either. Since this procedure was responsible for a considerable amount of time spent at this phase, the database setup step is now visibly faster. It was quite a bit of work removing unneeded procedures, but the result is a more responsive app, easier to setup, and consumes less bandwidth overall.
 
After selecting the proper UIA as a Loyalty Points reward token, we also now check the user's balance and warn the merchant if there's a zero balance for that specific UIA.
 
Graphenej (https://github.com/kenCode-de/graphenej) - The library has been updated in order to support multiple operations in a single transaction. With this update, we also did some restructuring of the architecture of the classes that represent transactions and operations. More specifically, the factory pattern is now applied operation-wide instead of being done at the level of the transaction. This makes more sense now that we can bundle together a bunch of operations into a single transaction, which of course ends up charging the customer a bit less in network fees and consuming less bandwidth since less trips to a server are needed.
 
C-IPFS related:
 
This week, we worked on file transfer and secure connections. The file transfer works, but it is not the "normal" way to do it, as we have yet to join a swarm. Once secure connections are working, joining the swarm will be the next step. Here are the commits for the week:
 
Handling the different messages for data transfer in libp2p:
https://github.com/kenCode-de/c-libp2p/commit/c5fa7755342929f2dddac4a578fef065fd68d85c
https://github.com/kenCode-de/c-ipfs/commit/f1aac5d70794bd7f12ae7aba6d03aab96ddcb211
 
Moving closer to secure connections using the ipfs secio protocol:
https://github.com/kenCode-de/c-libp2p/commit/6d9473069ba17a37dab71d5e33088eb62bb74f5d
https://github.com/kenCode-de/c-ipfs/commit/d4fee344a7e080a21c1c8f4ec5a4df9c5f84e466
 
Additional:
https://github.com/kenCode-de/c-ipfs/commit/3a38623dccd6039ece496399d75a00485c341ea8
https://github.com/kenCode-de/c-libp2p/commit/386fe24f70b9d9eca16472fb2071416fc178f14d
 
Kademlia is almost functional, we just need to implement the search and then add it to the core. CJDNS will be plugged in as well for our meshnet/openwrt stuff (will talk about this more later). In the coming week, we're working hard to get secio finished, then link it to the swarm. With that done, many of the underlying functions will exist to handle the basic needs of our first public C-IPFS release. Less than 2 weeks away now, which means we get to start on BlockPay 2.0 features (employee tracking, brand new UI/UX, Bridge work, some offline abilities, and at least 20 more Integrations (besides Odoo, Tetra OS, hotel/gas chains, etc)).
 
Android Smartcoins Wallet:
 
Some bugs that were detected and reported by crashlytics over the weekend were promptly fixed. The first one had to do with the lack of a UI element (a button) in the PIN dialog, and its solution can be found here (https://github.com/kenCode-de/smartcoins-wallet/commit/abe73d18cfd6bac8e92ad3d4f9b46c747d5490c3). Another one had to do with the selection of a "backup asset" (Overdraft Protection) on the settings screen. We are building directDEx support for this feature now. Support for further operations that handle market orders is required from the graphenej library in order to re-enable this feature. So in the meantime, in order to avoid crashes due to an nonexistent feature, we just deactivated it in the UI for now. This work can be found here:
https://github.com/kenCode-de/smartcoins-wallet/commit/141f6a067ea3c894aa6664085e709d78cd25c7cc
 
And finally, a bug that may prevent users from registering new accounts was promptly fixed in a patch that was quickly released yesterday to all users. This fix can be found here:
https://github.com/kenCode-de/smartcoins-wallet/commit/1b2cf1c9b2d99af9ea95f577a1f0e72653ee84a0
 
WIF key support is another feature that is about 95% done right now, but we just want to test it a bit more and make sure it works perfectly with the bin file backups etc too. Once testing of the new WIF import/export feature is complete, I will publish a version update on google play as usual.
 
Stealth related:
 
We finally got all the crypto working this week! The api is now being created which will connect our UI work to the core. From that point, we are finishing up conversion of that zcash Rust code I mentioned into C++ so that it works more natively with the bitshares-core.
 
If we keep moving at this pace, I hope to have the first Stealth testnet online for public testing in less than 6 weeks. This will include the new core, the api with functional UI, and conversion of most of the Rust code for our "trustless setup" algo.
 
I know 6 weeks sounds like an eternity, but I want this to be done right. The UI/UX has to be perfect too, or else we will never get any mass adoption. First impressions are everything.
 
Alfredo Garcia, Bitshares Core Dev update:
 
Alfredo is kickin butt and takin names! It's hard to keep up with him, but I will summarize some of what he has fixed this past week:
 
CLI wallet issue: https://github.com/bitshares/bitshares-core/issues/92
Tested and closed.
 
https://github.com/bitshares/bitshares-core/issues/193
Same as 93. Removed note requested by abitmore in pull request:
https://github.com/bitshares/bitshares-core/pull/240 merged.
 
api call to obtain an account's trade history for a specific asset-pair 
https://github.com/bitshares/bitshares-core/issues/222
Added function. pull request https://github.com/bitshares/bitshares-core/pull/237 merged
 
https://github.com/bitshares/bitshares-core/pull/5
Research of current seed nodes.
Forum post: https://bitsharestalk.org/index.php/topic,23715.0.html
Pull request with the last updated seed nodes info:
https://github.com/bitshares/bitshares-core/pull/241
Final updated in commit:
https://github.com/bitshares/bitshares-core/commit/c149a5b9b1f85577ce7f04226e4b0786d21ca104
 
https://github.com/bitshares/bitshares-core/issues/168
Requested more info in github. theoreticalbts is not in the bts team anymore but waiting reply from someone else.
Talked with vikram if no reply, issue will probably be closed.
 
https://github.com/bitshares/bitshares-core/issues/158
Tested and closed. the bug is not happening in the current version.
 
https://github.com/bitshares/bitshares-core/issues/191
Added feature to cli wallet to be the same as rpc call, this is with start and end time arguments.
Pull request: https://github.com/bitshares/bitshares-core/pull/242 merged
 
https://github.com/bitshares/bitshares-core/issues/103
This request is very old, most of them not needed anymore, we spoke with the issue initiator (Sigve) and decided to close the issue.
 
----------------
Like I mentioned in my last posts, we are implementing a lot of speed and UI improvements into BlockPay this coming week, so I might not want to publish a version upgrade till the end of the week this time, as it is some very large chunks of code that I will need to sift through. Like what? Transactions display, eReceipts redesign, fixing bin file importing on web wallets from mobile, and many different code improvements and tighter integration with our graphenej lib so that less trips to a server are needed. Not sure if I mentioned this or not, but we are installing BlockPay onto vending machines too, and those vending machine owners pay (on average) $1 per MB. So, cpu/mem and especially bandwidth utilization is a very major concern. Every byte counts as I always say. Let's do it right the first time.
 
edit: updated Project Leads in Jira
« Last Edit: March 05, 2017, 09:43:14 am by kenCode »
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Smartcoins Wallet v1.5.13 released.
Storing more in the local database now, means less trips to a server, means less bandwidth used by the device :)
As always, never store more in a wallet than you can afford to lose.
 
Google Play:
https://play.google.com/store/apps/details?id=de.bitsharesmunich.smartcoinswallet
 
Open source:
https://github.com/kenCode-de/smartcoins-wallet/releases/tag/v1.5.13
 
You should see v1.5.13 appear on F-Droid, Aptoide, Yandex, SlideMe and AlternativeTo app stores in the next few days too.
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
BlockPay v1.5.8 released.
https://play.google.com/store/apps/details?id=de.bitsharesmunich.blockpay
More speed improvements and UI cleanup in this release.
 
In v1.5.9 we will be doing some hardcore speed improvements, so it might take a week or so till I release v1.5.9.
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Smartcoins Wallet v1.5.12 released.
https://play.google.com/store/apps/details?id=de.bitsharesmunich.smartcoinswallet
 
- UI improvements in the brainkey backup dialog prompt
- Fixing bug that made the app crash if the user requested having the PIN dialog to be shown also before the send of funds
- Fixed another minor bug that made the app crash upon receiving a balance update.
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline ag2

  • Newbie
  • *
  • Posts: 12
    • View Profile
Quote
Stealth related:
 
Lots of progress made on Stealth this week! The 2 "serious issues" that we found last week with the libsnark and gadgets have been solved. So, now that that is out of the way, we have been debugging libsnark proofs and proving keys. This entire week has been spent in the debugger and logs, so no github commits to link here.
 
Now that we have reached this point in the core code, I am able to add another cryptographer to the Stealth team in about a week. This will help us speed the Stealth project up of course, and add more security auditing as we go, but I also require my teams to cross-train just in case someone has a family emergency or something.
 
We should be able to start proving transactions within 3 weeks, and then begin closing the gaps in the api, which is needed to connect to the UI. Most of the UI work, at least in a rudimentary sense, is already done. We can make it pretty later, for now, I just want it working asap. I pushed hard on that too because I want to begin public beta testing on our testnet as soon as possible.
 
I will use as soon as I am allowed  +5% +5% +5%

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Smartcoins Wallet v1.5.11 released.
https://play.google.com/store/apps/details?id=de.bitsharesmunich.smartcoinswallet
 
Sending Smartcoins and UIA's has been fixed.
Added support for importing bin files from web wallet and light client wallets.
Speed improvements.
 
What's up for next week:
Update eReceipts display, and make them look nicer.
Update Transactions display and make it work in real-time.
Add support for WIF key importing.
More speed and UI improvements.
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Tons of updates this week!
https://github.com/kenCode-de?tab=repositories
 
edit: removed this old image
 
BlockPay related:
 
The work from the previous week done in graphenej in order to be able to import the .bin backup files from the web wallet and light client wallets has been introduced now into both BlockPay and the Smartcoins Wallet. The commit adding this fix to the Smartcoins Wallet is here:
https://github.com/kenCode-de/smartcoins-wallet/commit/00ddf4e788eecb34b5ea63b8a32f64d115c7be63
 
An important bug that made it impossible to read the backup codes being generated by the BlockPay app was fixed in this commit:
https://github.com/kenCode-de/blockpay-s/commit/7167803e380da3ead24b9f0532d8766c63aad806
 
The last screen in the checkout process on BlockPay now also displays the Total, and is sending the customer 0.5% fee to the bitshares-munich account:
https://github.com/kenCode-de/blockpay-s/commit/9ecb736c43abb90b44520746fbe619b31f64da12
 
Small adjustments done in the settings screen, like selecting the "None" option for the UIA as a default, hiding the "reward ratio" line when this option is checked, a small issue with the wrong UIA being selected was fixed, and also fixed the lack of an asset description.
https://github.com/kenCode-de/blockpay-s/commit/96666c233bfd246ba8d2f1028cf78bb2cf6b076a
https://github.com/kenCode-de/blockpay-s/commit/be999af7d7bb9d5ff5befda496038e1c792d3a42
https://github.com/kenCode-de/blockpay-s/commit/c0a631b4c372854c55cd186ae7107903caa7023e
 
It was requested that the BlockPay app only could hold one merchant account at a time, and for that we had to disable the options to add more accounts once we already had one. Check this commit for that work:
https://github.com/kenCode-de/blockpay-s/commit/65cc60aa2cf51b3fbbe960dd03f855cd836bdd43
 
We now also correctly handle "partial payment" attempts for Smartcoin transactions, playing a special sound (transaction-error.mp3) and updating the UI to give the customer an additional 60 seconds (and new QR code) to pay the cashier what was supposed to be paid. Now it's impossible to cheat the merchant! This feature will of course be extended to disallow partial payments from Bitcoin and Altcoin customers as well, in a few days in the v1.5.8 release.
https://github.com/kenCode-de/blockpay-s/commit/72afc056181f4b4e3305e398a44df1fa64f4c89e
 
We are also removing the need to press that stupid Save button on the settings screen. We'll try to remove that button completely in the next release. Just gotta beta test it like crazy first.
https://github.com/kenCode-de/blockpay-s/commit/7eeb87dcaa4f605978f2681abfaf3d1f01b551bf
 
C-IPFS related:
 
This week we worked on file sharing between 2 networked nodes. While we're close to getting it to work, we still lack some functionality.
 
The good news is that we made good progress this week. The majority of the items we are building out will continue to be used in future versions. Only some of the "glue" that gives current users some functionality will need to be replaced. Here is a list of "critical path" items:
  • We are missing the ability to join the swarm. Procedures, encryption, and time to tinker are lacking, so we cannot perfectly connect to the go-ipfs implementation yet.
  • Because we are not part of the swarm, we do not have a list of peers to query for objects.
  • Because we do not have a list of peers, a C-IPFS peer must know the hostname and port of the machine that hosts the file.
If the user uses the hostname and port, he will (soon) be able to download an object. The good news here is that the swarm, protocols, and peer stuff are "front-end" pieces. The underlying querying and storing is almost complete. That means:
  • We are (or will be soon) able to move files around using the underlying mechanisms very close to existing GO versions.
  • The "glue" pieces that currently do this with the user specifying details do not have details buried deep in the code. When we sort out the swarm / encryption / peer stuff, we will finally be part of the swarm and can query and serve files to/from anywhere as existing peers do.
The reason I've got (soon) in there, is that the file transfer is still being worked on, and has not had enough beta testing done on it yet. I'm hoping to get some kind of working POC done tonight (Monday latest). But the clock is ticking.
 
Here's a rundown of our commits from this week:
 
c-multiaddr: We're finally getting down to needing this library, and the code was difficult to understand, and not efficient enough. We made modifications to make it more solid, but broke a few things that were not fully understood. That's all been fixed and upgraded, and here are the commits related to addressing:
 
https://github.com/kenCode-de/c-multiaddr/commit/fcb0cce437cea8b028bc8d52af921de41301b803
https://github.com/kenCode-de/c-multiaddr/commit/4e281ddd0877db8451e62554be310b264c280f39
https://github.com/kenCode-de/c-multiaddr/commit/0b8789ebbcdb30d4614b22fdc6c93c9caed42cc9
https://github.com/kenCode-de/c-multiaddr/commit/7da26ca04d050cbe6fdd926bbb6dd119f8b4e2f1
 
c-libp2p: The first part of the week was the buildout of protobuf-compatible objects that can be sent through the wire.
 
https://github.com/kenCode-de/c-libp2p/commit/cd27026cb5cd7691e210cb5865bf63a0f5635940
https://github.com/kenCode-de/c-libp2p/commit/7f00ce69fe14114e7df1bf23f18bfdfcb2507eb7
https://github.com/kenCode-de/c-libp2p/commit/4555cdfdf1c335bf2cf42295ea3f005b8d7da916
 
c-libp2p: The peerstore will be where remote connections to/from the local peers will be stored:
 
https://github.com/kenCode-de/c-libp2p/commit/9f0ee0cdb9a2c095713e4a6033897eeb17a6a2f6
https://github.com/kenCode-de/c-libp2p/commit/ddb12745968b0d7b7e0d0f065333b5ef8ee955c5
https://github.com/kenCode-de/c-libp2p/commit/e4a4226f5d9fcf584fefafab6ee4d7d924c39c25
 
c-libp2p: Finally the more ipfs-like ping was implemented. This is good because it also tests some of the same code that is used in file/object sharing:
 
https://github.com/kenCode-de/c-libp2p/commit/8139dc9d4806c86ec71c1a38b3e9d83cca2e481c
https://github.com/kenCode-de/c-libp2p/commit/f1aaae0f17a0b00f6f94b1122edefe4b31ee8ee2
 
c-ipfs: Many of the pieces that were built earlier are now being put to use. Network communications was the focus this week:
 
https://github.com/kenCode-de/c-ipfs/commit/f8e42867405c18aebeb1ad9cf9d0387bff7f40a8
https://github.com/kenCode-de/c-ipfs/commit/daefe7604fc00b8da28dc1aeb14bbf93fd197734
https://github.com/kenCode-de/c-ipfs/commit/ae48e058dd2e162dc3a29c709e8a6bd6b06daa3b
https://github.com/kenCode-de/c-ipfs/commit/7a6b1384448a303f115e9bc5fd6eb273e40eaf8f
 
Up this next week:
With the focus on file transfers, we didn't get a chance to work on the higher level encryption and connectivity portions like we wanted. If we can get the file transfer stuff working by Monday, even in a cobbled together way, we can work on breaking through this connectivity barrier, so as to join the swarm. That will be a huge step towards global acceptance.
 
Android Smartcoins Wallet:
 
A small improvement was done in the way the app checks the input fields of the send screen. Especially after you scan a QR code. The previous method not only was kind of wasting CPU by performing a check every 100 ms, but it was also unreliable, leaving sometimes the Send button disabled when the fields were actually correct and thus preventing the user from sending the funds. This commit contains that work:
https://github.com/kenCode-de/smartcoins-wallet/commit/77b849f40ec88be56eb7bfa7636eb21b67e6a970
 
Since the Smartcoins Wallet will soon support 6 chains (Bitshares assets, Bitcoin, Litecoin, Dash, Dogecoin and Steem), here is the rundown on that feature:
  • Added confirmation text and colors to the bitcoins transactions
  • Added confirmation text and colors to the bitcoins balance (using the transaction with less confirmations)
  • Changed Balance to get confirmed balance and unconfirmed balance and get the less confirmations
  • Test send in the api, to see what's needed to construct the transaction using existing libraries in Smartcoins Wallet
  • Change Transactions in database added blockheight, transaction index, priv script and pub script
  • Changed the primary keys of all tables in Smartcoins Wallet from string to integers
  • Adjusting BalanceFragment to work different with other coins than Bitshares
  • Adding labels and confirmations needed to the Coin information. With this the app now prints "BTC", or whatever the symbol is for the altcoin, and the number of confirmations needed can be changed for every supported coin.
  • Added send logic. This involved changing the account logic to get the proper change address and getting each utxo from each address.
At this point, we have completed all of the main functions that the wallet needs, send and receive transactions, also check the balance and get the balance history. The only thing left is to support memo/note fields for coins that support it. We should have that done by end of this weekend.
 
The work for next week is almost all UI, because the logic part is essentially done. So, for next week:
  • Upgrade the database where we store Contacts, but that should only take a few hours at most
  • For the QR code (sending and receiving); working on this, but this one will take a couple of weeks
  • See if we can begin with the testing on other coins (Dash and Litecoin will be first)
  • UI: Send Page
  • UI: Create QR Code
  • UI: Scanning a QR Code
..and if time allows this week:
  • Sending memos
  • Receiving memos
  • Add new BTC Contact
  • Make it easier to share your Contact address
  • Import contacts
  • Create eReceipt from multicoinsj
  • Add option to set preferred unit (ie: BTC, mBTC, uBTC)
  • Show the equivalent fiat value
If we keep moving at this pace, then at least the Bitcoin support will be completed in around 2 weeks, and the other coins will be very easy to add and finish since all of the base code is written already.
 
Stealth related:
 
Lots of progress made on Stealth this week! The 2 "serious issues" that we found last week with the libsnark and gadgets have been solved. So, now that that is out of the way, we have been debugging libsnark proofs and proving keys. This entire week has been spent in the debugger and logs, so no github commits to link here.
 
Now that we have reached this point in the core code, I am able to add another cryptographer to the Stealth team in about a week. This will help us speed the Stealth project up of course, and add more security auditing as we go, but I also require my teams to cross-train just in case someone has a family emergency or something.
 
We should be able to start proving transactions within 3 weeks, and then begin closing the gaps in the api, which is needed to connect to the UI. Most of the UI work, at least in a rudimentary sense, is already done. We can make it pretty later, for now, I just want it working asap. I pushed hard on that too because I want to begin public beta testing on our testnet as soon as possible.
 
Alfredo Garcia, Bitshares Core Dev update:
 
Fixed: Don't print private keys in log on witness startup
https://github.com/bitshares/bitshares-core/issues/93
PR: https://github.com/bitshares/bitshares-core/pull/236 - merged
 
Added function to "api call to obtain an account's trad history for a specific asset-pair" issue:
https://github.com/bitshares/bitshares-core/issues/222
PR: https://github.com/bitshares/bitshares-core/pull/237 - not merged yet. we want to enhance performance on this one a bit more first.
 
Testing additional changes at nospam branch (websocket spammed too much data).
 
Testing xeroc comment "sending notification twice". This is now fixed in the nospam branch at:
https://github.com/bitshares/bitshares-core/pull/234/commits/2487689f26a81a633cc2659d7d0311c6d848f467
 
Fixed: Uninstall light client does not remove "personal info"
https://github.com/bitshares/bitshares-core/issues/227
Issue is fixed at https://github.com/bitshares/bitshares-ui/pull/82 - merged
« Last Edit: March 03, 2017, 10:48:34 am by kenCode »
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
BlockPay v1.5.7 released.
https://play.google.com/store/apps/details?id=de.bitsharesmunich.blockpay
 
Loyalty Points section in settings screen bug found where it forgets which token was to be sent, or not. Fixed. Speed improvements made to the QR code display. Less bandwidth is now consumed due to our api upgrade at our servers.
 
Up next this week: Give the Transactions display a facelift and tighter integration with graphenej library. Clean up the settings screen. Human update the 44 language files. Upgrade the LifeTime Member feature to graphenej. More UI and speed improvements coming...
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline kingslanding

  • Full Member
  • ***
  • Posts: 90
    • View Profile
Just saw this.  It'd be nice to see more media attention like this paid to BlockPay.

https://coinidol.com/bitshares-munich-to-unleash-project-stealth/

Thanks for all the hard work @kenCode, Christoph, and the whole blockpay team.
BTS username/address:   kingslanding9999

Offline karnal

  • Hero Member
  • *****
  • Posts: 1068
    • View Profile
Been gone for awhile.

Happy to see that stealth is being worked on, as for everything else, need to take a few days to catch up with things.

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Thank you Thom :)
 
BlockPay v1.5.6 released. More cleanup being done on the Settings screen. You can now import .bin files from the web wallets and light client wallets. Some crashes have been reported, so we added support for more device configurations. Loyalty Points section in settings screen is now being upgraded to allow for a searchable/editable auto-complete field instead of one huge list, and we should have that finished up for you this week. Thank You screen updated to show exact (typed in) amounts. More UI tweaks done.
https://play.google.com/store/apps/details?id=de.bitsharesmunich.blockpay
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline Thom

VERY nice looking website for BlockPay Mr. Ken, me likes it a lot!

I discovered I can't use blockpay on my Android 4.2.2 phone. However, I was able to create an account and send it some funds on the old 1.05 beta version. If it can send and receive a few coins it will serve my purposes while at Anarchapulco. I also couldn't use the Jaxx wallet, but Mycelium and Electrum mobiile wallets seem to work OK so I'm covered there too.

Looks like I need to update the "ROM" in my phone (if possible) or get a new one to use BlockPay.

Nice work tho, way to go!
Injustice anywhere is a threat to justice everywhere - MLK |  Verbaltech2 Witness Reports: https://bitsharestalk.org/index.php/topic,23902.0.html

Offline kenCode

  • Hero Member
  • *****
  • Posts: 2283
    • View Profile
    • Agorise
Keep up the great work.  I always look forward to Friday's updates!

Ken, thank you for the updates. 

GREAT JOB KEN, YOU AND CHRIS ARE AN INSPIRATION  +5% +5%

Thank you guys :)
 
What portion of time are you dedicating to the the wallet improvements vs stealth?

Each project and product that we are building are being done simultaneously by one or more people on multiple Teams. It is physically impossible to code them any faster than they are being coded right now.
 
Keep in mind, we are inventing the wheel on most of them, and the api's and libs that we have to create just to support these products don't even exist yet. This is why I will not give out "completion" dates. There is a lot more to these products than what a UI can show you. If it makes you feel any better, I hope to get an income from these products as well, so rest assured, I also want them built as fast as a humanly possible.
 
Odoo and all of the BlockPay Integrations will take advantage of the new Core (we'll be finishing up the DHT and swarm in the next week or so). Once I am comfortable with the new Core for our products, then the 2.0 Integrations will begin. The Odoo code is already done so we are going to just apply the new Core to it for its immediate release.
 
Rodrigo (CMO) and Chris (CEO) are Closing deals with major merchants like crazy, including signed Letters Of Intent (LOI). I think they're still up in Berlin right now. They usually post their updates here:
https://steemit.com/@bitshares-munich (http://steem.link/uDujo)
kenCode - Decentraliser @ Agorise
Matrix/Keybase/Hive/Commun/Github: @Agorise
www.PalmPay.chat

Offline mike623317

  • Hero Member
  • *****
  • Posts: 637
    • View Profile

Offline fav

  • Hero Member
  • *****
  • Posts: 4278
  • No Pain, No Gain
    • View Profile
    • Follow Me!
  • BitShares: fav
don't care about stealth, please keep the updates as detailed and broad as possible.