블록체인에 대한 구성
안테스 드 엠페자르
Para realizar este tutorial ocupas la billeteraMetamask que la puedes conseguir como una extensión de tu navegador. Rinkeby Testnet에 추가로 필요한 사항은 다음과 같습니다Faucet.
엘 콘트라토 인텔리전트
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
contract Vault {
mapping(address => uint) public balances;
function deposit() public payable
{
balances[msg.sender] += msg.value;
}
function withdrawAll() public
{
address beneficiary = msg.sender;
uint amount = balances[msg.sender];
//payable(beneficiary).transfer(amount);
(bool success, ) = address(beneficiary).call{value: amount}("");
require(success, "Transfer failed.");
balances[msg.sender] = 0;
}
}
¡ Gracias por ver este 튜토리얼!
Sígueme en dev.to y en para todo lo relacionado al desarrollo en Blockchain en Español. Y también a que nos comparte un mundo de conocimiento.
Reference
이 문제에 관하여(블록체인에 대한 구성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/turupawn/construye-una-boveda-en-el-blockchain-2189텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)