US20180114218A1 - Blockchain: automatic fork protection - Google Patents

Blockchain: automatic fork protection Download PDF

Info

Publication number
US20180114218A1
US20180114218A1 US15/335,109 US201615335109A US2018114218A1 US 20180114218 A1 US20180114218 A1 US 20180114218A1 US 201615335109 A US201615335109 A US 201615335109A US 2018114218 A1 US2018114218 A1 US 2018114218A1
Authority
US
United States
Prior art keywords
blockchain
fork
transaction
block
branch
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US15/335,109
Inventor
Rafal P. Konik
Roger A. Mittelstadt
Brian R. Muras
Chad A. Olstad
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US15/335,109 priority Critical patent/US20180114218A1/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: KONIK, RAFAL P., MITTELSTADT, ROGER A., MURAS, BRIAN R., OLSTAD, CHAD A.
Publication of US20180114218A1 publication Critical patent/US20180114218A1/en
Priority to US16/207,744 priority patent/US11042873B2/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q20/00Payment architectures, schemes or protocols
    • G06Q20/38Payment protocols; Details thereof
    • G06Q20/382Payment protocols; Details thereof insuring higher security of transaction
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q20/00Payment architectures, schemes or protocols
    • G06Q20/04Payment circuits
    • G06Q20/06Private payment circuits, e.g. involving electronic currency used among participants of a common payment scheme
    • G06Q20/065Private payment circuits, e.g. involving electronic currency used among participants of a common payment scheme using e-cash
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q20/00Payment architectures, schemes or protocols
    • G06Q20/38Payment protocols; Details thereof
    • G06Q20/40Authorisation, e.g. identification of payer or payee, verification of customer or shop credentials; Review and approval of payers, e.g. check credit lines or negative lists
    • G06Q20/401Transaction verification
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes
    • G06Q40/08Insurance
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/10Protocols in which an application is distributed across nodes in the network
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L9/00Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
    • H04L9/32Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials
    • H04L9/3236Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols including means for verifying the identity or authority of a user of the system or for message authentication, e.g. authorization, entity authentication, data integrity or data verification, non-repudiation, key authentication or verification of credentials using cryptographic hash functions
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L9/00Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
    • H04L9/50Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols using hash chains, e.g. blockchains or hash trees

