Slashdot Mirror


IBM Completes Blockchain Trial Tracking a 28-Ton Shipment of Oranges (coindesk.com)

IBM recently completed a trial of blockchain technology to track a shipment of mandarin oranges from China to Singapore. From a report: Announced last week, 28 tons of mandarin oranges, or 3,000 cartons containing approximately 108,000 fruits, were delivered ahead of Chinese New Year celebration on Feb. 5 (mandarin oranges are a symbol of prosperity, IBM explained). The main shipping document, the bill of lading, was recorded on a blockchain. This document serves as a proof of ownership of goods, as a receipt of goods and a contract of the shipment, and normally it's mailed to all parties involved in the shipment, including banks providing trade financing.

For the pilot, IBM created an electronic bill of lading, or e-BL, which helped reduce and speed up administrative processes "to just one second" as the document flow is automated, the company claims -- while the standard paper-based procedure takes five to seven days. "By using the e-BL, we have seen how the entire shipment process can be simplified and made more transparent with considerable cost savings," Tay Khiam Back, the chairman and CEO of fruit importer Hupco, said in a press release.

86 comments

  1. Or just use the fedex api by Anonymous Coward · · Score: 0

    but why do that?

    1. Re:Or just use the fedex api by zlives · · Score: 1

      doesn't cost enough to justify IBM using it.

  2. Interesting... by Anonymous Coward · · Score: 0

    ...but were the oranges 3D printed?

    1. Re:Interesting... by DickBreath · · Score: 0

      Were they inspected by customs at import time to ensure they matched the president's natural color?

      --

      I'll see your senator, and I'll raise you two judges.
    2. Re: Interesting... by Anonymous Coward · · Score: 0

      I would imagine. My advice is to stay in the right lane baby!

    3. Re:Interesting... by K.+S.+Kyosuke · · Score: 1

      From melamine? Possibly.

      --
      Ezekiel 23:20
  3. Consensus vs Authenticity by DickBreath · · Score: 2

    Only if you think Consensus beats Authenticity. I'd somehow feel safer having signed documents where I can verify the digital signature, and trust the certificate chain. Even if the parties pre-arrange to use self-signed certificates.

    Or maybe use the Consensus approach to Generate your self signed certificate, thus avoiding any CAs. That is a lot less computational work and waste of resources. You only generate your certificate occasionally. But you could use it to sign much more frequently.

    --

    I'll see your senator, and I'll raise you two judges.
    1. Re:Consensus vs Authenticity by JesseMcDonald · · Score: 2

      Most blockchains incorporate both Authenticity and Consensus. Each transaction must be signed with an appropriate private key to be considered valid. Consensus is there to resolve conflicts among otherwise valid transactions.

      --
      "The state is that great fiction by which everyone tries to live at the expense of everyone else." - Bastiat
    2. Re:Consensus vs Authenticity by Joce640k · · Score: 0

      Blockchains depend on 'work' for authentication. If you can do more work than the work that was done to sign a document then blockchain is useless. Bitcoin works because nobody has enough computing power to beat the system.

      How much computing power was dedicated to this shipment of oranges? How much computing power could possibly be dedicated to the hundreds of millions of shipments that happen every single day? Nowhere near enough, that's how much.

      This whole thing is a sham, just marketing people playing with buzzwords.

      --
      No sig today...
    3. Re:Consensus vs Authenticity by DickBreath · · Score: 1

      So much computing power. I'll bet Blockchain technology was invented by both electricity suppliers and computing equipment suppliers.

      --

      I'll see your senator, and I'll raise you two judges.
    4. Re:Consensus vs Authenticity by HelpTheNewOverlord · · Score: 2

      Blockchain != Bitcoin

      Bitcoin uses a blockchain and consensus but there is no fundamental constraint forcing anyone to use both together.

    5. Re:Consensus vs Authenticity by JesseMcDonald · · Score: 1

      Blockchains depend on 'work' for authentication.

      Authentication in blockchains is based on private keys, not "work". Short of brute-forcing the private key—which would undermine any cryptography-based system—no amount of processing will permit you to spend Bitcoins for which you don't already have the key.

      If you can do more work than the work that was done to sign a document then blockchain is useless. Bitcoin works because nobody has enough computing power to beat the system.

      The work required to sign a Bitcoin transaction is trivial. The infamous 51% attack is an attack on the consensus algorithm, which determines which (valid) transactions to include in the blocks and which block is currently at the tip of the blockchain. No signing is involved at this stage. A successful attacker with more than 50% of the processing power in the network could, at most, block valid transactions from becoming recorded in the blockchain, or remove transactions which were added to the blockchain in the (recent) past. This can allow double-spending (the replacement of one valid transaction with another) if measures were not put in place to prevent it, such as waiting periods and periodic checkpoints. However, only those who depend on one of the attacker's recent transactions would be affected by an attempt to double-spend. In general a 51% attack on Bitcoin for the purpose of double-spending funds would represent a great deal of effort for a relatively minor payout.

      --
      "The state is that great fiction by which everyone tries to live at the expense of everyone else." - Bastiat
    6. Re:Consensus vs Authenticity by divide+overflow · · Score: 1

      You are confusing blockchain with bitcoin mining. They are completely different things.

    7. Re:Consensus vs Authenticity by Anonymous Coward · · Score: 0

      That's a wildly inaccurate understanding of how bitcoin works. Also since there's no point to this system having a proof of work it likely uses a proof of stake. Which is exactly the key signing that was described but with the distribution of signed messages distributed via a DHT network instead of email.

    8. Re:Consensus vs Authenticity by Anonymous Coward · · Score: 0

      Except both result in permabans. Effectively, both of these methods could be used to completely bar trade if the trusted third party refuses to do business a participant.

      In the case of the third party CA, it's a case of who owns the issuing CA. If they refuse to do business with you or revoke your cert, you have no legitimacy.

      In the case of third party consensus, it's a case of who can influence the most individuals within that consensus. If they can convince enough individuals, you have no legitimacy, and your previous transactions could be revised.

      For blockchain, the question is who owns the servers? If it's a cabal of international banks, it wouldn't take much for an individual to be rendered unable to compete in the market place. (Espeically if local laws mandate use of their blockchain for all transactions.) Not a defect of the technology, but rather the implementation of it.

      People should be fearful of this, as it effectively creates an unaccountable middle man with the defacto power to veto transactions between individuals.

    9. Re:Consensus vs Authenticity by rtb61 · · Score: 2

      When it comes to food, should system be required by law to be manual. Electronic well, a solar flare is an inevitable guarantee and doing this, just caused say between 10,000 and 100,000 people to starve to death. Serious decision need to be made, else failure will be catastrophic and right now decision making is blinded by unadulterated psychopathic greed.

      --
      Chaos - everything, everywhere, everywhen
    10. Re:Consensus vs Authenticity by jblues · · Score: 1

      Not if the 'work' was work that would actually happen, on computing platforms like Amazon Elastic Cloud, Lambda, Microsoft Azure, Google and so forth. In the past currency was Rum. In the future currency will be CPU clicks.

      --
      If it acquires resources on instantiation like a duck, then its a shared_ptr<Duck>
  4. How is this better than a database? by Anonymous Coward · · Score: 0

    Blockchain tends to work well when you have a bunch of people that don't trust one another, but trust the group. This scenario is simply tracking packages, where you trusting one central authority (the maintainer of the DB) seems perfectly fine.

    So why would you use blockchain for this rather than a database, or some other centrally managed data storage?

    1. Re:How is this better than a database? by zlives · · Score: 1

      because cloud... er i mean blockchain

    2. Re:How is this better than a database? by DickBreath · · Score: 1

      Trusting the group means trusting whoever has enough compute power to manipulate the blockchain.

      On the web you have people that don't trust each other but trust central certificate authorities -- more or less.

      Or, what if you used blockchain to sign your certificates, and then used certificates that others would trust because they trust the group that your certificate is really yours? This costs a whole lot less compute power.

      --

      I'll see your senator, and I'll raise you two judges.
    3. Re: How is this better than a database? by vaibhav_panchal · · Score: 1

      Shared infrastructure means less operational cost for each parties involved in supply chain.

  5. Centralized blockchains === Data base by goombah99 · · Score: 5, Interesting

    block chains either have to go to a central authority or they have to be distributed among a limited set of nodes that that sync to maintain the longest chain.

    If you want it to be secure then I think that you either have to use a very expensive hash and pay the Miner (like bit coin proof of work) or you have to limit this to a distributed set of miner nodes that use a shared secret.

    one of the other has to be in place I think because otherwise anyone coutd forge the chain if it's free to hash and not a closed set of trustee nodes.

    Since were talking oranges , individually, then you need the cheap method with a centrally authorized set of approver nodes.

    But if you are going to have such a centralized authority. Why not a regular old fashioned database?

    I just don't understand what is special here about the block chain.

    It does have some robust aspects of syncronizing a distributed set of approver nodes by consensus (longest chain wins). But that isn't really special and can be done with databases that synchronize too.

    --
    Some drink at the fountain of knowledge. Others just gargle.
    1. Re: Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      You sound like an old guy from 2010's. Everyone knows blockchain is superior in every way, it can even cure cancer.

    2. Re:Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      "you either have to use a very expensive hash" - it doesn't have to be 'that' expensive at all. You could have it sit idle for 10 seconds and compute the hash, verify it against known, then complete a transaction. No need for limited nodes.

      A central "verifier" is always needed though whether it's effectively distributed or not. Someone has to manage the system in case of a problem.

      "Why not a regular old fashioned database?" Speed, availability, requires dedicated services.

    3. Re: Centralized blockchains === Data base by Frobnicator · · Score: 1

      It's all about the blockchain these days.

      Go open a job board and you'll see companies looking for blockchain programmers, blockchain data scientists, even blockchain community managers and blockchain marketing associates because those blockchains aren't going to market themselves.

      Browsing few, I even see a listing for a blockchain blogging expert. That's a real job, apparently. Somehow.

      Everything is better with Blockchain. ;-)

      --
      //TODO: Think of witty sig statement
    4. Re: Centralized blockchains === Data base by PolygamousRanchKid+ · · Score: 2

      Everything is better with Blockchain.

      Blockchain is the new bacon.

      --
      Schroedinger's Brexit: The UK is both in and out of the EU at the same time!
    5. Re:Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      I don't think you understand what makes Bitcoin secure.

    6. Re: Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      Well probably not cure cancer, but it may be good for intra-nasal warts. Not sure what 'good' means however.

    7. Re: Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      I use my CUECAT SCANNER to scan in groceries I want to order from the INTERNET via an APP that's CONTAINERIZED on a VPS on LINUX running on THE BLOCKCHAIN!!!!!!!!!!!!!!!!!!111111111111eleven

    8. Re: Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      That is so true. I have been completely cancer free since 2010.

    9. Re: Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      I'd say it's more the new XML, since unlike that and Blockchain, everything really is better with bacon/butter.

    10. Re:Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      This is actually the perfect example of blockchain application and a use case where it can provide value over a more traditional database. What you describe is called a 'proof of stake' model. Where a node has the authority to create a block because it can prove it has a stake in the functioning of the network. Generally by being the holder of coins or tokens or whatever. You don't actually spend the coins for a transaction but your possession of them is what other nodes recognize as your authority to make declarations of your transactions.

      If at every stage of the transaction and delivery process the oranges were in possession of one company and its subsidiaries, then there is no advantage of using blockchain over a database. Just have corporate setup the database app and distribute logins. The usefulness of a blockchain for this is that it allows separate discrete entities to record information in a shared repository that none of the participants can retroactively modify. Receipts and bills of sale ect. only really become important when there's a discrepancy in what parties expected and they each want to prove they're right.

      Essentially this is a level of trust between zero and full. It isn't full trust because you don't trust the other involved parties to not modify the shared records and claim falsehoods. But you also trust them enough to post to your network and not spam it by distributing some fraction of the initial coins.

      The distribution of the stake coins can be done however the network creator likes. You could create a system where people can continually divide their coin to add more people to the network. Or you could sell them, requiring they actually put up front stake into the system as a show of good faith they will use it correctly.

    11. Re:Centralized blockchains === Data base by ras · · Score: 1

      Since were talking oranges , individually, then you need the cheap method with a centrally authorized set of approver nodes.

      Well done - that is exactly what it is. The thing IBM is hyping is called appropriately enough Hyperledger. They call it a "permissioned blockchain", which has about as much in common with the blockchain bitcoin uses as "permissioned rape" has in common with "rape".

      To be fair to IBM, it is probably useful thing in this context. As others have pointed out, The Bill Of Lading Electronic Registry Organization (BOLERO) already does something very similar, and it is useful. Hyperledger is just a chained of signed statements (I bought 10 oranges off the batch of 1000 Y had) - but those statements could be about anything, not just bill of ladings.

      Because it lacks proof of work it really doesn't have much in common with Bitcoin. It certainly doesn't use a custom "blockchain like" data structure - Hyperledger stores it's state in a conventional database like LevelDB or CouchDB, so it is a conventional database for some definition of conventional.

    12. Re: Centralized blockchains === Data base by ceoyoyo · · Score: 1

      The bacon craze was created to sell undesireable cuts of pork. So very astute.

    13. Re:Centralized blockchains === Data base by Anonymous Coward · · Score: 0

      I don't think you understand the difference between bitcoin and blockchain.

  6. Bills of lading do not take 5 to 7 days by Anonymous Coward · · Score: 0

    Its a 1 page PDF with like 3 relevant fields to anyone looking at one. It takes one second to read one. They simplified nothing.

    1. Re: Bills of lading do not take 5 to 7 days by Anonymous Coward · · Score: 0

      Not true. The fact is, there are no intermediate options between paper forms sent via postal mail and blockchain. None! Blockchain is a miracle.

  7. System is only as good as its weakest link by Solandri · · Score: 4, Insightful

    And in this case, the weakness will be linking the blockchain to the physical goods. Anyone can still crack open the container and steal oranges during transit. A drug smuggler can still swap a shipment of oranges with a shipment of drugs by switching the labels. And the delivery guy can still take a snapshot of your package on your porch as "proof" it was delivered, then load it back up into his van and take it home.

    1. Re:System is only as good as its weakest link by Anonymous Coward · · Score: 0

      I stopped taking this seriously when I saw the guy's name was "Take 'em back" (Tay Khiam Back).

    2. Re:System is only as good as its weakest link by Anonymous Coward · · Score: 0

      That was still a flaw in every previous system as well. Using blockchain for your documentation is for preventing fraudulent modification of documents after the fact. It's still up to the parties involved to verify physical goods. Although in some cases it's possible to automate this. If you're trading in goods that can be analyzed by a mechanical system it can respond to changes and push changes to the blockchain ledger as well.

    3. Re:System is only as good as its weakest link by 14erCleaner · · Score: 1

      Or the guy with the password to the orange wallet might suddenly die, and the oranges won't be accessible any more.

      --
      Have you read my blog lately?
    4. Re:System is only as good as its weakest link by brunes69 · · Score: 1

      They can already do all of those things today. This system is still many orders of magnitude faster and saves a lot of money.

      You're tilting at windmills here.

  8. It's git for everyone else by Anonymous Coward · · Score: 1

    Basically, the rest of the world is going to start recording their transactions in git repositories.

    It provides compounded verification and cryptographic authentication (e.g. commit signing).

    However, nobody would understand "IBM completes Git trial". In fact, people might be offended. The cool word is "blockchain".

  9. Stupid? Or incomplete? by Spinlock_1977 · · Score: 1

    How does a blockchain entirely owned by one company (IBM) guarantee the transaction an immutable transaction history? Is the code open source and available to be run / scrutinised by others?

    --
    - The Kessel run is for nerf herders. I can circumnavigate the entire Central Finite Curve in a lot less than 12 parse
  10. Would be more ironic if they tracked tulips by Anonymous Coward · · Score: 0

    The bubble's burst, everyone's losing their money, blockchain for anything is like using activex on IE6.

  11. I don't think I get it. by fuzzyfuzzyfungus · · Score: 1

    I can easily imagine that a heavily-stage-managed and custom documentation process would be way faster than the lowest-common-denominator legacy paper arrangement; but I find it much harder to understand why the 'blockchain' based updated electronic records process would be faster or more efficient than a similarly updated electronic records process that's based on some boring database instead.

    It's easy to compare updated processes against legacy ones and get good results(especially given that there are probably way more techs watching this order and making sure nothing bad happens than any normal one enjoys); but if you want 'blockchain' data what matters is how it stacks up to a similarly updated process that uses a different backing mechanism.

    I'd also be curious about how this beats the 'garbage in/garbage out' problem: Blockchain storage makes it very tricky to munge records after the fact without being noticed; but have absolutely no effect on any of the steps where someone needs to accurately and honestly observe the state of the world at a given step and write that into the record. The fun cryptographic integrity doesn't kick in until you have the electronic record; the process by which that record is produced is unaffected; and where a variety of opportunities for adding lies present themselves.

  12. Sounds familiar. by bob4u2c · · Score: 1

    Isn't this just an electronic document? Couldn't you just put a QR code on the containers that linked to a copy of all the paperwork online, or fire a trigger that good have been received? Once the code is scanned at its destination an email of the documents are sent to all parties that the good have been received. You also log the ip address of the device making the web request as proof that it was done on the dock (or receiving warehouse, maybe include a pin that has to be entered as well).

    If you wanted every party to sign off, you could make those e-mails instead link to a document management system that as each email link is clicked you record the party has seen the document, and you give them a simple "accept"/"deny" links to click. I seem to remember Sharepoint having something like this. Why the need for blockchain? Seems like they created a convoluted way of using blockchain so they could say blockchain.

    1. Re:Sounds familiar. by Frobnicator · · Score: 1

      Isn't this just an electronic document?

      Yes, but no. This is a golden marketing moment.

      It doesn't matter that the entire system could be built better using traditional databases, better by many metrics including development costs, maintenence costs, and security. This is not about the documents being used.

      This is about the marketing potential. The press headlines that the masses will not understand outweigh the development costs. All the masses see is "IBM is using a magical new technology and is on the cutting edge, you can't go wrong by picking IBM." The global headlines they can cite for the next few years are easily worth $10M to IBM's global marketing groups.

      --
      //TODO: Think of witty sig statement
    2. Re:Sounds familiar. by bob4u2c · · Score: 1

      Ahh, so sorry for the confusion. Please feel free to continue marketing speak.


      BLOCKCHAIN, BLOCKCHAIN, BLOCKCHAIN

      p.s. As for the issue of trust, don't they use some kind of escrow? And if they do, wouldn't escrow handle all that?

  13. IBM needs a new CEO by Anonymous Coward · · Score: 0

    The last time IBM was slightly good was when they got on the Linux hype train early during the dotcom boom. But then they blew it by going all in on outsourcing to India. I guess they think they can get some of the magic back if they jump on the blockchain boom early, too bad the blockchain boom already busted. Womp Womp. Glad I dumped my IBM stock a long time ago.

  14. Re:Stupid? Or incomplete? by jwhyche · · Score: 4, Insightful

    It doesn't. Blockchain is one of the most over hyped technologies of the last two decades. There are some things where it might be useful but most of the time these companies are just using where a standard database would work just as well. Sometimes better. This is one of those times.

    --
    I read at +2. If your post doesn't reach that level I will not see or respond to it.
  15. Re:Centralized blockchains === UneditableData base by 0100010001010011 · · Score: 1

    You can't go back and forge early documents at a later point.

    You can't go into the DB and just decide to edit a port of origin as all of the metadata that goes into a record also depends on all of the metadata prior to it.

    Give me root access to your databases and I'll make your products show up from anywhere in the world. What happens when Orange company gets sold and Orange2, Inc wants to scrub any incriminating data showing Oranges from region X caused cancer? Edit the database.

    If you can figure out how to Edit the blockchain you'll be richer doing that than bothering with oranges.

  16. Re:Stupid? Or incomplete? by Anonymous Coward · · Score: 0

    Holy shit. Good point. How is that supposed to work exactly? Might as well just use a fucking regular old database...

  17. BOLERO by nickovs · · Score: 4, Informative

    The Bill Of Lading Electronic Registry Organization (BOLERO) has been allowing shipping companies to use electronic, cryptographically secured bills of lading for more than 20 years. Unfortunately they don't use !!!BLOCKCHAIN!!!, so obviously the IBM solution is the only real alternative to using paper Bills of Lading.

    --
    If intelligent life is too complex to evolve on its own, who designed God?
    1. Re:BOLERO by Anonymous Coward · · Score: 0

      Yea, I thought it was a really disingenuous "test" to compare blockchain to not just paper, but paper-in-the-mail. Testing against a regular electronic chain of custody document or against something established like BOLERO would have been much more valid.

      Typical IBM BS.

    2. Re:BOLERO by CoolCash · · Score: 1

      Horse and buggy was used for centuries.. but who needs innovation.

    3. Re:BOLERO by StormReaver · · Score: 1

      IBM's innovation is replacing a horse and buggy with a buggy and horse, and calling it new technology.
      It's still just a scam meant to separate people from their money, with absolutely no added value in return.

    4. Re:BOLERO by stric · · Score: 1

      Better than replacing it with a buggy horse.

    5. Re:BOLERO by Anonymous Coward · · Score: 0

      More like replacing a buggy and a good work horse with a buggy and a wild arab, because arab horses are the latest shit! Even if all it does is make the horse suffer and the buggy land in the ditch...

  18. Re:Centralized blockchains === UneditableData base by Junta · · Score: 1

    I suppose the question is how much corruption/fraud requires a party to go back and modify records rather than falsifying them in the first place.

    --
    XML is like violence. If it doesn't solve the problem, use more.
  19. Always wanted to compare apples to oranges by klubar · · Score: 1

    For their next demonstration they are going to track a shipment of apples (the fruit). This will allow them to claim that chain has conclusively proved that you really can compare apples to oranges. (The next press release.)

  20. What part of this actually needs block chain by Anonymous Coward · · Score: 0

    I'm a little confused. Which part of this actually requires a blockchain?

    And lets just call blockchains what they are.. Basically, a secure distributed hashtable.

    I understand that blockchain is a nice buzzword similar to "the cloud" that encourages people to be interested in it. But we really need to start calling out dumbasses (who in this case appears to be a blockchain company) who pushes this trash.

  21. you lost me at "e-BL" by Virtucon · · Score: 1

    I'm sorry the 90s called and they want their "e" back.

    --
    Harrison's Postulate - "For every action there is an equal and opposite criticism"
  22. Prosperity by The+Evil+Atheist · · Score: 1

    mandarin oranges are a symbol of prosperity, IBM explained

    That needs to be explained? By IBM?

    Everything is a "symbol of prosperity" in Chinese culture. There isn't anything in Chinese culture that doesn't come down to being about wanting to have lots of money.

    --
    Those who do not learn from commit history are doomed to regress it.
    1. Re: Prosperity by ceoyoyo · · Score: 1

      Donâ(TM)t be silly. Only half the things are symbols of prosperity. The other half are symbols of death.

    2. Re: Prosperity by The+Evil+Atheist · · Score: 1

      Even in death, we burn fake money as offerings, as though money is still important in the afterlife. Even the symbols of death are also about money in the end.

      --
      Those who do not learn from commit history are doomed to regress it.
  23. Re:Stupid? Or incomplete? by Fnkmaster · · Score: 1

    ROFD beats Blockchain every time. Regular Old Fucking Database.

  24. Re: Centralized blockchains === UneditableData bas by Anonymous Coward · · Score: 0

    "falsified in the first place." This is easy to guard against at discrete points in time, for example, when the shipment of oranges changes hands. This is possible by having all parties sign off on the transaction at that time, and a brief wait while several more blocks from other parties are added to the chain. At this point, the data cannot be retroactively falsified, and a single customs agent can assure this with a one-time signature.

  25. Re:Centralized blockchains === UneditableData base by Anonymous Coward · · Score: 0

    And that is all immaterial. We have ePedigree for drug tracking though supply chain, it was signed and non-repudiated and the final recipient had all the history. The distribution companies shot it down (like had a regulation repealed). Now we have a DSCSA, distributed brokers for searches, information about one transaction exist in only one repository, the implementation are horrific, and there are retractions and corrections.

    No industry will work on public non-repudation where every member can see the entire history end to end, even if it is a regulatory mandate. All the big players will have their conies elected to power and the regulations changed.

    Block chain is some zitsy tech nerd wet dream. The actual world doesn't want it.

  26. Re:Centralized blockchains === UneditableData base by Anonymous Coward · · Score: 0

    The point is these aren't actual blockchains because there are no thousands or more of computers calculating hashes.
    To edit these so-called "blockchains" you just edit what you want and re-calculate the hashes, no problem there. Then you need to make sure to replace all references to the "final" hash.
    It's about the same level of "difficult" as rewriting the history of a git repo. A PITA and if someone has the original final hash they might notice, but not really a challenging task.

  27. Re:Centralized blockchains === no sense by Anonymous Coward · · Score: 0

    * Immutable technology already exists for 'ordniary' DBs. Think something like git.

    * 'Editing' a blockchain can well be possible depending on the consensus algorithm.

    * Really, no one so far considered mutability a problem with DBs. There are several more important considerations - e.g. speed, availability, (eventual) consistency - which are far more important.

  28. Doesn't sound very reliable by scdeimos · · Score: 1

    It only delivered "approximately" 108,000 fruits.

  29. I don't pretend to understand it all by rsilvergun · · Score: 1

    but if I had to make a wild guess I'd say it lets them offload some of the database processing to external "nodes", e.g. to another company.

    Think about how much computer time costs for a large database. Now imagine if you could shift that cost to somebody else...

    --
    Hi! I make Firefox Plug-ins. Check 'em out @ https://addons.mozilla.org/en-US/firefox/addon/youtube-mp3-podcaster/
  30. Re:Centralized blockchains === UneditableData base by Anonymous Coward · · Score: 0

    YES YOU CAN VERY VERY VERY VERY EASILY FORGE A BLOCKCHAIN. The art is in coming up with a way to stop that (e.g, bitcoin). When you catch up with the rest of the class you can raise your hand and post.

  31. Been in logistics for 28 years by argStyopa · · Score: 1

    ....and we've been using express B/Ls (ie no originals "mailed" anywhere) since you had to fax them before email was a widespread thing.

    When original docs are required, ie for a letter of credit, they still use consigned BLs to really they're docs that bottleneck the PAYMENT chain, not so much the goods at all.

    As far as proof of ownership, perhaps some people use them in sketchy parts of the world, but "to order" BLs that *actually* are a negotiable title to the goods...I haven't seen one in at least 20 years. Otherwise all transactions are consigned bills of lading in which case title is transferred to the consignee according to the Incoterms.

    Short version: this is a complex solution to something that's not a problem, and solves nothing (that I can see) that IS a problem in this business space.

    --
    -Styopa
  32. 5-7 days? by argStyopa · · Score: 2

    "...For the pilot, IBM created an electronic bill of lading, or e-BL, which helped reduce and speed up administrative processes âoeto just one secondâ as the document flow is automated, the company claims â" while the standard paper-based procedure takes five to seven days...."

    Um, BLs are required to be produced within 48 hours of sailing, and that's been the standard since at least the 1980s. Usually it's less than that, and in fact with the implementation of ISF carriers are forced to issue BL numbers (the key bit) BEFORE THE VESSEL HAS EVEN SAILED (ISF is only relevant to the US, but I believe this process has ended up speeding BL# issuance worldwide anyway).

    And a vanishingly small % of any shipments are issued with paper BL's anyway. I haven't seen a BL in the MAIL for 15+ years.

    --
    -Styopa
  33. Yet another content-free Blockchain article by Phaid · · Score: 1

    OK, so they created an e-BL and stored it on a blockchain. Whoopee, I can do that with my toy Multichain setup in 30 seconds. Now what?

    How many participants were on that blockchain? Was the transfer of custody of the oranges recorded via asset transfer on that blockchain each step of the way? Was the e-BL used as a contract document by legal entities who received it via the blockchain, and did a bank connected to the blockchain use it as proof of collateral, as the article implies?

    Because there have been a lot of big-name exercises in practical applications of Blockchain which then turned out to be a single node using it as a simple database, like the much-ballyhooed World Food Program blockchain exercise did.

  34. 16 Tons by Anonymous Coward · · Score: 0

    Updated by IBM:

    "You get 28 tons, and what do you get?
    Another day older and deeper in debt.
    St. Peter don't you take me, I won't go,
    I owe my soul to the company store!"

  35. The difference is the number of parties involved by brunes69 · · Score: 1

    There is a lot of difference between a blockchain consortium among a fixed set of semi-trusted parties, and a centralized database.

    In the former, the parties trust each other, but only as far as they can throw each other. The network is full of competitors and those who could see substantial if fraudulent transactions could occur in their favour.

    This is why Blockchain has a large advantage over a central database for this kind of scenario - not only are all the transactions on the chain and immutable, the code that operates the chain, is on the chain itself - which means that all parties on the chain have to agree to any code changes around the transactions, which means they know no one is messing with anything without everyone else knowing about it. You can't do this kind of scenario with a central database.

  36. Whatchain? by Anonymous Coward · · Score: 0

    Turbo laser 5000 tracking system! It's the shit!!

    Please... This is a paperwork issue and blockchain changes nothing, it's just one of many possible implementations. Seems overly complicated for this application. As others have pointed out, a secure auditable DB is all that's needed.

  37. Re:Stupid? Or incomplete? by Spinlock_1977 · · Score: 1

    Yup, if the nodes in the blockchain are all controlled by a single entity, an ROFD would do. Or maybe just a text file & notepad.

    The problem blockchains solve is one of distrusting peers having a way to perform trust-able transactions with a trust-able transaction history. If you remove the "distrusting peers" part, surprisingly, you end up with untrustable transactions and transaction history.

    --
    - The Kessel run is for nerf herders. I can circumnavigate the entire Central Finite Curve in a lot less than 12 parse
  38. Re: Centralized blockchains === UneditableData bas by ceoyoyo · · Score: 1

    Sure you can. You can write whatever you want in a block chain. The only restriction is that to make everything line up, you have to recompute the hashes for all the subsequent blocks. Thatâ(TM)s not hard either.

    Now, if you publicize the data, someone might catch you doing it. Just like they would if you published a blog entry or tweet you regretted and deleted it.

    Block chains arenâ(TM)t magic.

  39. Re:Centralized blockchains === no sense by Anonymous Coward · · Score: 0

    git isn't "immutable".

    If you and I share a git repo and you force commit to remove a change, I could detect it but still have no way of determining to legal standards who did what.

  40. Re:Stupid? Or incomplete? by CanadianMacFan · · Score: 1

    Just wait until someone figures out a way to combine AI and blockchain! Then you're going to hear hype.

  41. Can I get it on paper? by Anonymous Coward · · Score: 0

    I will agree to blockchain tracking of shipping if you mail me the bytes or kilobytes, black ink on paper as hexadecimal or base64.