LOADING...
LOADING...
LOADING...
当前位置:主页 > 知识列表 >

transaction hash

1. 如何使用node.js语言实现PBFT协议 part3

...protected]@53R", "SIGN", 0 ); } // creates a block using the passed lastblock, transactions and wallet instance static createBlock(lastBlock, data, wallet) { let hash; let timestamp = Date.now(); const lastHash = lastBlock.hash; hash = Block.hash(timestamp, lastHash, data); let proposer = wallet.getPublicKey(); let signature = Block.signBlockHash(hash...

知识:区块,消息,创建一个

2. RFC:可组合的 Open Transaction lock script

本文介绍了一个在 Nervos CKB 上能实现 Open Transaction 的 lock script。它的灵感来自于之前 Open Tx Brainstorm的设计,具有在 Open Transaction 中重新排序和重新安排签名组件的新能力。Open Tx Brainstorm:https://talk.nervos.org/t/open-tx-protocol-brainstorm-4-an-implementation-proposal/4427数据结构哈希阵列受最初的 Open Tx 头脑风暴的文章...

知识:命令,数据,交易哈希值,交易的哈希

3. 《比特币开发者指南 专有名词》 翻译

...Li   1. 51-attack: The ability of someone controlling a majority of hashing power to revise transactions history and prevent new transactions from confirming   51-attack:一些人通过拥有大部分地算力,从而可以修改交易历史以及阻止新的交易被确认。   2. accidental-fork: When two or more blocks have the same block height, forking the block cha...

知识:比特币开发

4. 如何使用node.js语言实现PBFT协议 part2

...et) { return eddsa.keyFromSecret(secret); } // returns ids used in transactions static id() { return uuidV1(); } // hashes any data using SHA256 static hash(data) { return SHA256(JSON.stringify(data)).toString(); } // verifies the signed hash by decrypting it with public key /...

知识:区块链,钱包,节点

5. 手把手教你搭建区块链(中)

...竞相创建新区块的算法。通常,难度由字符串中搜索的字符数决定。通过在transaction中获得btc,矿工获得了解题的奖励,整个网络也能够轻松验证其答案。让我们为我们上一篇文章中搭建的区块链实现类似的算法,例如:找到一个数字p,当该数字与上一个块的答案进行哈希运算时,会产生一个带有4个前...

知识:区块,工作量证明,矿工,区块链

6. 用Python构建一个极小的区块链

...服务器框架 from?flask?import?Flask from?flask?import?request node?=?Flask(__name__)#?Store?the?transactions?that #?this?node?has?in?a?list this_nodes_transactions?=?[]@node.route('/txion',?methods=['POST']) def?transaction(): ??if?request.method?==?'POST': ????#?On?each?new?POST?request, ????#?we?extract?the?transaction?data ????new_txion?=?request.get_json() ????#?Then?we?add?the?transaction...

知识:区块,区块链,矿工,加密货币

7. CKB 上租赁管理的实现思路

...更多的是思路的讲解,希望对开发者有一定的启发。从 ckb verify 讲起ckb 的 Transaction 是由一堆 cell 构成的,大致上可以分为引用的 cell 和拥有所有权的 cell,而每一个 Transaction 的作用归结到最后只是所有权的变更,它可能是所有权转移也可能只是更改 cell 自身的状态(考虑交易费的存在,这类交易已经...

知识:租赁管理,CKB,链上编程,火星号精选,火星技术帖

8. Bitcoin Starts the Week Off Mostly Flat, Down Just 0.23%

... Bitcoin? Consider the following brokers: CoinDirect, Gate, Yobit, Stex,币安, DDEX Update on Transactions and Hash Rate Yesterday, the Bitcoin blockchain saw 278,853 transactions recorded on it. The trend in daily transactions is not clear, though it should be noted that transactions have jumped by about 4.21% over the past week. Bitcoin may end up functioning as a currency for transaction...

知识:币安,插图,价格,slightly

9. Conflux公链研究总监“杨光”现场解决实际技术问题

...are no forks in the confirmation time则必然会丢弃大量的有效交易a large number of valid transactions will be discarded.在这么长的延迟时间下谈高 TPSTalking about high TPS with such a long delay没有实际的应用价值has no value for potential real-life applications.首先丢弃大量有效交易Discarding large amounts of valid transaction这个是在比特币Is somethin...

知识:明文,密钥,区块,冲突

10. Qtum量子链实现QTUM-BEAM原子交换,支持隐私跨链交易

...Bob拥有QTUM。Alice想用200个BEAM兑换Bob的80个QTUM。 交易流程 1.1 Bob生成Qtum Lock Transaction Alice首先将自己的公钥传给Bob,Bob本地生成一个原像(Hash Preimage),计算其像(Hash Image),并利用Alice的公钥和像(Hash Image)生成一个有加锁脚本的交易,这个交易锁住了80个Bob的QTUM UTXO,只有当满足以下任一条件时,才能使...

知识:区块链,量子链,原子

11. 大咖专访:Conflux公链研究总监“杨光”现场解决实际技术问题

...are no forks in the confirmation time则必然会丢弃大量的有效交易a large number of valid transactions will be discarded.在这么长的延迟时间下谈高 TPSTalking about high TPS with such a long delay没有实际的应用价值has no value for potential real-life applications.首先丢弃大量有效交易Discarding large amounts of valid transaction这个是在比特币Is somethin...

知识:明文,密钥,区块,冲突

12. 比特币白皮书

...pose a solution to the double-spending problem using a peer-to-peer network. The network timestamps transactions by hashing them into an ongoing chain of hash-based proof-of-work, forming a record that cannot be changed without redoing the proof-of-work. The longest chain not only serves as proof of the sequence of events witnessed, but proof that it came from the largest pool of CPU power. As lon...

知识:区块,算力,双重支付,链上

13. 以太坊tx data

// core/types/transaction.go:38type Transaction struct { data txdata // caches hash atomic.Value size atomic.Value from atomic.Value}type txdata struct { AccountNonce uint64 Price *big.Int GasLimit uint64 Recipient *common.Address Amount *big.Int Payload []byte // Signature values V *big.Int R *big.Int S *big.Int // This is only used when marshaling to JSON. Hash *common.Hash `json:"hash" rlp:...

知识:hash,atomic,txdata,caches

14. 以太坊上的数字签名

...gContract', type: 'address' },{ name: 'salt', type: 'bytes32' }],Transaction: [{ name: 'to', type: 'address' },{ name: 'amount', type: 'uint256' },{ name: 'nonce', type: 'uint256' }]},domain: {name: 'MyCrypto',version: '1.0.0',chainId: 1,verifyingContract: '0x098D8b363933D742476D...

知识:以太,坊,上,的,数字签名,密码学,签名,是,区块,

15. 【币范·科普】以太坊到底是如何工作的(上 )

...区块链就是一个具有共享状态的密码性安全交易的单机(cryptographically secure transactional singleton machine with shared-state)。1这有点长,是吧?让我们将它分开来看:“密码性安全(Cryptographically secure)”是指用一个很难被解开的复杂数学机制算法来保证数字货币生产的安全性。将它想象成类似于防火墙的这种。它...

知识:区块,以太坊,矿工,合约