Definitions

  • the present disclosure relates to blockchain technology and in particular to automatic protection for users in a losing fork of a blockchain.
  • Blockchain technology was developed as a way of providing a publicly transparent and decentralized ledger that is configured to track and store digital transactions in a publicly verifiable, secure, and hardened manner to prevent tampering or revision.
  • a typical blockchain includes three primary functions: read, write, and validate.
  • a user of the blockchain must have the ability to read the data that resides on the blockchain.
  • a user of the blockchain must also have the ability to write, e.g. append, data to the blockchain. Every write operation starts out as a proposed transaction that is posted on the network.
  • the transaction may be submitted for addition to the blockchain by a user of the blockchain, for example, a wallet application or other application program interface (API). Once submitted, the proposed transaction is added to a pool of available transactions for addition to the blockchain.
  • Validator nodes associated with the blockchain may then select transactions from the pool for addition to a new block.
  • the transaction found in the pool may not always be valid, for example, they may be malformed (syntax errors), or may constitute an attempt to perform a task for which the submitter is not authorized.
  • Validation refers to filtering out invalid transactions and then deciding on the exact order for the remaining, valid, transactions selected for addition to the blockchain as part of a new block. Validation is often performed by validator nodes associated with the blockchain.
  • the transactions are packaged into a new block, and the new block is voted on by the validator nodes associated with the blockchain to determine whether to add the new block to the blockchain. If a consensus to add the new block is reached, e.g., a threshold number of “for” votes, the new block may be appended to the blockchain.
  • Each new block that is appended to the blockchain also includes a hash of the previous block. Accordingly, as each new block is added, the security and integrity of the entire blockchain is further enhanced. It is important to note that once data is written to the blockchain, for example, once a block including a set of transactions has been appended to the blockchain, that data can no longer be altered or modified.
  • the anonymity of the users is protected through the use of pseudonyms and the transaction data itself is protected through the use of cryptography, e.g., via the use of hash codes.
  • a blockchain may fork. Forks are temporary inconsistencies between different versions of a blockchain that may occur due to the decentralized nature of the blockchain. For example, a fork may occur when a first set of validator nodes of the blockchain reach a consensus to add a first block to the blockchain while a second set of validator nodes of the blockchain reach a consensus to deny the first block from addition to the blockchain. In this case, the second set of validator nodes may instead reach consensus to add a second block to the blockchain instead of the first block. Because both the first and second blocks have reached consensus as the next block to be added to the blockchain, a “fork” has occurred where the blockchain effectively includes two different versions, one for each new block.
  • Each side of the “fork” may then continue to grow as new blocks are added. These forks are later resolved as a result of the eventual convergence of more blocks being solved and added to one of the forks in a blockchain than the other.
  • the longest chain wins because of the extra difficulty in solving the extra block(s) and the blocks on the losing chain become invalid and orphaned.
  • transactions found in the orphaned blocks may already be included in the blocks on the winning chain, albeit in a different order than on the losing chain.
  • the different order of the transaction may cause a potential double-spend problem where the same coins or currency associated with the blockchain may have been spent in two transactions. For example, where each coin has a specific digital identifier, a coin with the same digital identifier may have been spent in two separate transactions.
  • the system, method, and computer program product described herein provide fork protection for transactions appended to a blockchain.
  • a method for providing automatic fork protection in a blockchain includes receiving a notification that a transaction having fork protection has failed due to a fork in a blockchain and in response to receiving the notification, determining that the transaction having fork protection was included in a first block that was appended to the blockchain, that a hash of the first block was validated, that a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain, that a second block was appended to the blockchain after the first block was appended to the blockchain, that the second block comprises a hash that is not based on the first block, that the first block was on a first side of a fork of the blockchain and the second block was on a second side of the fork of the blockchain based on the second block comprising a hash that is not based on the first block, and that the blockchain was resolved in favor of the second fork.
  • the method further includes determining that the transaction failed as a result of the blockchain being resolved in favor of the second fork, and in response to the determining that the transaction failed as a result of the blockchain being resolved in favor of the second fork, compensating a party that submitted the transaction based on the fork protection.
  • FIG. 1 is a diagram illustrating a blockchain in accordance with an aspect of the present disclosure.
  • FIG. 2 is a system diagram illustrating nodes associated with the blockchain of FIG. 1 and storing the ledger of the blockchain of FIG. 1 in accordance with an aspect of the present disclosure
  • FIG. 3 is a system diagram illustrating validator nodes associated with the blockchain of FIG. 1 in accordance with an aspect of the present disclosure.
  • FIG. 4 is a diagram illustrating a fork in the blockchain of FIG. 1 in accordance with an aspect of the present disclosure.
  • FIG. 5 is a diagram illustrating a block including fork protection in accordance with an embodiment of the present disclosure.
  • FIG. 6 is a flow chart of a method for providing fork protection according to an aspect of the present disclosure.
  • FIG. 7 is a flow chart of another method for providing fork protection according to an aspect of the present disclosure.
  • FIG. 8 is an exemplary block diagram of a computer system in which processes involved in the system, method, and computer program product described herein may be implemented.
  • the present disclosure provides methods and systems for blockchain fork protection.
  • a blockchain 100 includes a plurality of data blocks 102 .
  • Each data block 102 is a data structure that includes data representing transactions 104 , for example, prescriptions, queries to the blockchain regarding a prescription, or any other transaction related to a prescription.
  • additional data blocks 102 are generated by the validator nodes and appended to the blockchain 100 .
  • Each new data block 102 includes a set of validated transactions 104 and a hash 106 of the content of the immediately previous data block 102 .
  • data block “2” includes a hash of the content of block “1”
  • block “n” includes a hash of the content of block “n ⁇ 1”
  • Some non-limiting examples of blockchains include Bitcoin®, Ethereum®, OpenLedgerTM, or other similar blockchains.
  • blockchain 100 is stored in a decentralized manner on a plurality of nodes 200 , e.g., computing devices located in one or more networks.
  • Nodes 200 may each include a memory 202 that stores at least a portion of a ledger 204 of blockchain 100 .
  • Ledger 204 includes any data blocks 102 that have been validated and added to the blockchain 100 .
  • every node 200 may store the entire ledger 204 .
  • each node 200 may store a portion of ledger 204 .
  • some or all of blockchain 100 may be stored in a centralized manner.
  • Nodes 200 may communicate with one another via communication pathways 206 , e.g., wired or wireless connections, over the internet, etc. to transmit and receive data related to ledger 204 .
  • communication pathways 206 e.g., wired or wireless connections, over the internet, etc.
  • nodes 200 may communicate or share the new data blocks 102 via communication pathways 206 .
  • any transactions 104 submitted to blockchain 100 are validated by a set of validator nodes 300 associated with blockchain 100 .
  • transactions 104 may be transmitted to one or more of the validator nodes 300 and may be shared between the validator nodes 300 for validation and consensus.
  • Each validator node 302 determines whether a transaction 104 is valid and whether the transaction 104 complies with the rules of the blockchain 100 .
  • the validator node 302 adds a plurality of the validated transactions 104 to a data block 102 and submits the data block 102 for consensus by all or some of the other validator nodes.
  • the other validator nodes 302 then vote “for” or “against” appending the data block 102 containing the transactions 104 to the blockchain 100 .
  • a consensus of the set of validator nodes 300 e.g., a threshold number of identical votes “for” or “against”, is required to allow or deny the data block 102 to be appended to the blockchain 100 .
  • one or more of nodes 200 may also be validator nodes 302 .
  • nodes 200 that are not validator nodes 302 may perform processing such as, for example, receiving transaction submissions, providing member services, handling application programming interface (API) requests from users, or other similar functions.
  • API application programming interface
  • Validator nodes 302 may communicate with one another via communication pathways 304 , e.g., wired or wireless connections, over the internet, etc., to transmit and receive data. For example, as new data blocks 102 are generated by validator nodes 302 , validator nodes 302 may communicate or share the new data blocks 102 and transmit and receive consensus messages via communication pathways 304 .
  • communication pathways 304 e.g., wired or wireless connections, over the internet, etc.
  • validators 300 Prior to the fork, validators 300 reach a consensus and append blocks n ⁇ 4 and n ⁇ 3 to the blockchain. During the consensus round for block n ⁇ 2, however, a dispute between the validators 300 arises. For example, a portion of the validators may determine that block n ⁇ 2 is the next block to be appended to blockchain 100 while a second portion of the validators may determine that a block n ⁇ 2′ is the next block to be appended to the blockchain 100 . This may occur, for example, due to latency in the network, different versions of software running on the validators 300 , or for any other reason.
  • block n ⁇ 2 includes transactions 1 to n in a particular order while block n ⁇ 2′ includes transaction 1′ to n′ in a particular order.
  • some or all of transactions 1 to n and 1′ to n′ may be the same transactions.
  • the first portion of validators reach a consensus on the addition of a new block n ⁇ 1 to the side of the fork of blockchain 100 including block n ⁇ 2 while the second portion of validators reach a consensus on the addition of a new block n ⁇ 1′ to the side of the fork of blockchain 100 including block n ⁇ 2′.
  • the first portion of validators reach a consensus on the addition of a new block n to the side of the fork including block n ⁇ 2 and n ⁇ 1 prior to the second portion of validators reaching a consensus on a new block for addition to the side of the fork including block n ⁇ 2′ and n ⁇ 1′.
  • the fork may then be resolved in favor of the side of the fork that is longer, e.g., the side of the fork including blocks n ⁇ 2, n ⁇ 1, and n as appended by the first portion of validators and the losing side of the fork may be unwound or orphaned, e.g., the transactions may be canceled, lost, or returned to the pool for later addition to a new block.
  • the fork may include a larger or smaller number of appended blocks on each side before the fork is resolved.
  • each side may include one, two, three, four, five, six, seven, or more appended blocks before the fork is resolved.
  • some or all of transactions 1 to n of block n ⁇ 1 and 1′ to n′ of block n ⁇ 1′ may be the same transactions. In some aspects, some or all of transactions 1 to n of block n ⁇ 1 and 1′ to n′ of block n ⁇ 2′ may be the same transactions. In some aspects, some or all of transactions 1′ to n′ of block n ⁇ 1′ and 1 to n of block n ⁇ 2 may be the same transactions.
  • a user that submits a transaction is often left with no recourse when that transaction has been orphaned due to a fork.
  • a common method followed by users of a blockchain is to wait until a threshold number of blocks have been appended, e.g., X number of blocks back, to the blockchain after the block containing a transaction of interest before acting on the transaction.
  • a threshold number of blocks e.g., X number of blocks back
  • this method may confirm that the block is unlikely to be orphaned due to a fork, waiting for multiple blocks to be appended before acting on a transaction may be inefficient. For example, in some instances it may take minutes, hours, or even days for a sufficient number of blocks to be appended to the blockchain to ensure that the transaction is unlikely to be orphaned.
  • This inefficiency may be remedied by providing a fork protection mechanism to users of the blockchain such that the user may proceed with the transaction with the knowledge that even if the transaction is orphaned or lost due to a fork in the blockchain the user's interest in the transaction will be protected.
  • Block 500 includes a hash 502 of the previous block, e.g., block ⁇ 1, and a plurality of transactions, e.g., transaction 510 , transaction 530 , . . . , transaction n.
  • Transactions 510 and 530 include respective transaction terms 512 , 532 , and respective transaction fees 514 , 534 .
  • Transaction terms 512 , 532 may each include the terms of the transaction, for example, how much currency is being transferred, who the currency is being transferred to, a product or service to be delivered in exchange for the transferred currency, or any other transaction or obligation that may be captured in transaction 510 , 530 .
  • Transaction fee 514 , 534 is a fee that is paid to a successful validator node that generates a block including transaction 510 , 530 after the block is appended to blockchain 100 .
  • transaction fee 514 , 534 may incentivize a validator node 302 to include transaction 510 , 530 when generating a new block.
  • a transaction 510 , 530 including a small transaction fee 514 , 534 , or no transaction fee may not be appended to blockchain 100 since the validator nodes 302 have little incentive to include the transaction 510 , 530 in a block unless there are no other available transactions that have higher transaction fees.
  • transactions that are submitted for addition to blockchain 100 may be placed in a transaction pool.
  • the validator nodes may select transactions from the transaction pool for inclusion in a newly generated block.
  • the validator nodes may select the transactions from the pool, for example, based on the transaction fee.
  • transaction 510 may also include a fork protection field 516 .
  • Fork protection field 516 identifies a fork protection providing entity, e.g., a validator node providing fork protection, a wallet application providing fork protection (e.g., a user entry portal storing user values and providing access to the blockchain), a third party entity providing fork protection or any other entity that may provide a user with protection from losses due to a fork, and a fork protection fee to be paid to the identified fork protection entity in return for fork protection.
  • fork protection field 516 may be a field submitted as part of transaction 510 .
  • fork protection field 516 may include paired protection data including, for example, a pair comprising a fork protection providing entity field 518 and corresponding fork protection providing entity 520 , and a pair comprising a fork protection fee field 522 and corresponding fork protection fee amount 524 .
  • the fork protection fee amount 524 may be listed, for example, in units of currency, e.g., two units of currency, three units of currency, etc.
  • the fork protection fee amount 524 may specify units of currency native to blockchain 100 , for example, bitcoins or other similar currency.
  • fork protection fee amount 524 may specify any unit of currency that may be traded or converted on blockchain 100 .
  • the fields of fork protection field 516 may be implemented in JavaScript Object Notation (JSON).
  • a separate fork protection transaction 540 may be submitted for addition to block 500 , e.g., to nodes 200 or validator nodes 300 associated with blockchain 500 .
  • fork protection transaction 540 may, similar to fork protection field 516 , include paired protection data including, for example, a pair comprising a fork protection providing entity field 542 and corresponding fork protection providing entity 544 , and a pair comprising a fork protection fee field 546 and corresponding fork protection fee amount 548 .
  • fork protection transaction 540 may also include a pair comprising a protected transaction field 550 and a corresponding identification of the protected transaction 552 , e.g., transaction 530 .
  • the fields of fork protection transaction 540 may be implemented using JSON.
  • fork protection transaction 540 may not be included in the same block as the protected transaction 552 .
  • fork protection transaction 540 may have been included in a prior block that was already appended to blockchain 100 or may be included in a block that is appended after the block containing the protected transaction 552 . In some aspects, this may occur due to the way the validator nodes 300 package the transactions in the new blocks.
  • the user requesting fork protection may submit the fork protection transaction 540 after the protected transaction 552 has been appended to the blockchain 100 .
  • the user may submit the fork protection transaction 540 when the user realizes that the blockchain 100 has forked and that the protected transaction 552 is located in a block found on one of the forks.
  • any transactions found in the losing version of the blockchain 100 may be orphaned, fail, or may be otherwise lost.
  • transactions found in blocks of the losing version may be returned to the pool,
  • method 600 for determining whether a transaction having fork protection has failed is disclosed.
  • method 600 may be implemented as part of or otherwise associated with blockchain 100 , e.g., by nodes 200 , validator nodes 300 , fork protection entities, or on any other computing device associated with nodes 200 , validators, 300 , or any other system or entity associated with blockchain 100 .
  • a notification is received, e.g., by a computing device associated with the fork protection providing party, that a transaction having fork protection has been submitted for addition to a blockchain.
  • the computing device may determine whether the transaction has been included in the next validated block of the blockchain.
  • the computing device may determine whether the transaction exists in a transaction pool at 606 . For example, is the transaction currently located in a transaction pool awaiting selection by a validator node for inclusion in a new block? If the transaction exists in the transaction pool, the method may return to 604 .
  • the computing device determines whether the transaction has been validated for X transaction blocks back at 608 .
  • the computing device may determine whether X number of blocks have been appended to the blockchain after the transaction whose hashes are based in part on the block containing the transaction.
  • X may be based on a speed of the blockchain, length of the blockchain, or any other consideration.
  • X may be four blocks, five blocks, or any other number of blocks that a party or entity may determine to be sufficient for ensuring that the block will not be part of a losing fork.
  • the fork protection claim may be closed out and method 600 may end at 610 .
  • the computing device may determine whether there was a fork in the blockchain at 612 .
  • the fork protection claim may be closed out and method 600 may end at 610 .
  • the computing device may determine whether the transaction has failed, e.g., been lost or affected by a double spend, at 614 .
  • the fork protection claim may be closed out and method 600 may end at 610 .
  • the party that submitted the transaction having the fork protection may be compensated at 616 and the fork protection claim may be closed out at 610 .
  • the party that submitted the transaction having the fork protection may be compensated for any loss due to the failure of the transaction.
  • a method for providing automatic fork protection in a blockchain is disclosed.
  • a notification that a transaction having fork protection has failed due to a fork in a blockchain is received, e.g., by a computing device associated with a fork protection providing party.
  • the computing device determines whether the transaction having fork protection was included in a first block that was appended to the blockchain. If the computing device determines that the transaction was not included in the first block, the method ends.
  • the computing device determines whether the hash of the first block was validated. If the computing device determines that the hash was not validated, the method ends.
  • the computing device determines whether a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain. If the computing device determines that a consensus decision approving the first block was not made, the method ends.
  • the computing device determines whether a second block was appended to the blockchain after the first block was appended to the blockchain. If the computing device determines that a second block was not appended, the method ends.
  • the computing device determines whether the second block comprises a hash that was not based on the first block. If the computing device determines that the hash of the second block was based on the first block, the method ends.
  • the computing device determines that the second block comprises a hash that was not based on the first block, the computing device determines that the first block was on a first fork of the blockchain and the second block was on a second fork of the blockchain based on the second block comprising a hash that is not based on the first block.
  • the computing device determines whether the blockchain was resolved in favor of the first or second fork. If the blockchain was resolved in favor of the first fork, e.g., the fork containing the transaction, the method ends.
  • the computing device determines whether the transaction failed as a result of the blockchain being resolved in favor of the second fork. If the computing device determines that the transaction did not fail as a result of the blockchain being resolved in favor of the second fork, the method ends.
  • the computing device determines that the transaction did fail as a result of the blockchain being resolved in favor of the second fork, the computing device compensates the party that submitted the transaction based on the terms of the fork protection.
  • FIG. 8 illustrates a schematic of an example computer or processing system that may implement any portion of blockchain 100 , nodes 200 , validators 300 , systems, methods, and computer program products described herein in one embodiment of the present disclosure.
  • the computer system is only one example of a suitable processing system and is not intended to suggest any limitation as to the scope of use or functionality of embodiments of the methodology described herein.
  • the processing system shown may be operational with numerous other general purpose or special purpose computing system environments or configurations.
  • Examples of well-known computing systems, environments, and/or configurations that may be suitable for use with the processing system may include, but are not limited to, personal computer systems, server computer systems, thin clients, thick clients, handheld or laptop devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputer systems, mainframe computer systems, and distributed cloud computing environments that include any of the above systems or devices, and the like.
  • the computer system may be described in the general context of computer system executable instructions, such as program modules, being executed by a computer system.
  • program modules may include routines, programs, objects, components, logic, data structures, and so on that perform particular tasks or implement particular abstract data types.
  • the computer system may be practiced in distributed cloud computing environments where tasks are performed by remote processing devices that are linked through a communications network.
  • program modules may be located in both local and remote computer system storage media including memory storage devices.
  • the components of computer system may include, but are not limited to, one or more processors or processing units 12 , a system memory 16 , and a bus 14 that couples various system components including system memory 16 to processor 12 .
  • the processor 12 may include a software module 10 that performs the methods described herein.
  • the module 10 may be programmed into the integrated circuits of the processor 12 , or loaded from memory 16 , storage device 18 , or network 24 or combinations thereof.
  • Bus 14 may represent one or more of any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, an accelerated graphics port, and a processor or local bus using any of a variety of bus architectures.
  • bus architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnects (PCI) bus.
  • Computer system may include a variety of computer system readable media. Such media may be any available media that is accessible by computer system, and it may include both volatile and non-volatile media, removable and non-removable media.
  • System memory 16 can include computer system readable media in the form of volatile memory, such as random access memory (RAM) and/or cache memory or others. Computer system may further include other removable/non-removable, volatile/non-volatile computer system storage media.
  • storage system 18 can be provided for reading from and writing to a non-removable, non-volatile magnetic media (e.g., a “hard drive”).
  • a magnetic disk drive for reading from and writing to a removable, non-volatile magnetic disk (e.g., a “floppy disk”).
  • an optical disk drive for reading from or writing to a removable, non-volatile optical disk such as a CD-ROM, DVD-ROM or other optical media.
  • each can be connected to bus 14 by one or more data media interfaces.
  • Computer system may also communicate with one or more external devices 26 such as a keyboard, a pointing device, a display 28 , etc.; one or more devices that enable a user to interact with computer system; and/or any devices (e.g., network card, modem, etc.) that enable computer system to communicate with one or more other computing devices. Such communication can occur via Input/Output (I/O) interfaces 20 .
  • external devices 26 such as a keyboard, a pointing device, a display 28 , etc.
  • any devices e.g., network card, modem, etc.
  • I/O Input/Output
  • computer system can communicate with one or more networks 24 such as a local area network (LAN), a general wide area network (WAN), and/or a public network (e.g., the Internet) via network adapter 22 .
  • network adapter 22 communicates with the other components of computer system via bus 14 .
  • bus 14 It should be understood that although not shown, other hardware and/or software components could be used in conjunction with computer system. Examples include, but are not limited to: microcode, device drivers, redundant processing units, external disk drive arrays, RAID systems, tape drives, and data archival storage systems, etc.
  • aspects of the present invention may be embodied as a system, method or computer program product. Accordingly, aspects of the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects that may all generally be referred to herein as a “circuit,” “module” or “system.” Furthermore, aspects of the present invention may take the form of a computer program product embodied in one or more computer readable medium(s) having computer readable program code embodied thereon.
  • the computer readable medium may be a computer readable signal medium or a computer readable storage medium.
  • a computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any suitable combination of the foregoing.
  • a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
  • a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated signal may take any of a variety of forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof.
  • a computer readable signal medium may be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
  • Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
  • Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages, a scripting language such as Perl, VBS or similar languages, and/or functional languages such as Lisp and ML and logic-oriented languages such as Prolog.
  • the program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server.
  • the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
  • LAN local area network
  • WAN wide area network
  • Internet Service Provider an Internet Service Provider
  • These computer program instructions may also be stored in a computer readable medium that can direct a computer, other programmable data processing apparatus, or other devices to function in a particular manner, such that the instructions stored in the computer readable medium produce an article of manufacture including instructions which implement the function/act specified in the flowchart and/or block diagram block or blocks.
  • the computer program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other devices to cause a series of operational steps to be performed on the computer, other programmable apparatus or other devices to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide processes for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s).
  • the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved.
  • the computer program product may comprise all the respective features enabling the implementation of the methodology described herein, and which—when loaded in a computer system—is able to carry out the methods.
  • Computer program, software program, program, or software in the present context means any expression, in any language, code or notation, of a set of instructions intended to cause a system having an information processing capability to perform a particular function either directly or after either or both of the following: (a) conversion to another language, code or notation; and/or (b) reproduction in a different material form.
  • aspects of the present disclosure may be embodied as a program, software, or computer instructions embodied in a computer or machine usable or readable medium, which causes the computer or machine to perform the steps of the method when executed on the computer, processor, and/or machine.
  • a program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine to perform various functionalities and methods described in the present disclosure is also provided.
  • the system and method of the present disclosure may be implemented and run on a general-purpose computer or special-purpose computer system.
  • the terms “computer system” and “computer network” as may be used in the present application may include a variety of combinations of fixed and/or portable computer hardware, software, peripherals, and storage devices.
  • the computer system may include a plurality of individual components that are networked or otherwise linked to perform collaboratively, or may include one or more stand-alone components.
  • the hardware and software components of the computer system of the present application may include and may be included within fixed and portable devices such as desktop, laptop, and/or server.
  • a module may be a component of a device, software, program, or system that implements some “functionality”, which can be embodied as software, hardware, firmware, electronic circuitry, or etc.

