LOFTER for ipad —— 让兴趣,更有趣

点击下载 关闭
MMM(3M)互助智能合约系统开发技术
Lyr96246466 2023-07-03

  智能合约(Smart Contract)是以计算机为主要工具【181公链2591開发3365微电】将数学算法嵌入到程序中,用以证明某个事件是否符合约定条件,并保证各方在约定时间内按照约定条件达成一致,以验证和执行合同条款的计算机文本。简单来说智能合约是一个计算机程序,可以在不需要第三方介入的情况下自动执行合同条款。


  在传统合约中,如果一个交易是在互联网上进行,那么需要先通过一个叫公钥(public key)的数学算法(public function),将交易双方的私钥转换为一串字符串,然后用公钥对字符串进行校验,以确保交易不会被篡改或伪造。然而在智能合约中,由于没有了私钥值这一约束条件,公钥很难被伪造。


  智能合约通过数学算法来验证交易是否符合约定的条件:例如合同规定了一个条件:“一辆汽车需要从A地运送到B地。”为了确保这条合同中所规定的交易在满足该条件时发生,就需要一个函数或者一个算法来验证这条合约是否符合约定条件。

pragma solidity ^0.8.4;

 

contract Coin {

    // The keyword "public" makes variables

    // accessible from other contracts

    address public minter;

    mapping (address => uint) public balances;

 

    // Events allow clients to react to specific

    // contract changes you declare

    event Sent(address from, address to, uint amount);

 

    // Constructor code is only run when the contract

    // is created

    constructor() {

        minter = msg.sender;

    }

 

    // Sends an amount of newly created coins to an address

    // Can only be called by the contract creator

    function mint(address receiver, uint amount) public {

        require(msg.sender == minter);

        balances[receiver] += amount;

    }

 

    // Errors allow you to provide information about

    // why an operation failed. They are returned

    // to the caller of the function.

    error InsufficientBalance(uint requested, uint available);

 

    // Sends an amount of existing coins

    // from any caller to an address

    function send(address receiver, uint amount) public {

        if (amount > balances[msg.sender])

            revert InsufficientBalance({

                requested: amount,

                available: balances[msg.sender]

            });

 

        balances[msg.sender] -= amount;

        balances[receiver] += amount;

        emit Sent(msg.sender, receiver, amount);

    }

}

  在智能合约中,可以通过编程直接将这个函数或者算法生成并执行:这相当于将这条合约的相关参数设置为某一值(例如“一辆汽车需要从A地运送到B地”),然后就可以直接将这个参数赋予一个脚本或代码来执行这个脚本或代码中的条款;如果该合约达到了约定条件(例如“在B地完成交付”)就会触发“强制执行”(例如“交易完成后该条款自动生效”)。


  智能合约是可编程逻辑算法实现。随着人工智能技术和区块链技术的发展,会出现更多智能合约应用;同时会有更多更好的新技术出现。


推荐文章
评论(0)
分享到
转载我的主页