上周在群聊吹牛,吹吹我写的golang 调用solana合约的东西。有人说他要学习go调用solidity的方法。我看了看我在登链的无abi调用合约的方法,写的python的,ethers的,solidity的,就是没写golang的,确实可以写写。
那个群里人都说用chatgpt都会用abigen的方式生成go包的方式调用合约方法。
所以我讲种不需要使用abigen生成go包的方法调用合约。
我还是喜欢使用我的晓道fork版,https://github.com/daog1/ethgo
fork自,umbracle/ethgo
好处我不讲,自己读代码。
合约调用最早都是需要abi文件生成的方式,后面还是有了更简单方式,最早我是ethers里面看到叫
a human-readable abi
ethers是这么写的:
// a human-readable abi; for interacting with the contract, we // must include any fragment we wish to use const abi = [ // read-only functions "function balanceof(address owner) view returns (uint256)", "function decimals() view returns (uint8)", "function symbol() view returns (string)", // authenticated functions "function transfer(address to, uint amount) returns (bool)", // events "event transfer(address indexed from, address indexed to, uint amount)" ]; // this can be an address or an ens name const address = "0x70ff5c5b1ad0533eaa5489e0d5ea01485d530674"; // read-only; by connecting to a provider, allows: // - any constant function // - querying filters // - populating unsigned transactions for non-constant methods // - estimating gas for non-constant (as an anonymous sender) // - static calling non-constant methods (as anonymous sender) const erc20 = new ethers.contract(address, abi, provider); // read-write; by connecting to a signer, allows: // - everything from read-only (except as signer, not anonymous) // - sending transactions for non-constant functions const erc20_rw = new ethers.contract(address, abi, signer);
登录后复制
ethgo 有点fork ethers的意思,所以也支持human-readable abi 的方式。
代码这么写
package main import ( "fmt" "math/big" "github.com/umbracle/ethgo" "github.com/umbracle/ethgo/abi" "github.com/umbracle/ethgo/contract" "github.com/umbracle/ethgo/jsonrpc" ) func handleErr(err error) { if err != nil { panic(err) } } func main() { var functions = []string{ "function totalSupply() view returns (uint256)", //Human-Readable ABI } abiContract, err := abi.NewABIFromList(functions) handleErr(err) // Matic token addr := ethgo.HexToAddress("0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0") client, err := jsonrpc.NewClient("https://eth.llamarpc.com") handleErr(err) c := contract.NewContract(addr, abiContract, contract.WithJsonRPC(client.Eth())) res, err := c.Call("totalSupply", ethgo.Latest) //call totalSupply handleErr(err) fmt.Printf("TotalSupply: %s", res["0"].(*big.Int)) }
登录后复制
原版代码在这里:https://github.com/daog1/ethgo/blob/main/examples/contract-call-basic.go/blob/main/examples/contract-call-basic.go
我的那个fork 版,如果你发现什么问题,可以跟我说。
我一般都用human-readable abi 的方式调用,abigen这种太麻烦了,容易搞错。
以上就是go调用solidity合约新方法的详细内容,更多请关注抖狐科技其它相关文章!
-
ROBLOX无法连接服务器是什么原因
roblox中不少玩家反馈都会遇到roblox无法连接服务器是什么原因的问题,那么怎么解决这个问题呢,这边ourplay小编为大家分享几个解决方案。ROBLOX游戏简介 《ROBLOX》是一款融入了射...
-
7400 MB/s 读速:梵想 S790 2TB 固态硬盘 699 元百亿补贴
梵想 s790 2tb ssd ,顺序读取速度可达 7400 mb/s,日常售价为 769 元。 京东双十一大促期间,今晚 20 点,百亿补贴活动价为 699 元: 由京东发货,并提供售后服务。 另外...
-
航海王壮志雄心角色哪些比较强 公测角色强度排行介绍
航海王热血航线公测角色强度排行榜,助你轻松开荒!众多角色中,如何选择高强度角色快速上手?本文将为您带来航海王热血航线公测角色强度排行及详解。最强角色推荐: 一、顶级梯队(T0):鹰眼、艾尼路鹰眼:技能...
-
python怎么清洗爬虫数据
清洗爬虫数据是移除原始数据中的错误和不一致性。python 中清洗爬虫数据的步骤包括:检查数据类型移除重复项处理空值标准化数据验证数据错误处理使用工具定期更新Python 中清洗爬虫数据的最佳实践 什...
-
火狐浏览器怎么设置兼容模式
火狐浏览器中启用兼容模式,只需遵循以下步骤:打开菜单,选择"选项"。导航到"首选项"选项卡。在"一般"部分启用"显示兼容性向导"选项。访问需要兼容模式的网站。点击"启用兼容性模式"按钮。刷新网站以应用...