Abstract

Systems and methods for providing automatic fork protection including determining that a transaction having fork protection was included in a first block that was appended to a blockchain, that a hash of the first block was validated, that a consensus decision was made by validator nodes approving the first block for addition to the blockchain, that a second block was appended to the blockchain after the first block, that the second block comprises a hash that is not based on the first block, that the first block was on a first fork and the second block was on a second fork, that the blockchain was resolved in favor of the second fork, and that the transaction failed as a result of the blockchain being resolved in favor of the second fork. The method including compensating a party that submitted the failed transaction based on the fork protection.

Description

    TECHNICAL FIELD
  • The present disclosure relates to blockchain technology and in particular to automatic protection for users in a losing fork of a blockchain.
  • BACKGROUND
  • Blockchain technology was developed as a way of providing a publicly transparent and decentralized ledger that is configured to track and store digital transactions in a publicly verifiable, secure, and hardened manner to prevent tampering or revision.
  • A typical blockchain includes three primary functions: read, write, and validate. For example, a user of the blockchain must have the ability to read the data that resides on the blockchain. A user of the blockchain must also have the ability to write, e.g. append, data to the blockchain. Every write operation starts out as a proposed transaction that is posted on the network. The transaction may be submitted for addition to the blockchain by a user of the blockchain, for example, a wallet application or other application program interface (API). Once submitted, the proposed transaction is added to a pool of available transactions for addition to the blockchain. Validator nodes associated with the blockchain may then select transactions from the pool for addition to a new block.
  • In some cases, the transaction found in the pool may not always be valid, for example, they may be malformed (syntax errors), or may constitute an attempt to perform a task for which the submitter is not authorized. Validation refers to filtering out invalid transactions and then deciding on the exact order for the remaining, valid, transactions selected for addition to the blockchain as part of a new block. Validation is often performed by validator nodes associated with the blockchain.
  • Once ordered, the transactions are packaged into a new block, and the new block is voted on by the validator nodes associated with the blockchain to determine whether to add the new block to the blockchain. If a consensus to add the new block is reached, e.g., a threshold number of “for” votes, the new block may be appended to the blockchain. Each new block that is appended to the blockchain also includes a hash of the previous block. Accordingly, as each new block is added, the security and integrity of the entire blockchain is further enhanced. It is important to note that once data is written to the blockchain, for example, once a block including a set of transactions has been appended to the blockchain, that data can no longer be altered or modified. In a typical blockchain, the anonymity of the users is protected through the use of pseudonyms and the transaction data itself is protected through the use of cryptography, e.g., via the use of hash codes.
  • In some instances, a blockchain may fork. Forks are temporary inconsistencies between different versions of a blockchain that may occur due to the decentralized nature of the blockchain. For example, a fork may occur when a first set of validator nodes of the blockchain reach a consensus to add a first block to the blockchain while a second set of validator nodes of the blockchain reach a consensus to deny the first block from addition to the blockchain. In this case, the second set of validator nodes may instead reach consensus to add a second block to the blockchain instead of the first block. Because both the first and second blocks have reached consensus as the next block to be added to the blockchain, a “fork” has occurred where the blockchain effectively includes two different versions, one for each new block. Each side of the “fork” may then continue to grow as new blocks are added. These forks are later resolved as a result of the eventual convergence of more blocks being solved and added to one of the forks in a blockchain than the other. The longest chain wins, because of the extra difficulty in solving the extra block(s) and the blocks on the losing chain become invalid and orphaned. In some cases, transactions found in the orphaned blocks may already be included in the blocks on the winning chain, albeit in a different order than on the losing chain. In some cases, the different order of the transaction may cause a potential double-spend problem where the same coins or currency associated with the blockchain may have been spent in two transactions. For example, where each coin has a specific digital identifier, a coin with the same digital identifier may have been spent in two separate transactions.
  • BRIEF SUMMARY
  • The system, method, and computer program product described herein provide fork protection for transactions appended to a blockchain.
  • In an aspect of the present disclosure, a method for providing automatic fork protection in a blockchain is disclosed. The method includes receiving a notification that a transaction having fork protection has failed due to a fork in a blockchain and in response to receiving the notification, determining that the transaction having fork protection was included in a first block that was appended to the blockchain, that a hash of the first block was validated, that a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain, that a second block was appended to the blockchain after the first block was appended to the blockchain, that the second block comprises a hash that is not based on the first block, that the first block was on a first side of a fork of the blockchain and the second block was on a second side of the fork of the blockchain based on the second block comprising a hash that is not based on the first block, and that the blockchain was resolved in favor of the second fork. The method further includes determining that the transaction failed as a result of the blockchain being resolved in favor of the second fork, and in response to the determining that the transaction failed as a result of the blockchain being resolved in favor of the second fork, compensating a party that submitted the transaction based on the fork protection.
  • In aspects of the present disclosure apparatus, systems, and computer program products in accordance with the above aspect may also be provided.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • The details of the present disclosure, both as to its structure and operation, can best be understood by referring to the accompanying drawings, in which like reference numbers and designations refer to like elements.
  • FIG. 1 is a diagram illustrating a blockchain in accordance with an aspect of the present disclosure.
  • FIG. 2 is a system diagram illustrating nodes associated with the blockchain of FIG. 1 and storing the ledger of the blockchain of FIG. 1 in accordance with an aspect of the present disclosure;
  • FIG. 3 is a system diagram illustrating validator nodes associated with the blockchain of FIG. 1 in accordance with an aspect of the present disclosure.
  • FIG. 4 is a diagram illustrating a fork in the blockchain of FIG. 1 in accordance with an aspect of the present disclosure.
  • FIG. 5 is a diagram illustrating a block including fork protection in accordance with an embodiment of the present disclosure.
  • FIG. 6 is a flow chart of a method for providing fork protection according to an aspect of the present disclosure.
  • FIG. 7 is a flow chart of another method for providing fork protection according to an aspect of the present disclosure.
  • FIG. 8 is an exemplary block diagram of a computer system in which processes involved in the system, method, and computer program product described herein may be implemented.
  • DETAILED DESCRIPTION
  • The present disclosure provides methods and systems for blockchain fork protection.
  • With reference now to FIG. 1, a blockchain 100 includes a plurality of data blocks 102. Each data block 102 is a data structure that includes data representing transactions 104, for example, prescriptions, queries to the blockchain regarding a prescription, or any other transaction related to a prescription. As described above, as new transactions 104 are submitted to the blockchain 100 and validated by validator nodes, additional data blocks 102 are generated by the validator nodes and appended to the blockchain 100. Each new data block 102 includes a set of validated transactions 104 and a hash 106 of the content of the immediately previous data block 102. For example, data block “2” includes a hash of the content of block “1”, block “n” includes a hash of the content of block “n−1”, etc. Some non-limiting examples of blockchains include Bitcoin®, Ethereum®, OpenLedger™, or other similar blockchains.
  • With reference now to FIG. 2, in some aspects, blockchain 100 is stored in a decentralized manner on a plurality of nodes 200, e.g., computing devices located in one or more networks. Nodes 200 may each include a memory 202 that stores at least a portion of a ledger 204 of blockchain 100. Ledger 204 includes any data blocks 102 that have been validated and added to the blockchain 100. In some aspects, every node 200 may store the entire ledger 204. In some aspects, each node 200 may store a portion of ledger 204. In some aspects, some or all of blockchain 100 may be stored in a centralized manner. Nodes 200 may communicate with one another via communication pathways 206, e.g., wired or wireless connections, over the internet, etc. to transmit and receive data related to ledger 204. For example, as new data blocks 102 are added to ledger 204, nodes 200 may communicate or share the new data blocks 102 via communication pathways 206.
  • With reference now to FIG. 3, any transactions 104 submitted to blockchain 100 are validated by a set of validator nodes 300 associated with blockchain 100. For example, transactions 104 may be transmitted to one or more of the validator nodes 300 and may be shared between the validator nodes 300 for validation and consensus. Each validator node 302 determines whether a transaction 104 is valid and whether the transaction 104 complies with the rules of the blockchain 100. The validator node 302 adds a plurality of the validated transactions 104 to a data block 102 and submits the data block 102 for consensus by all or some of the other validator nodes. The other validator nodes 302 then vote “for” or “against” appending the data block 102 containing the transactions 104 to the blockchain 100. A consensus of the set of validator nodes 300, e.g., a threshold number of identical votes “for” or “against”, is required to allow or deny the data block 102 to be appended to the blockchain 100. In some aspects, one or more of nodes 200 may also be validator nodes 302. In some aspects, nodes 200 that are not validator nodes 302 may perform processing such as, for example, receiving transaction submissions, providing member services, handling application programming interface (API) requests from users, or other similar functions. In this manner, the processing power of the validator nodes 302 may be preserved for generating new blocks, reaching consensus, and monitoring the other validator nodes 302. Validator nodes 302 may communicate with one another via communication pathways 304, e.g., wired or wireless connections, over the internet, etc., to transmit and receive data. For example, as new data blocks 102 are generated by validator nodes 302, validator nodes 302 may communicate or share the new data blocks 102 and transmit and receive consensus messages via communication pathways 304.
  • With reference now to FIG. 4, the state of blockchain 100 during a fork is illustrated. Prior to the fork, validators 300 reach a consensus and append blocks n−4 and n−3 to the blockchain. During the consensus round for block n−2, however, a dispute between the validators 300 arises. For example, a portion of the validators may determine that block n−2 is the next block to be appended to blockchain 100 while a second portion of the validators may determine that a block n−2′ is the next block to be appended to the blockchain 100. This may occur, for example, due to latency in the network, different versions of software running on the validators 300, or for any other reason. When the first and second portions of validators 300 attempt to append both blocks n−2 and n−2′ to blockchain 100 a fork has occurred. In this case block n−2 includes transactions 1 to n in a particular order while block n−2′ includes transaction 1′ to n′ in a particular order. In some aspects, some or all of transactions 1 to n and 1′ to n′ may be the same transactions. As the fork progresses, the first portion of validators reach a consensus on the addition of a new block n−1 to the side of the fork of blockchain 100 including block n−2 while the second portion of validators reach a consensus on the addition of a new block n−1′ to the side of the fork of blockchain 100 including block n−2′. Finally, the first portion of validators reach a consensus on the addition of a new block n to the side of the fork including block n−2 and n−1 prior to the second portion of validators reaching a consensus on a new block for addition to the side of the fork including block n−2′ and n−1′. The fork may then be resolved in favor of the side of the fork that is longer, e.g., the side of the fork including blocks n−2, n−1, and n as appended by the first portion of validators and the losing side of the fork may be unwound or orphaned, e.g., the transactions may be canceled, lost, or returned to the pool for later addition to a new block. This may be due to the fact that as each new block is added, the difficulty to add an additional block increases and therefore a larger amount of resources has been spent on the version of the blockchain including blocks n−2, n−1, and n. For example, “unwinding” or “orphaning” the longer side of the fork of the blockchain may result in an exponentially larger amount of lost resources as compared to “unwinding” or “orphaning” the smaller side of the fork of the blockchain. In some aspects, the fork may include a larger or smaller number of appended blocks on each side before the fork is resolved. For example, each side may include one, two, three, four, five, six, seven, or more appended blocks before the fork is resolved.
  • In some aspects, some or all of transactions 1 to n of block n−1 and 1′ to n′ of block n−1′ may be the same transactions. In some aspects, some or all of transactions 1 to n of block n−1 and 1′ to n′ of block n−2′ may be the same transactions. In some aspects, some or all of transactions 1′ to n′ of block n−1′ and 1 to n of block n−2 may be the same transactions. Because some of the transactions may overlap between the side of the fork of blockchain 100 including blocks n−2 and n−1 and the side of the fork of blockchain 100 including blocks n−2′ and n−1′ there is a potential for a double-spend attack or in some cases for a transaction to execute out of order or not at all. This may cause a party to be damaged, e.g., in a case where the party has already provided some form of payment or other consideration for a transaction, or delivered goods and/or services according to a transaction that has now been orphaned or canceled.
  • Under current blockchain implementations, a user that submits a transaction is often left with no recourse when that transaction has been orphaned due to a fork. For example, a common method followed by users of a blockchain is to wait until a threshold number of blocks have been appended, e.g., X number of blocks back, to the blockchain after the block containing a transaction of interest before acting on the transaction. Although this method may confirm that the block is unlikely to be orphaned due to a fork, waiting for multiple blocks to be appended before acting on a transaction may be inefficient. For example, in some instances it may take minutes, hours, or even days for a sufficient number of blocks to be appended to the blockchain to ensure that the transaction is unlikely to be orphaned. This inefficiency may be remedied by providing a fork protection mechanism to users of the blockchain such that the user may proceed with the transaction with the knowledge that even if the transaction is orphaned or lost due to a fork in the blockchain the user's interest in the transaction will be protected.
  • With reference now to FIG. 5, an example block 500 is illustrated. Block 500 includes a hash 502 of the previous block, e.g., block−1, and a plurality of transactions, e.g., transaction 510, transaction 530, . . . , transaction n. Transactions 510 and 530 include respective transaction terms 512, 532, and respective transaction fees 514, 534. Transaction terms 512, 532 may each include the terms of the transaction, for example, how much currency is being transferred, who the currency is being transferred to, a product or service to be delivered in exchange for the transferred currency, or any other transaction or obligation that may be captured in transaction 510, 530.
  • Transaction fee 514, 534 is a fee that is paid to a successful validator node that generates a block including transaction 510, 530 after the block is appended to blockchain 100. For example, transaction fee 514, 534 may incentivize a validator node 302 to include transaction 510, 530 when generating a new block. In some aspects, for example, a transaction 510, 530 including a small transaction fee 514, 534, or no transaction fee may not be appended to blockchain 100 since the validator nodes 302 have little incentive to include the transaction 510, 530 in a block unless there are no other available transactions that have higher transaction fees. In some aspects, transactions that are submitted for addition to blockchain 100 may be placed in a transaction pool. The validator nodes may select transactions from the transaction pool for inclusion in a newly generated block. In some aspects, the validator nodes may select the transactions from the pool, for example, based on the transaction fee.
  • In some aspects, transaction 510 may also include a fork protection field 516. Fork protection field 516 identifies a fork protection providing entity, e.g., a validator node providing fork protection, a wallet application providing fork protection (e.g., a user entry portal storing user values and providing access to the blockchain), a third party entity providing fork protection or any other entity that may provide a user with protection from losses due to a fork, and a fork protection fee to be paid to the identified fork protection entity in return for fork protection. In some aspects, for example, fork protection field 516 may be a field submitted as part of transaction 510. In some aspects, fork protection field 516 may include paired protection data including, for example, a pair comprising a fork protection providing entity field 518 and corresponding fork protection providing entity 520, and a pair comprising a fork protection fee field 522 and corresponding fork protection fee amount 524. The fork protection fee amount 524 may be listed, for example, in units of currency, e.g., two units of currency, three units of currency, etc. In some aspects the fork protection fee amount 524 may specify units of currency native to blockchain 100, for example, bitcoins or other similar currency. In some aspects, fork protection fee amount 524 may specify any unit of currency that may be traded or converted on blockchain 100. In some aspects, the fields of fork protection field 516 may be implemented in JavaScript Object Notation (JSON).
  • In some aspects, a separate fork protection transaction 540 may be submitted for addition to block 500, e.g., to nodes 200 or validator nodes 300 associated with blockchain 500. In some aspects, fork protection transaction 540 may, similar to fork protection field 516, include paired protection data including, for example, a pair comprising a fork protection providing entity field 542 and corresponding fork protection providing entity 544, and a pair comprising a fork protection fee field 546 and corresponding fork protection fee amount 548. In addition, fork protection transaction 540 may also include a pair comprising a protected transaction field 550 and a corresponding identification of the protected transaction 552, e.g., transaction 530. As with fork protection field 516, in some aspects, the fields of fork protection transaction 540 may be implemented using JSON.
  • In some aspects, fork protection transaction 540 may not be included in the same block as the protected transaction 552. For example, fork protection transaction 540 may have been included in a prior block that was already appended to blockchain 100 or may be included in a block that is appended after the block containing the protected transaction 552. In some aspects, this may occur due to the way the validator nodes 300 package the transactions in the new blocks. In some aspects, the user requesting fork protection may submit the fork protection transaction 540 after the protected transaction 552 has been appended to the blockchain 100. For example, the user may submit the fork protection transaction 540 when the user realizes that the blockchain 100 has forked and that the protected transaction 552 is located in a block found on one of the forks.
  • When the fork is resolved, any transactions found in the losing version of the blockchain 100 may be orphaned, fail, or may be otherwise lost. For example, transactions found in blocks of the losing version may be returned to the pool,
  • With reference now to FIG. 6, a method 600 for determining whether a transaction having fork protection has failed is disclosed. In some aspects, method 600 may be implemented as part of or otherwise associated with blockchain 100, e.g., by nodes 200, validator nodes 300, fork protection entities, or on any other computing device associated with nodes 200, validators, 300, or any other system or entity associated with blockchain 100.
  • At 602, a notification is received, e.g., by a computing device associated with the fork protection providing party, that a transaction having fork protection has been submitted for addition to a blockchain.
  • At 604, the computing device may determine whether the transaction has been included in the next validated block of the blockchain.
  • If the transaction has not been included, the computing device may determine whether the transaction exists in a transaction pool at 606. For example, is the transaction currently located in a transaction pool awaiting selection by a validator node for inclusion in a new block? If the transaction exists in the transaction pool, the method may return to 604.
  • If the transaction has been included in the next validated block, the computing device determines whether the transaction has been validated for X transaction blocks back at 608. For example, the computing device may determine whether X number of blocks have been appended to the blockchain after the transaction whose hashes are based in part on the block containing the transaction. In some aspects, for example, X may be based on a speed of the blockchain, length of the blockchain, or any other consideration. For example, X may be four blocks, five blocks, or any other number of blocks that a party or entity may determine to be sufficient for ensuring that the block will not be part of a losing fork.
  • If the transaction has been validated for X transaction blocks back, the fork protection claim may be closed out and method 600 may end at 610.
  • If the transaction has not been validated for X transaction blocks back, the computing device may determine whether there was a fork in the blockchain at 612.
  • If there was no fork, the fork protection claim may be closed out and method 600 may end at 610.
  • If the computing device determines that there was a fork or if the transaction does not exist in the transaction pool (at 606), the computing device may determine whether the transaction has failed, e.g., been lost or affected by a double spend, at 614.
  • If the transaction has not failed, the fork protection claim may be closed out and method 600 may end at 610.
  • If the transaction has failed, the party that submitted the transaction having the fork protection may be compensated at 616 and the fork protection claim may be closed out at 610. For example, the party that submitted the transaction having the fork protection may be compensated for any loss due to the failure of the transaction.
  • Referring now to FIG. 7, a method for providing automatic fork protection in a blockchain is disclosed. At 702, a notification that a transaction having fork protection has failed due to a fork in a blockchain is received, e.g., by a computing device associated with a fork protection providing party.
  • At 704, the computing device determines whether the transaction having fork protection was included in a first block that was appended to the blockchain. If the computing device determines that the transaction was not included in the first block, the method ends.
  • At 706, if the transaction was included, the computing device determines whether the hash of the first block was validated. If the computing device determines that the hash was not validated, the method ends.
  • At 708, if the hash of the first block was validated, the computing device determines whether a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain. If the computing device determines that a consensus decision approving the first block was not made, the method ends.
  • At 710, if the computing device determines that the consensus decision was made, the computing device determines whether a second block was appended to the blockchain after the first block was appended to the blockchain. If the computing device determines that a second block was not appended, the method ends.
  • At 712, if the computing device determines that a second block was appended to the blockchain, the computing device determines whether the second block comprises a hash that was not based on the first block. If the computing device determines that the hash of the second block was based on the first block, the method ends.
  • At 714, if the computing device determines that the second block comprises a hash that was not based on the first block, the computing device determines that the first block was on a first fork of the blockchain and the second block was on a second fork of the blockchain based on the second block comprising a hash that is not based on the first block.
  • At 716, the computing device determines whether the blockchain was resolved in favor of the first or second fork. If the blockchain was resolved in favor of the first fork, e.g., the fork containing the transaction, the method ends.
  • At 718, if the computing device determines that the blockchain was resolved in favor of the second fork, e.g., the fork containing the second block, the computing device determines whether the transaction failed as a result of the blockchain being resolved in favor of the second fork. If the computing device determines that the transaction did not fail as a result of the blockchain being resolved in favor of the second fork, the method ends.
  • At 720, if the computing device determines that the transaction did fail as a result of the blockchain being resolved in favor of the second fork, the computing device compensates the party that submitted the transaction based on the terms of the fork protection.
  • FIG. 8 illustrates a schematic of an example computer or processing system that may implement any portion of blockchain 100, nodes 200, validators 300, systems, methods, and computer program products described herein in one embodiment of the present disclosure. The computer system is only one example of a suitable processing system and is not intended to suggest any limitation as to the scope of use or functionality of embodiments of the methodology described herein. The processing system shown may be operational with numerous other general purpose or special purpose computing system environments or configurations. Examples of well-known computing systems, environments, and/or configurations that may be suitable for use with the processing system may include, but are not limited to, personal computer systems, server computer systems, thin clients, thick clients, handheld or laptop devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputer systems, mainframe computer systems, and distributed cloud computing environments that include any of the above systems or devices, and the like.
  • The computer system may be described in the general context of computer system executable instructions, such as program modules, being executed by a computer system. Generally, program modules may include routines, programs, objects, components, logic, data structures, and so on that perform particular tasks or implement particular abstract data types. The computer system may be practiced in distributed cloud computing environments where tasks are performed by remote processing devices that are linked through a communications network. In a distributed cloud computing environment, program modules may be located in both local and remote computer system storage media including memory storage devices.
  • The components of computer system may include, but are not limited to, one or more processors or processing units 12, a system memory 16, and a bus 14 that couples various system components including system memory 16 to processor 12. The processor 12 may include a software module 10 that performs the methods described herein. The module 10 may be programmed into the integrated circuits of the processor 12, or loaded from memory 16, storage device 18, or network 24 or combinations thereof.
  • Bus 14 may represent one or more of any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, an accelerated graphics port, and a processor or local bus using any of a variety of bus architectures. By way of example, and not limitation, such architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnects (PCI) bus.
  • Computer system may include a variety of computer system readable media. Such media may be any available media that is accessible by computer system, and it may include both volatile and non-volatile media, removable and non-removable media.
  • System memory 16 can include computer system readable media in the form of volatile memory, such as random access memory (RAM) and/or cache memory or others. Computer system may further include other removable/non-removable, volatile/non-volatile computer system storage media. By way of example only, storage system 18 can be provided for reading from and writing to a non-removable, non-volatile magnetic media (e.g., a “hard drive”). Although not shown, a magnetic disk drive for reading from and writing to a removable, non-volatile magnetic disk (e.g., a “floppy disk”), and an optical disk drive for reading from or writing to a removable, non-volatile optical disk such as a CD-ROM, DVD-ROM or other optical media can be provided. In such instances, each can be connected to bus 14 by one or more data media interfaces.
  • Computer system may also communicate with one or more external devices 26 such as a keyboard, a pointing device, a display 28, etc.; one or more devices that enable a user to interact with computer system; and/or any devices (e.g., network card, modem, etc.) that enable computer system to communicate with one or more other computing devices. Such communication can occur via Input/Output (I/O) interfaces 20.
  • Still yet, computer system can communicate with one or more networks 24 such as a local area network (LAN), a general wide area network (WAN), and/or a public network (e.g., the Internet) via network adapter 22. As depicted, network adapter 22 communicates with the other components of computer system via bus 14. It should be understood that although not shown, other hardware and/or software components could be used in conjunction with computer system. Examples include, but are not limited to: microcode, device drivers, redundant processing units, external disk drive arrays, RAID systems, tape drives, and data archival storage systems, etc.
  • As will be appreciated by one skilled in the art, aspects of the present invention may be embodied as a system, method or computer program product. Accordingly, aspects of the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects that may all generally be referred to herein as a “circuit,” “module” or “system.” Furthermore, aspects of the present invention may take the form of a computer program product embodied in one or more computer readable medium(s) having computer readable program code embodied thereon.
  • Any combination of one or more computer readable medium(s) may be utilized. The computer readable medium may be a computer readable signal medium or a computer readable storage medium. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any suitable combination of the foregoing. More specific examples (a non-exhaustive list) of the computer readable storage medium would include the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the context of this document, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
  • A computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated signal may take any of a variety of forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
  • Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
  • Computer program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages, a scripting language such as Perl, VBS or similar languages, and/or functional languages such as Lisp and ML and logic-oriented languages such as Prolog. The program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the latter scenario, the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
  • Aspects of the present invention are described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems) and computer program products according to embodiments of the invention. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • These computer program instructions may also be stored in a computer readable medium that can direct a computer, other programmable data processing apparatus, or other devices to function in a particular manner, such that the instructions stored in the computer readable medium produce an article of manufacture including instructions which implement the function/act specified in the flowchart and/or block diagram block or blocks.
  • The computer program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other devices to cause a series of operational steps to be performed on the computer, other programmable apparatus or other devices to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide processes for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
  • The flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
  • The computer program product may comprise all the respective features enabling the implementation of the methodology described herein, and which—when loaded in a computer system—is able to carry out the methods. Computer program, software program, program, or software, in the present context means any expression, in any language, code or notation, of a set of instructions intended to cause a system having an information processing capability to perform a particular function either directly or after either or both of the following: (a) conversion to another language, code or notation; and/or (b) reproduction in a different material form.
  • The terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of the invention. As used herein, the singular forms “a”, “an” and “the” are intended to include the plural forms as well, unless the context clearly indicates otherwise. It will be further understood that the terms “comprises” and/or “comprising,” when used in this specification, specify the presence of stated features, integers, steps, operations, elements, and/or components, but do not preclude the presence or addition of one or more other features, integers, steps, operations, elements, components, and/or groups thereof.
  • The corresponding structures, materials, acts, and equivalents of all means or step plus function elements, if any, in the claims below are intended to include any structure, material, or act for performing the function in combination with other claimed elements as specifically claimed. The description of the present invention has been presented for purposes of illustration and description, but is not intended to be exhaustive or limited to the invention in the form disclosed. Many modifications and variations will be apparent to those of ordinary skill in the art without departing from the scope and spirit of the invention. The embodiment was chosen and described in order to best explain the principles of the invention and the practical application, and to enable others of ordinary skill in the art to understand the invention for various embodiments with various modifications as are suited to the particular use contemplated.
  • Various aspects of the present disclosure may be embodied as a program, software, or computer instructions embodied in a computer or machine usable or readable medium, which causes the computer or machine to perform the steps of the method when executed on the computer, processor, and/or machine. A program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine to perform various functionalities and methods described in the present disclosure is also provided.
  • The system and method of the present disclosure may be implemented and run on a general-purpose computer or special-purpose computer system. The terms “computer system” and “computer network” as may be used in the present application may include a variety of combinations of fixed and/or portable computer hardware, software, peripherals, and storage devices. The computer system may include a plurality of individual components that are networked or otherwise linked to perform collaboratively, or may include one or more stand-alone components. The hardware and software components of the computer system of the present application may include and may be included within fixed and portable devices such as desktop, laptop, and/or server. A module may be a component of a device, software, program, or system that implements some “functionality”, which can be embodied as software, hardware, firmware, electronic circuitry, or etc.
  • Although specific embodiments of the present invention have been described, it will be understood by those of skill in the art that there are other embodiments that are equivalent to the described embodiments. Accordingly, it is to be understood that the invention is not to be limited by the specific illustrated embodiments, but only by the scope of the appended claims.

