지난주 단체채팅에서 솔라나 컨트랙트를 부르려고 쓴 고랭 자랑을 했는데요. 어떤 사람들은 go가 견고성을 어떻게 부르는지 배우고 싶다고 말합니다. 링크에 게시한 ABI 없이 계약을 호출하는 방법을 살펴보니 Python, Ether 및 Solidity로 작성되었지만 실제로는 작성이 가능하지 않습니다.
그 그룹의 사람들은 chatgpt를 사용하면 abigen을 사용하여 계약 메서드를 호출하는 go 패키지를 생성한다고 말했습니다.
그래서 컨트랙트를 호출하기 위한 go 패키지를 생성하기 위해 abigen을 사용할 필요가 없는 방법에 대해 이야기하겠습니다.
저는 여전히 Xiaodao의 포크 버전인 https://github.com/daog1/ethgo를 사용하고 싶습니다
umbracle/ethgo의 포크
이점에 대해서는 이야기하지 않고 직접 코드를 읽어보세요.
처음에는 계약 호출을 하려면 abi 파일을 생성해야 했습니다. 나중에는 이더리움에서
라는 더 간단한 방법을 보았습니다.사람이 읽을 수 있는 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는 에테르 포크와 약간 비슷하므로 사람이 읽을 수 있는 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
내 포크 버전에 문제가 있으면 알려주세요.
저는 주로 Human-Readable ABI를 사용하여 호출하는데, abigen은 너무 번거롭고 실수하기 쉽습니다.
위 내용은 go는 새로운 견고성 계약 방식을 요구합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!