区块链相关
什么是区块链:https://zhuanlan.zhihu.com/p/133484995
比特币词汇表:http://eth.geeknr.com/zh/GLOSSARY.html。
比特币入门教程(阮一峰):http://www.ruanyifeng.com/blog/2018/01/bitcoin-tutorial.html。
btcpoo
之Stratum协议:https://www.shuzhiduo.com/A/QW5Y0vAKJm/
接口地址:
eth:https://eth.wiki/json-rpc/API#eth_getblockbyhash
btc:http://cw.hubwiz.com/card/c/elements-rpc-api/1/3/3/
btc:https://developer.bitcoin.org/reference/rpc/decodescript.html
币种信息查找地址:
btc:https://www.blockchain.com/btc-testnet/block/1450309
btc:https://sochain.com/tx/BTCTEST/57d7f1bd36ffe0bf4907f3317aba75dc566a4cfad82a9508d164209af536b68c
eth: https://ropsten.etherscan.io/
usdt:https://blockexplorer.one/omni/testnet
添加币地址:
btc:https://bitcoinfaucet.uo1.net/
eth:https://faucet.ropsten.be/
框架相关
https://www.cnblogs.com/yzg-14/category/1641090.html
go 25 个关键字
break | default | func | interface | select |
case | defer | go | map | struct |
chan | else | goto | package | switch |
const | fallthrough | if | range | type |
continue | for | import | return | var |
- var和const参考2.2Go语言基础里面的变量和常量申明
- package和import已经有过短暂的接触
- func 用于定义函数和方法
- return 用于从函数返回
- defer 用于类似析构函数
- go 用于并发
- select 用于选择不同类型的通讯
- interface 用于定义接口,参考2.6小节
- struct 用于定义抽象数据类型,参考2.5小节
- break、case、continue、for、fallthrough、else、if、switch、goto、default这些参考- - 2.3流程介绍里面
- chan用于channel通讯
- type用于声明自定义类型
- map用于声明map类型数据
- range用于读取slice、map、channel数据