Claims (19)

1. A method for providing automatic fork protection in a blockchain, the method comprising:
receiving, by an automated fork protection system including at least one processor comprising hardware, a notification that a transaction submitted for addition to a blockchain by a party has failed;
determining, by the automated fork protection system, that the transaction included at least one transaction term and a fork protection field, the fork protection field including an identification of a fork protection providing entity;
in response to receiving the notification and determining that the transaction included the fork protection field, automatically:
requesting, by the automated fork protection system, a ledger of the blockchain from at least one node associated with the blockchain;
analyzing, by the automated fork protection system, the ledger of the blockchain to determine whether a fork occurred in the blockchain;
determining, by the automated fork protection system, based on the analysis of the ledger, that a fork occurred in the blockchain including a first branch and a second branch, that the first branch of the fork included a first block and the second branch of the fork included a second block, and that each of the first and second blocks comprises a hash based at least in part on a third block of the blockchain, the third block of the blockchain having been appended to the blockchain prior to the fork;
in response to determining that the fork occurred, further determining, by the automated fork protection system, that the transaction was included in the first block, that the first block was validated by at least one node associated with the blockchain, that a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain, that a hash of the second block is not based at least in part on the first block, that the fork in the blockchain was resolved in favor of the second branch of the fork with the second block being appended to the blockchain and the first block being orphaned, and that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork and the first block containing the transaction being orphaned; and
in response to the determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork and the first block containing the transaction being orphaned, automatically, by the automated fork protection system, submitting a new transaction to the blockchain, the new transaction including at least one term transferring a compensation from the fork protection providing entity identified in the fork protection field to the party for at least a portion of a loss suffered by the party due to the failure of the transaction as a result of the fork.
2. The method of claim 1, wherein determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork comprises determining that a value used for the transaction was double spent by a transaction found in a block appended to the second branch of the fork of the blockchain.
3. The method of claim 1, wherein determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork comprises determining that the transaction was lost.
4. The method of claim 3, wherein determining that the transaction was lost comprises:
determining that the transaction returned to a transaction pool of the blockchain; and
determining that the transaction was not selected for addition to new block by a validator node of the blockchain within a pre-determined period of time after being returned to the transaction pool.
5. The method of claim 1, wherein the transaction further comprises a fork protection fee field, the fork protection fee field indicating a fee paid to the fork protection providing entity.
6.-7. (canceled)
8. The method of claim 1, wherein the fork protection field is linked to a separate transaction submitted for addition to the blockchain, the separate transaction identifying:
the transaction submitted for addition to the blockchain by the party;
the fork protection providing entity; and
a fork protection fee to be paid to the fork protection providing entity by the party that submitted the transaction for addition to the blockchain.
9. An automated fork protection system for providing automatic fork protection in a blockchain comprising:
at least one hardware processor configured to:
receive a notification that a transaction submitted for addition to a blockchain by a party has failed;
determine that the transaction included at least one transaction term and a fork protection field, the fork protection field including an identification of a fork protection providing entity;
in response to receiving the notification and determining that the transaction included the fork protection field, automatically:
request a ledger of the blockchain from at least one node associated with the blockchain;
analyze the ledger of the blockchain to determine whether a fork occurred in the blockchain;
determine, based on the analysis of the ledger, that a fork occurred in the blockchain including a first branch and a second branch, that the first branch of the fork included a first block and the second branch of the fork included a second block, and that each of the first and second blocks comprises a hash based at least in part on a third block of the blockchain, the third block of the blockchain having been appended to the blockchain prior to the fork;
in response to determining that the fork occurred, further determine that the transaction was included in the first block, that the first block was validated by at least one node associated with the blockchain, that a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain, that a hash of the second block is not based at least in part on the first block, that the fork in the blockchain was resolved in favor of the second branch of the fork with the second block being appended to the blockchain and the first block being orphaned, and that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork and the first block containing the transaction being orphaned; and
in response to the determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork and the first block containing the transaction being orphaned, automatically submit a new transaction to the blockchain, the new transaction including at least one term transferring compensation from the fork protection providing entity identified in the fork protection field to the party for at least a portion of a loss suffered by the party due to the failure of the transaction as a result of the fork.
10. The system of claim 9, wherein determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork comprises determining that a value used for the transaction was double spent by a transaction found in a block appended to the second branch of the fork of the blockchain.
11. The system of claim 9, wherein determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork comprises determining that the transaction was lost.
12. The system of claim 11, wherein determining that the transaction was lost comprises:
determining that the transaction returned to a transaction pool of the blockchain; and
determining that the transaction was not selected for addition to new block by a validator node of the blockchain within a pre-determined period of time after being returned to the transaction pool.
13. The system of claim 9, wherein the transaction further fork protection comprises a fork protection fee field, the fork protection fee field indicating a fee paid to the fork protection providing entity.
14.-15. (canceled)
16. The system of claim 9, wherein the fork protection field is linked to a separate transaction submitted for addition to the blockchain, the separate transaction identifying:
the transaction submitted for addition to the blockchain by the party;
the fork protection providing entity; and
a fork protection fee to be paid to the fork protection providing entity by the party that submitted the transaction for addition to the blockchain.
17. A non-transitory computer readable medium comprising instructions that, when executed by at least one hardware processor of an automated fork protection system, configure the at least one hardware processor to:
receive a notification that a transaction submitted for addition to a blockchain by a party has failed;
determine that the transaction included at least one transaction term and a fork protection field, the fork protection field including an identification of a fork protection providing entity;
in response to receiving the notification and determining that the transaction included the fork protection field, automatically:
requesting a ledger of the blockchain from at least one node associated with the blockchain;
analyze the ledger of the blockchain to determine whether a fork occurred in the blockchain;
determine, based on the analysis of the ledger, that a fork occurred in the blockchain including a first branch and a second branch, that the first branch of the fork included a first block and the second branch of the fork included a second block, and that each of the first and second blocks comprises a hash based at least in part on a third block of the blockchain, the third block of the blockchain having been appended to the blockchain prior to the fork;
in response to determining that the fork occurred, further determine that the transaction was included in the first block, that the first block was validated by at least one node associated with the blockchain, that a consensus decision was made by validator nodes associated with the blockchain approving the first block for addition to the blockchain, that a hash of the second block is not based at least in part on the first block, that the fork in the blockchain was resolved in favor of the second branch of the fork with the second block being appended to the blockchain and the first block being orphaned, and that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork and the first block containing the transaction being orphaned; and
in response to the determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork and the first block containing the transaction being orphaned, automatically submit a new transaction to the blockchain, the new transaction including at least one term transferring compensation from the fork protection providing entity identified in the fork protection field to the party for at least a portion of a loss suffered by the party due to the failure of the transaction as a result of the fork.
18.-19. (canceled)
20. The non-transitory computer readable medium of claim 17, wherein the fork protection field is linked to a separate transaction submitted for addition to the blockchain, the separate transaction identifying:
the transaction submitted for addition to the blockchain by the party;
the fork protection providing entity; and
a fork protection fee to be paid to the fork protection providing entity by the party that submitted the transaction for addition to the blockchain.
21. The non-transitory computer readable medium of claim 17, wherein determining that the transaction failed as a result of the blockchain being resolved in favor of the second branch of the fork comprises determining that a value used for the transaction was double spent by a transaction found in a block appended to the second branch of the fork of the blockchain.
22. The non-transitory computer readable medium of claim 17, wherein the transaction further comprises a fork protection fee field, the fork protection fee field indicating a fee paid to the fork protection providing entity.
US15/335,109 2016-10-26 2016-10-26 Blockchain: automatic fork protection Abandoned US20180114218A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US15/335,109 US20180114218A1 (en) 2016-10-26 2016-10-26 Blockchain: automatic fork protection
US16/207,744 US11042873B2 (en) 2016-10-26 2018-12-03 Blockchain: automatic fork protection

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US15/335,109 US20180114218A1 (en) 2016-10-26 2016-10-26 Blockchain: automatic fork protection

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US16/207,744 Continuation US11042873B2 (en) 2016-10-26 2018-12-03 Blockchain: automatic fork protection

