Loading Client
Introduction
We cover how to load client using the Go client.
TFPluginClient Configuration
- mnemonics
- keyType: can be
ed25519orsr25519 - network: can be
dev,qa,testormain
Creating Client
Import deployer package to your project:
import "github.com/threefoldtech/tfgrid-sdk-go/grid-client/deployer"
Create new Client:
func main() {
client, err := deployer.NewTFPluginClient(mnemonics, keyType, network, "", "", "", 0, true)
}