铭文介绍
Core酷儿大妈链的铭文$COCO,总量2100w张,协议core-20,12月22日晚8点过后,准确从9982899区块开始铭刻,成本很低,可以几乎忽略,打完市值才7000美刀,翻几十倍不成问题,建议打了防身。
推特:https://twitter.com/Corescriptions
电报交流群: https://t.me/core_coco
官网:https://corescriptions.com/
数据格式
篆刻铭文其实就是自己往自己的wallet address发送交易,交易会上链,并在交易中附上指定的data数据(格式如下)——
1 2 3 4 5
| UTF-8显示: data:application/json,{"p":"core-20","op":"mint","tick":"coco","amt":"1000"}
HEX十六进制显示: 0x646174613a6170706c69636174696f6e2f6a736f6e2c7b2270223a22636f72652d3230222c226f70223a226d696e74222c227469636b223a22636f636f222c22616d74223a2231303030227d
|
如何打铭文
常规打法是一张一张打,在官网https://corescriptions.com/CORE20链接钱包,点击“Mint”, 不过这样太慢了。可以看到当前进度是0.19%,实际上官方索引同步落后了链上106分钟,不过还有很多就是了。
Python脚本
脚本打的方式很高效,只需要本地配置好python脚本,安装好web3依赖包就可以批量铭刻铭文。如果你电脑上没有安装pip3,按照错误提示先安装pip3。
1
| pip3 install web3==5.31.1
|
执行 vim cocoMint.py
命令新打开编辑文件,输入以下代码内容,保存退出。
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 32 33 34 35 36 37 38 39 40 41 42
| from web3 import Web3 from dotenv import load_dotenv import os,time load_dotenv()
private_key = '填你wallet的private key' address = '填你wallet的address' rpc_url = "https://rpc-core.icecreamswap.com" # 去https://chainlist.org/chain/1116 找响应快的rpc server web3 = Web3(Web3.HTTPProvider(rpc_url)) print(web3.isConnected()) print(Web3.fromWei(web3.eth.getBalance(address),'ether')) c=0 while True: nonce = web3.eth.get_transaction_count(address) gas_price = int(web3.eth.gas_price * 1.25) #看网络情况调高调低gas倍数,默认1.25 print(gas_price) tx = { 'nonce': nonce, 'chainId': 1116, 'to': address, 'from':address, 'data':'0x646174613a6170706c69636174696f6e2f6a736f6e2c7b2270223a22636f72652d3230222c226f70223a226d696e74222c227469636b223a22636f636f222c22616d74223a2231303030227d', #mint 16进制数据 'gasPrice': gas_price, 'value': Web3.toWei(0, 'ether') } try: gas = web3.eth.estimateGas(tx) tx['gas'] = gas print(tx) signed_tx = web3.eth.account.sign_transaction(tx,private_key) tx_hash = web3.eth.send_raw_transaction(signed_tx.rawTransaction) print(web3.toHex(tx_hash)) receipt = web3.eth.wait_for_transaction_receipt(tx_hash, timeout=10) if receipt.status == 1: c = c+1 print("%s Mint Success!" %c) continue else: continue except Exception as e: print(e)
|
记得先替换程序开头的private_key和address两个为你自己的钱包。钱包申请方法使用文章末尾OKX Web3钱包。
python程序编辑好后,打开电脑的终端(windows下是cmd),执行 python3 cocoMint.py
命令开始即可开始打铭文:
链上交易查询
查询可以在scan.coredao.org,输入交易哈希或者你的wallet address,就可以查询到有没有成功上链。
进度查询
通过社区corescriptions官网可以查看当前铭文打的总体进度,可以输入你的wallet address,查看自己打了多少张。
私有RPC注册
在https://chainlist.org/chain/1116找的RPC有可能因为打的人太多不稳定,最好注册你自己的专属RPC,
可以去https://www.ankr.com/注册一个,免费的。
钱包wallet地址管理
可以使用TP(TokenPocket)钱包,不过我建议直接使用OKX的Web3钱包进行跨链获取Gas,铭文铭刻比别人快一些。OKX的Web3钱包支持60+主流的公链,也提供多链交易,主要是主要提币不用等,完全T+0。
注册后登录APP,点击顶部Web3钱包——接收——选择币种——搜索”Core”,复制它的地址,就是你的钱包地址啦。
欧易暂时不支持Core链铭文的铭刻,这也就是为啥我们需要Python脚本。