Publications (1)

Publication Number Publication Date
US20180114218A1 true US20180114218A1 (en) 2018-04-26

Family

ID=61970320

Family Applications (2)

Application Number Title Priority Date Filing Date
US15/335,109 Abandoned US20180114218A1 (en) 2016-10-26 2016-10-26 Blockchain: automatic fork protection
US16/207,744 Active 2037-06-02 US11042873B2 (en) 2016-10-26 2018-12-03 Blockchain: automatic fork protection

Family Applications After (1)

Application Number Title Priority Date Filing Date
US16/207,744 Active 2037-06-02 US11042873B2 (en) 2016-10-26 2018-12-03 Blockchain: automatic fork protection

Country Status (1)

Country Link
US (2) US20180114218A1 (en)

Cited By (29)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109246176A (en) * 2018-07-03 2019-01-18 北京邮电大学 Based on the multi-controller synchronous method and device of block chain in software defined network
CN109447640A (en) * 2018-10-23 2019-03-08 杭州弗兰科信息安全科技有限公司 A kind of improvement PoW common recognition algorithm based on equity
CN109525398A (en) * 2018-10-18 2019-03-26 尚维斯 A method of realizing that decentralization power proves common recognition
CN109831509A (en) * 2019-02-18 2019-05-31 深圳市优学链科技有限公司 A kind of common recognition algorithm going out block at random for realizing equal weight
CN109889519A (en) * 2019-02-18 2019-06-14 深圳市优学链科技有限公司 It is a kind of avoid block chain know together in attack free of charge algorithm
US20190228086A1 (en) * 2018-01-25 2019-07-25 Merck Sharp & Dohme Corp. Verification of Data Provenance for Existing Computer Systems
US20190386970A1 (en) * 2017-02-10 2019-12-19 Nokia Technologies Oy Blockchain-based authentication method and system
TWI682346B (en) * 2018-11-12 2020-01-11 柯賓漢數位金融科技有限公司 Method and system for generating blockchain
US10630463B2 (en) * 2018-02-26 2020-04-21 Ca, Inc. Meta block chain
US20200127855A1 (en) * 2017-07-26 2020-04-23 Alibaba Group Holding Limited Digital certificate management method, apparatus, and system
US10817593B1 (en) 2015-12-29 2020-10-27 Wells Fargo Bank, N.A. User information gathering and distribution system
US10909122B2 (en) 2018-11-09 2021-02-02 International Business Machines Corporation Using modified blockchain concepts to guarantee no tuple loss and/or no tuple corruption
JP2021504808A (en) * 2018-05-02 2021-02-15 バイドゥ オンライン ネットワーク テクノロジー (ベイジン) カンパニー リミテッド How to determine the main chain of the blockchain, devices, equipment and storage media
US11012229B2 (en) * 2018-06-22 2021-05-18 Wealedger Network Technologies Co., Ltd. Method for preventing short-term bifurcation and double-spend attack on block chain network
US11030161B2 (en) * 2018-03-28 2021-06-08 Exosite LLC Blockchain scaling method and blockchain scaling apparatus
US20210201311A1 (en) * 2018-12-05 2021-07-01 Tencent Technology (Shenzhen) Company Limited Method for operating electronic device, apparatus and storage medium thereof
CN113094396A (en) * 2021-01-18 2021-07-09 腾讯科技(深圳)有限公司 Data processing method, device, equipment and medium based on node memory
US11108820B2 (en) * 2019-06-16 2021-08-31 Moac Blockchain Tech Inc Apparatus and method for distinguishing between legitimate and malicious branches of a split blockchain
US11144537B2 (en) 2019-09-16 2021-10-12 Bank Of America Corporation System for data consensus validation in an electronic distributed server network using a screening node
US11188977B2 (en) 2017-03-08 2021-11-30 Stichting Ip-Oversight Method for creating commodity assets from unrefined commodity reserves utilizing blockchain and distributed ledger technology
US11212165B2 (en) * 2017-06-30 2021-12-28 Bitflyer Blockchain, Inc. Consensus-forming method in network, and node for configuring network
US11348101B2 (en) 2018-12-19 2022-05-31 International Business Machines Corporation Post-settlement processes
US11347726B2 (en) * 2017-08-29 2022-05-31 Huawei Technologies Co., Ltd. Cross-chain transaction method and apparatus
US11432149B1 (en) 2019-10-10 2022-08-30 Wells Fargo Bank, N.A. Self-sovereign identification via digital credentials for selected identity attributes
US20220278851A1 (en) * 2017-07-24 2022-09-01 Comcast Cable Communications, Llc Systems and methods for managing digital rights
US11720545B2 (en) 2018-12-19 2023-08-08 International Business Machines Corporation Optimization of chaincode statements
US20230305889A1 (en) * 2018-11-07 2023-09-28 Ebay Inc. Resource trust model for securing component state data for a resource using blockchains
US11941588B2 (en) * 2015-11-06 2024-03-26 Cable Television Laboratories, Inc. Systems and methods for blockchain virtualization and scalability
WO2024066005A1 (en) * 2022-09-30 2024-04-04 蚂蚁区块链科技(上海)有限公司 Method and apparatus for replaying blockchain transaction

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11748137B2 (en) * 2018-03-28 2023-09-05 Telefonaktiebolaget Lm Ericsson (Publ) Methods and apparatus for multi-provider virtual network services
EP3905636A1 (en) * 2018-12-28 2021-11-03 Hefei Dappworks Technology Co., Ltd. Data processing method and apparatus for blockchain, and blockchain system
CN110191130B (en) * 2019-05-31 2021-07-06 杭州复杂美科技有限公司 Method, device and storage medium for defending against false transaction attacks
CN110365493B (en) * 2019-08-22 2020-09-11 电子科技大学 Multi-form derivable annular block chain construction method
CN111858777A (en) * 2020-08-10 2020-10-30 杭州复杂美科技有限公司 Block processing method, device and storage medium

