会员
商店
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
apeNote
博客园
首页
新随笔
联系
管理
订阅
随笔- 106 文章- 1 评论- 3 阅读-
23041
上一页
1
2
3
4
5
6
7
8
···
11
下一页
2022年12月20日
基于Fisco-Bcos的区块链智能合约-业务数据上链SDK实现
摘要: http://t.zoukankan.com/aGboke-p-14024631.html
阅读全文
posted @ 2022-12-20 00:18 apeNote
阅读(55)
评论(0)
推荐(0)
编辑
2022年12月19日
FISCO BCOS 区块链官方文档
摘要: https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/introduction.html
阅读全文
posted @ 2022-12-19 14:06 apeNote
阅读(140)
评论(0)
推荐(0)
编辑
2022年12月8日
仲裁链
摘要: 1、
阅读全文
posted @ 2022-12-08 19:11 apeNote
阅读(15)
评论(0)
推荐(0)
编辑
区块链技术基础
摘要: 个人微博:https://weibo.com/u/2434823180 Blog: https://apenote.github.io 知乎:https://www.zhihu.com/people/3-33-52-32 vx: apedamoon 区块链通识 区块链技术基础 区块链原理 挖矿原理
阅读全文
posted @ 2022-12-08 13:18 apeNote
阅读(132)
评论(0)
推荐(0)
编辑
2022年12月2日
Invalid account: #0 for network: goerli - private key too short, expected 32 bytes
摘要: npx hard hat 编译报错 * Invalid account: #0 for network: goerli - private key too short, expected 32 bytes 解决方式: 大意了,不是地址,是私钥 我的交流微博:https://weibo.com/u/2
阅读全文
posted @ 2022-12-02 13:52 apeNote
阅读(127)
评论(0)
推荐(0)
编辑
Invalid value undefined for HardhatConfig.networks.goerli.url - Expected a value of type string.
摘要: 我的交流微博:https://weibo.com/u/2434823180 npx hardhat compile 报错 Error HH8: There's one or more errors in your config file: * Invalid value undefined for
阅读全文
posted @ 2022-12-02 13:44 apeNote
阅读(366)
评论(0)
推荐(0)
编辑
2022年11月20日
智能合约全栈开发示例(五)- 部署到Goeril测试网
摘要: test 在alchemyapi.io 创建 dapp 进入主页,查看配置 view Key 安装插件 npm install dotenv --save 创建 .env 文件, 把 上面的 view key 复制到下面 API_URL = "" PRIVATE_KEY = "" 修改 hardha
阅读全文
posted @ 2022-11-20 17:47 apeNote
阅读(222)
评论(0)
推荐(0)
编辑
智能合约全栈开发示例(四)- react部分
摘要: 欢迎微博私信交流:https://weibo.com/u/2434823180 React 代码 App.js import logo from './logo.svg'; import './App.css'; import React, {useState} from 'react' impor
阅读全文
posted @ 2022-11-20 16:55 apeNote
阅读(79)
评论(0)
推荐(0)
编辑
智能合约全栈开发示例(三)- 设置路径并编译
摘要: 设置 paths 参数 使编译后的文件在 指定路径下 module.exports = { solidity: "0.8.17", paths: { artifacts: "./src/artifacts", }, networks: { hardhat: { chainId: 1337, }, }
阅读全文
posted @ 2022-11-20 12:27 apeNote
阅读(64)
评论(0)
推荐(0)
编辑
智能合约全栈开发示例(二)-- 安装使用metamask并设置本地测试网络
摘要: 交流微博:https://weibo.com/u/2434823180 安装metamask 先安装metamask插件: metamask.io 创建使用metamask 创建新钱包,输入完密码,并手抄助记词,完成页面 设置 本地端口8545 测试网络 metamask 换本地测试网 点击“显示/
阅读全文
posted @ 2022-11-20 11:27 apeNote
阅读(825)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
···
11
下一页
公告
昵称:
apeNote
园龄:
3年1个月
粉丝:
1
关注:
1
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
随笔分类
Solidity基础(17)
智能合约带react(4)
智能合约全栈demo(5)
随笔档案
2024年10月(6)
2024年9月(1)
2024年8月(10)
2024年7月(2)
2023年5月(2)
2023年2月(6)
2023年1月(3)
2022年12月(6)
2022年11月(6)
2022年7月(26)
2022年6月(12)
2022年5月(6)
2022年4月(8)
2022年3月(4)
2022年2月(8)
阅读排行榜
1. Cannot read properties of null (reading 'pickAlgorithm')(5049)
2. react 报错(2239)
3. truffle安装问题-无法加载文件 C:\Users .... 因为在此系统上禁止运行脚本。有关详细信息,请参阅 http s:/go.microsoft.com/fwlink/?LinkID=135170(977)
4. 智能合约全栈开发示例(二)-- 安装使用metamask并设置本地测试网络(825)
5. 公钥密码学的基本原理(745)
评论排行榜
1. solidity基础-payable实现合约存入提出token(2)
2. 身体是革命的本钱(1)
推荐排行榜
1. 身体是革命的本钱(1)
最新评论
1. Re:solidity基础-payable实现合约存入提出token
@dcy01 是的,当时没考虑...
--apeNote
2. Re:添加主网
这不禁让我想起来一句话,不死就能永远的活着。
--无疆先生
3. Re:solidity基础-payable实现合约存入提出token
你这个代码 function withdraw() public { payable(msg.sender).transfer(account[msg.sender]); account[msg.se...
--dcy01
点击右上角即可分享