iT邦幫忙

2022 iThome 鐵人賽

DAY 10
0
影片教學

在 2022 年,我們該如何寫智能合約系列 第 10

發送 Ether 的方法:Send, Transfer

  • 分享至 

  • xImage
  •  

#鐵人賽 #ethereum #solidity

昨天的撲滿中,只實作了存錢的功能,今天來幫他做一下領錢的功能吧!

介紹的功能有:

  1. 位址的成員函式 Member functions of the address type: send, transfer, balance
  2. 發送者的位址 msg.sender
  3. 當前合約 this

本日影片: https://youtu.be/gi-FKEtNVi0
本日合約:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

contract PiggyBank {
    constructor() payable {}
    receive() payable external {}
    function withdraw() external {
        address payable Receiver = payable(msg.sender);
        Receiver.transfer(address(this).balance);
    }
}

本影片提到的連結:
「Remix IDE」: https://remix.ethereum.org/
「在 2022 年,我們該如何寫智能合約」: https://ithelp.ithome.com.tw/users/20083367/ironman/5019
「那些關於 Ethereum 的事」: https://ithelp.ithome.com.tw/users/20083367/ironman/5136
「一本關於 Ethereum 與 Solidity 智能合約的書」: https://solidity.tw
「文章或主題許願池」: https://github.com/hydai/solidity-book/issues
「本系列播放清單」: https://www.youtube.com/playlist?list=PLHmOMPRfmOxQYDnXAc1hKY6ra4WDU8ZlM


上一篇
Receive Ether Function 接收 Ether 函式
下一篇
Function Modifier 函式修飾子
系列文
在 2022 年,我們該如何寫智能合約30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言