Initializing a Client
// Import the latest version of the package
import (
phoenixClient "github.com/PhoenixGlobal/Phoenix-Chain-SDK/ethereum/ethclient"
)// Connect to a phoenix node
client, err := phoenixClient.Dial("https://dataseed1.phoenix.global/rpc")
if err != nil {
log.Fatal(err)
}Last updated