go-sdk icon indicating copy to clipboard operation
go-sdk copied to clipboard

Best in class web3 SDK for Go 1.16+

Results 8 go-sdk issues
Sort by recently updated
recently updated
newest added

Hi. I get an error while sending transaction in Polygon network: "transaction underpriced" or "execution reverted". ``` tx, err := contract.Transfer(context.Background(), trx.ToAddress, trx.Amount) ... tx, err := contract.TransferBatch(context.Background(), transactions) ```...

Bumps [github.com/btcsuite/btcd](https://github.com/btcsuite/btcd) from 0.22.0-beta to 0.23.2. Release notes Sourced from github.com/btcsuite/btcd's releases. btcd v0.23.2 What's Changed MuSig2: Catch up to 0.4.0 by @​sputn1ck in btcsuite/btcd#1865 Bump btcd version in btcutil...

dependencies
go

Bumps [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) from 1.10.15 to 1.12.1. Release notes Sourced from github.com/ethereum/go-ethereum's releases. Antibaar (v1.12.1) Geth v1.12.1 is a maintenance release, albeit a rather large one, since we haven't put out...

dependencies
go

Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@​joaomoreno, @​lukekarrys) Changelog Sourced from semver's...

dependencies
javascript

As of version 2.0.2, the Go SDK does not support websocket rpc connections because in the [`getDefaultRpc()`](https://github.com/thirdweb-dev/go-sdk/blob/v2.0.2/thirdweb/sdk.go#L230) function, it checks: ```go if strings.HasPrefix(rpcUrlorName, "http") { return rpcUrlorName, nil } else...

When I am trying to create a new SDK instance, I am getting **"panic: Unsupported chain id**" error Here is the code sdk, err := thirdweb.NewThirdwebSDK("https://gather-testnet-network.rpc.thirdweb.com", nil) if err !=...