solidity基础(制作以太坊钱包合约)

Posted 泠泠在路上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了solidity基础(制作以太坊钱包合约)相关的知识,希望对你有一定的参考价值。

//存取主币
contract EtherWallet
   address payable public owner;
   constructor()
    owner=payable(msg.sender);
   
   receive() external payable
   //提取
   function withdraw(uint _amount) external
     //不是当前用户就报错
       require(msg.sender==owner,"caller is not owner");
       payable(msg.sender).transfer(_amount);
   
   //获取余额
   function getBalance() external view returns (uint)
       return address(this).balance;
   
  
    

以上是关于solidity基础(制作以太坊钱包合约)的主要内容,如果未能解决你的问题,请参考以下文章

区块链项目实战 - 使用以太坊/智能合约solidity,全栈开发区块链借贷记账小应用,含完整源码

区块链项目实战 - 使用以太坊/智能合约solidity,全栈开发区块链借贷记账小应用,含完整源码

区块链Solidity智能合约与Solidity介绍

区块链2.0以太坊智能合约solidity之helloworld

区块链开发编写调试第一个以太坊智能合约

区块链以太坊环境搭建(详细篇)