Home
Yates Zhang
Cancel

Blockchain Web3 Solidity Memory与storage的区别

memory:  放在EVM内存中 storage: 持久化在 block上 所以到时候查询一下放在那里合适。 contract的constructor中的参数都是memory

Blockchain Solidity Modifier的使用underscore

refer to: https://ethereum.stackexchange.com/questions/5861/are-underscores-in-modifiers-code-or-are-they-just-meant-to-look-cool modifier 就是一个function before hook, 1.  _ 下划线表示被hook的方法内容。 2....

Blockchain Solidity Evm虚拟机深入与如何工作的

refer to: https://medium.com/mycrypto/the-ethereum-virtual-machine-how-does-it-work-9abac2b7c9e EVM = Ethereum Virtual Machine, 以太坊虚拟机 现在是用的 solidity, 之前用的是 Serpent, Mutan solidity 无法直接被EVM运行, sol...

Blockchain Evm Web3 Evm系列的地址转换

refer to: https://forum.moralis.io/t/how-to-get-metamsk-address/2556 Web3.utils.toChecksumAddress("0xb0557906c617f0048a700758606f64b33d0c41a6") => '0xb0557906c617f0048A700758606f64b33D0C41A6'

Aliyun Domain 设置cname与txt冲突的问题

refer to : https://boke112.com/post/5727.html 如果阿里云的解析出问题(同时设置txt 与 CNAME 记录), 解决办法: 1. 使用 cloud xns 进行解析 2. 不更换DNS SERVER, 只是分别指定不同的 域名解析线路,例如下图, TXT 走境外的解析, CNAME 走 境内的(智能)的解析

新手入门区块链的步骤

1. ETH 的基本操作:转账,创建钱包,查询余额, etherscan.io 浏览器的使用。2. 节点的基本操作。(在本地跑 ETH轻节点 ,在节点上可以查询余额, 查询账号 等)3. 在remix上,写智能合约(简单的getter/setter) ,通过metamask调用方法 , 熟悉solidity语法4. 在本地搭建contract的开发环境( solcjs --- npm安装,...

Rails Devise 奇怪的问题 同时使用2个model

current_xx 返回的是一个 Hash, 而不是一个model . 好奇怪啊 解决办法; 1. 删除cookie 2. 重启rails server 就可以了 究其原因,应该是我同时在一个rails项目中同时使用2个model作为devise登录造成的

在infura上发放contract Erc721

refer to: https://docs.infura.io/infura/tutorials/ethereum/deploy-a-contract-using-web3.js#2.-create-a-project-directory 1. 创建一个项目文件夹,例如 /workspace/blockchain/contract_on_goerli_using_infura 2. np...

Goerli领取faucet

refer to: 地址1 https://goerlifaucet.com/ (好使,0.01 ETH 每天够用了) 要求先注册alchemy 账号才行。 地址2 https://goerli-faucet.pk910.de/   (特别逗哈哈哈,适合在睡觉之前弄) 进来之后,输入 我们的地址,点击 开始,会出现这个情况: 哈哈。。。太好玩了,这个灰太狼还是个动...

Ubuntu重命名标签页 Rename Terminal Title

refer to: https://askubuntu.com/questions/636944/how-to-change-the-title-of-the-current-terminal-tab-using-only-the-command-line 工作开发多了,会发现tab的数量太多, 如果能设置各种标签的名字就好了 这方面 windows  terminal previ...