区块链笔记

solidity 中文文档

UTXO(Unspent Transaction Outputs)是未花费的交易输出,它是比特币交易生成及验证的一个核心概念。交易构成了一组链式结构,所有合法的比特币交易都可以追溯到前向一个或多个交易的输出,这些链条的源头都是挖矿奖励,末尾则是当前未花费的交易输出。

浏览器编辑器Remix

mac安装Remix

git clone https://github.com/ethereum/remix-ide.git

cd remix-ide

npm install

npm run setupremix  # this will clone https://github.com/ethereum/remix for you and link it to remix-ide

npm start

智能合约

remix面板讲解

 环境搭建

mac 安装solidity

EVM 智能合约虚拟机

Bytecode 

原文地址:https://www.cnblogs.com/wxtrip/p/10618688.html