Family Cites Families (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20150379510A1 (en) 2012-07-10 2015-12-31 Stanley Benjamin Smith Method and system to use a block chain infrastructure and Smart Contracts to monetize data transactions involving changes to data included into a data supply chain.
US10340038B2 (en) 2014-05-13 2019-07-02 Nant Holdings Ip, Llc Healthcare transaction validation via blockchain, systems and methods
US10346814B2 (en) 2014-06-04 2019-07-09 MONI Limited System and method for executing financial transactions
US9836908B2 (en) 2014-07-25 2017-12-05 Blockchain Technologies Corporation System and method for securely receiving and counting votes in an election
US9608829B2 (en) * 2014-07-25 2017-03-28 Blockchain Technologies Corporation System and method for creating a multi-branched blockchain with configurable protocol rules
US20160098723A1 (en) 2014-10-01 2016-04-07 The Filing Cabinet, LLC System and method for block-chain verification of goods
US10812274B2 (en) * 2015-05-07 2020-10-20 Blockstream Corporation Transferring ledger assets between blockchains via pegged sidechains
EP3125489B1 (en) * 2015-07-31 2017-08-09 BRITISH TELECOMMUNICATIONS public limited company Mitigating blockchain attack
US20170228371A1 (en) * 2016-02-05 2017-08-10 Manifold Technology, Inc. Blockchain-enhanced database
US20170236123A1 (en) * 2016-02-16 2017-08-17 Blockstack Inc. Decentralized processing of global naming systems

Cited By (38)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11941588B2 (en) * 2015-11-06 2024-03-26 Cable Television Laboratories, Inc. Systems and methods for blockchain virtualization and scalability
US10817593B1 (en) 2015-12-29 2020-10-27 Wells Fargo Bank, N.A. User information gathering and distribution system
US11755707B1 (en) 2015-12-29 2023-09-12 Wells Fargo Bank, N.A. User information gathering and distribution system
US20190386970A1 (en) * 2017-02-10 2019-12-19 Nokia Technologies Oy Blockchain-based authentication method and system
US11671414B2 (en) * 2017-02-10 2023-06-06 Nokia Technologies Oy Blockchain-based authentication method and system
US11188977B2 (en) 2017-03-08 2021-11-30 Stichting Ip-Oversight Method for creating commodity assets from unrefined commodity reserves utilizing blockchain and distributed ledger technology
US11212165B2 (en) * 2017-06-30 2021-12-28 Bitflyer Blockchain, Inc. Consensus-forming method in network, and node for configuring network
US20220278851A1 (en) * 2017-07-24 2022-09-01 Comcast Cable Communications, Llc Systems and methods for managing digital rights
US11018878B2 (en) * 2017-07-26 2021-05-25 Advanced New Technologies Co., Ltd. Digital certificate management method, apparatus, and system
US11290287B2 (en) * 2017-07-26 2022-03-29 Advanced New Technologies Co., Ltd. Digital certificate management method, apparatus, and system
US11240046B2 (en) 2017-07-26 2022-02-01 Advanced New Technologies Co., Ltd. Digital certificate management method, apparatus, and system
US20200127855A1 (en) * 2017-07-26 2020-04-23 Alibaba Group Holding Limited Digital certificate management method, apparatus, and system
US11032088B2 (en) * 2017-07-26 2021-06-08 Advanced New Technologies Co., Ltd. Digital certificate management method, apparatus, and system
US11347726B2 (en) * 2017-08-29 2022-05-31 Huawei Technologies Co., Ltd. Cross-chain transaction method and apparatus
US10628389B2 (en) * 2018-01-25 2020-04-21 Merck Sharp & Dohme Corp. Verification of data provenance for existing computer systems
US20190228086A1 (en) * 2018-01-25 2019-07-25 Merck Sharp & Dohme Corp. Verification of Data Provenance for Existing Computer Systems
US10630463B2 (en) * 2018-02-26 2020-04-21 Ca, Inc. Meta block chain
US11030161B2 (en) * 2018-03-28 2021-06-08 Exosite LLC Blockchain scaling method and blockchain scaling apparatus
JP2021504808A (en) * 2018-05-02 2021-02-15 バイドゥ オンライン ネットワーク テクノロジー (ベイジン) カンパニー リミテッド How to determine the main chain of the blockchain, devices, equipment and storage media
US11012229B2 (en) * 2018-06-22 2021-05-18 Wealedger Network Technologies Co., Ltd. Method for preventing short-term bifurcation and double-spend attack on block chain network
CN109246176A (en) * 2018-07-03 2019-01-18 北京邮电大学 Based on the multi-controller synchronous method and device of block chain in software defined network
CN109525398A (en) * 2018-10-18 2019-03-26 尚维斯 A method of realizing that decentralization power proves common recognition
CN109447640A (en) * 2018-10-23 2019-03-08 杭州弗兰科信息安全科技有限公司 A kind of improvement PoW common recognition algorithm based on equity
US20230305889A1 (en) * 2018-11-07 2023-09-28 Ebay Inc. Resource trust model for securing component state data for a resource using blockchains
US10909122B2 (en) 2018-11-09 2021-02-02 International Business Machines Corporation Using modified blockchain concepts to guarantee no tuple loss and/or no tuple corruption
TWI682346B (en) * 2018-11-12 2020-01-11 柯賓漢數位金融科技有限公司 Method and system for generating blockchain
US20210201311A1 (en) * 2018-12-05 2021-07-01 Tencent Technology (Shenzhen) Company Limited Method for operating electronic device, apparatus and storage medium thereof
US11348101B2 (en) 2018-12-19 2022-05-31 International Business Machines Corporation Post-settlement processes
US11720545B2 (en) 2018-12-19 2023-08-08 International Business Machines Corporation Optimization of chaincode statements
CN109831509A (en) * 2019-02-18 2019-05-31 深圳市优学链科技有限公司 A kind of common recognition algorithm going out block at random for realizing equal weight
CN109889519A (en) * 2019-02-18 2019-06-14 深圳市优学链科技有限公司 It is a kind of avoid block chain know together in attack free of charge algorithm
US11108820B2 (en) * 2019-06-16 2021-08-31 Moac Blockchain Tech Inc Apparatus and method for distinguishing between legitimate and malicious branches of a split blockchain
US11665197B2 (en) 2019-06-16 2023-05-30 Moac Blockchain Tech Inc Apparatus and method for distinguishing between legitimate and malicious branches of a split blockchain
US11144537B2 (en) 2019-09-16 2021-10-12 Bank Of America Corporation System for data consensus validation in an electronic distributed server network using a screening node
US11729616B1 (en) 2019-10-10 2023-08-15 Wells Fargo Bank, N.A. Self-sovereign identification via digital credentials for identity attributes
US11432149B1 (en) 2019-10-10 2022-08-30 Wells Fargo Bank, N.A. Self-sovereign identification via digital credentials for selected identity attributes
CN113094396A (en) * 2021-01-18 2021-07-09 腾讯科技(深圳)有限公司 Data processing method, device, equipment and medium based on node memory
WO2024066005A1 (en) * 2022-09-30 2024-04-04 蚂蚁区块链科技(上海)有限公司 Method and apparatus for replaying blockchain transaction

Also Published As

Publication number Publication date
US20190102777A1 (en) 2019-04-04
US11042873B2 (en) 2021-06-22

Similar Documents

Publication Publication Date Title
US11042873B2 (en) Blockchain: automatic fork protection
US10360191B2 (en) Establishing overlay trust consensus for blockchain trust validation system
US11562357B2 (en) Resource transfer system
US11829997B2 (en) Self-enforcing security token implementing smart-contract-based compliance rules consulting smart-contract-based global registry of investors
US11663609B2 (en) Method and apparatus to enforce smart contract execution hierarchy on blockchain
US10657526B2 (en) System and method to dynamically setup a private sub-blockchain based on agility of transaction processing
US10839395B2 (en) Techniques for expediting processing of blockchain transactions
JP6975101B2 (en) Methods, devices and non-temporary computer-readable storage media for transaction execution and validation in the blockchain (transaction execution and validation in the blockchain)
US9824031B1 (en) Efficient clearinghouse transactions with trusted and un-trusted entities
US11823178B2 (en) Optimization of high volume transaction performance on a blockchain
US11216802B2 (en) Self-enforcing security token implementing smart-contract-based compliance rules consulting smart-contract-based global registry of investors
US10614454B1 (en) Remote population and redaction of high security data
US11645634B2 (en) Blockchain-based supply chain payment network
US20210036855A1 (en) Transfering tokens between blockchain networks
CA3088147A1 (en) Data isolation in distributed hash chains
US20220076250A1 (en) Blockchain enabled smart compliance
US11954226B2 (en) Verifiable privacy preserving computation
AU2021100212A4 (en) CWCP- Multi-Branched Blockchain Rules: Creating A Multi-Branched Blockchain with Configurable Protocol Rules
Porkodi et al. Smart contract: a survey towards extortionate vulnerability detection and security enhancement
CN117635324A (en) Data processing method, device, equipment and medium based on block chain network
CN113487436A (en) Service processing method and device, electronic equipment and storage medium

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:KONIK, RAFAL P.;MITTELSTADT, ROGER A.;MURAS, BRIAN R.;AND OTHERS;REEL/FRAME:040142/0298

Effective date: 20161019

STPP Information on status: patent application and granting procedure in general

Free format text: NON FINAL ACTION MAILED

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION