智能合约区块链历史

时间:2017-04-26 13:20:58

标签: ethereum solidity web3js

智能合约是否有可能查看过去完成的交易,换句话说,智能合约是否有可能看到自成立以来谁向其发送了以太?

2 个答案:

答案 0 :(得分:2)

如果智能合约具有记录这些活动的数据结构,那么这是可能的。

匆匆准备的例子:

pragma solidity ^0.4.6;

contract TrackPayments {

    struct PaymentStruct {
        address sender;
        uint amount;
    }

    // look up the struct with payment details using the unique key for each payment
    mapping(bytes32 => PaymentStruct) public paymentStructs;

    // payment keys in order received
    bytes32[] public paymentKeyList;

    event LogPaymentReceived(address sender, uint amount);

    function payMe() public payable returns(bool success) {
        if(msg.value==0) throw;
        // make a unique key ... 
        bytes32 newKey = sha3(msg.sender, paymentKeyList.length);
        paymentStructs[newKey].sender = msg.sender;
        paymentStructs[newKey].amount = msg.value;
        paymentKeyList.push(newKey);
        LogPaymentReceived(msg.sender, msg.value);
        return true;
    }

    function getPaymentCount() public constant returns(uint paymentCount) { return paymentKeyList.length; }

}

这可能会以牺牲顺序或随机访问为代价来提高存储效率。这种方式都可以。

希望它有所帮助。

答案 1 :(得分:1)

如果你试图通过区块链阅读智能合约的交易,那么在坚固性语言中答案是“否”不存在。您可以使用Rob的示例使用Web3.js或在外部数据库中保存transactiosn的日志,这样就可以检查很多块和大量事务以及异常问题的复杂性。

在其他情况下,您可以使用外部API检查交易并拥有历史记录,例如:https://etherscan.io/apis