Magiclink Web3钱包的sdk
refer to: https://magic.link/docs/api/overview 估计就是一个SDK支持多个web3 wallet
refer to: https://magic.link/docs/api/overview 估计就是一个SDK支持多个web3 wallet
运行这个: apt-get install procps iputils-ping telnet vim curl net-tools procps 包含了top, ps iptils-ping : ping net-tools: ifconfig
refer to: https://ethereum.stackexchange.com/questions/83222/vm-exception-while-processing-transaction-invalid-opcode-error 对于这个例子,怎么都无法在ganache上部署。 https:/...
refer to: https://stackoverflow.com/questions/37699573/rails-app-in-docker-container-doesnt-reload-in-development 修改 config/environments/development.rb ...
refer to: https://solidity-by-example.org/hacks/delegatecall/ https://solidity-by-example.org/delegatecall/ 一句话: caller -> middleman -> target&...
refer to: 如下: 查询ETH,转账ETH: const fs = require('fs')
参考: https://nuxtjs.org/docs/configuration-glossary/configuration-watchers/ https://webpack.js.org/configuration/watch/#watchoptions 如果你的项目是个nuxt (webpacker)项...
refer to: https://hardhat.org/ignition/docs/guides/modifications 首次部署贼简单 不过我失败了。准备使用foundry 第二次部署(修改了contract之后) const { buildModule } = require("@nomicfoun...
refer to: https://book.getfoundry.sh/forge/writing-tests https://book.getfoundry.sh/forge/tests
refer to: https://book.getfoundry.sh/forge/deploying 特别简单。而且可以重复部署,没有hardhat 那种乱七八糟的概念。 forge create --rpc-url http://localhost:8545 --private-key 0x59c6995...
https://linuxconfig.org/how-to-enable-disable-wayland-on-ubuntu-20-04-desktop 11代 i5, 只能用ubuntu 21, 连 ubuntu 20 都不行。 安装之后,发现不能使用向日葵 ,腾讯会议等分享屏幕 网上没有解决方案,很绝望 向...
refer to: https://www.evm.codes/playground?unit=Wei&codeType=Bytecode&code=%27%7E3560203501%7E526020%7Ef3%27%7E6000%01%7E_&fork=cancun 在这里可以对EVM...
2014年使用Titanium 做移动开发的时候,就有这样的感受:android做不好,ios也做不好,只能做一些粗浅的事情 2018 使用ReactNative的时候,也是一样。 2022年使用windows + wsl + ubuntu, 感觉仍然类似 想要在这个开发环境下用好,必须同时熟悉windows, ...
refer to: https://alpha-app.agentlayer.xyz/aegisx 例如:对这个代码: pragma solidity ^0.8.0;
refer to: https://stackoverflow.com/questions/57192475/postgresql-in-a-docker-container-on-windows-how-to-persist-data-to-a-local-wind/72021286#72021286 dock...
refer to: https://dashboard.alchemy.com/signup/project
refer to: https://stackoverflow.com/questions/76087226/want-to-pass-address-of-one-contract-into-another-inside-foundry-test https://ethereum.stackexchange....
https://blog.csdn.net/xiangxianghehe/article/details/122856771 记得备份 /etc/apt/sources.list 163.com deb http://mirrors.163.com/ubuntu/ jammy main restric...
如题 来自kimi 完整答案: block.timestamp会在以下情况下增加: 区块生成:每当新的区块被挖掘并添加到以太坊区块链上时,block.timestamp会增加。每个区块的timestamp通常都会比前一个区块的timestamp稍大,因为每个区块的产生都需要一定的时间。 ...
refer to: https://solidity-by-example.org/sending-ether/ 三种方式: 目前是推荐使用 to.call { value: msg.value} (""); 对于contract的接收: receive() fallback() // SPDX-Licens...