Getting started
Getting started
This is a short introduction to zksync2-go
SDK, but covers many of the most common operations that developers require and provides a starting point for those newer to zkSync Era.
Getting zksync2-go
Prerequisites
- Go: >=1.17 (installation guide)
In order to install SDK for zkSync Era, run the command below in your terminal.
go get github.com/zksync-sdk/zksync2-go
Overview
While most of the existing SDKs should work out of the box, deploying smart contracts or using unique zkSync features, like account abstraction, requires providing additional fields to those that Ethereum transactions have by default.
To begin, it is useful to have a basic understanding of the types of objects available and what they are responsible for, at a high level:
Client
provides connection to the zkSync Era blockchain, which allows querying the blockchain state, such as account, block or transaction details, querying event logs or evaluating read-only code using call. Additionally, the client facilitates writing to the blockchain by sending transactions.Signer
wraps all operations that interact with an account. An account generally has a private key, which can be used to sign a variety of types of payloads.Wallet
is a wrapper aroundClient
andSigner
that provides easy usage of the most common features.
Examples
Connect to the zkSync Era network:
ZkSyncEraProvider := "https://testnet.era.zksync.dev"
ZkSyncEraWSProvider := "ws://testnet.era.zksync.dev:3051"
// Connect to zkSync network
client, err := clients.Dial(ZkSyncEraProvider)
if err != nil {
log.Panic(err)
}
defer client.Close()
// Connect to zkSync network using Web Socket
wsClient, err := clients.Dial(ZkSyncEraWSProvider)
if err != nil {
log.Panic(err)
}
defer wsClient.Close()
Get the chain ID:
chainID, err := client.ChainID(context.Background())
if err != nil {
log.Panic(err)
}
fmt.Println("Chain ID: ", chainID)
Get the latest block:
block, err := client.BlockByNumber(context.Background(), nil)
if err != nil {
log.Panic(err)
}
fmt.Printf("%+v\n", *block)
Get the block by hash:
blockHash := common.HexToHash("b472c070c9e121ba42702f6c322b7b266e287a4d8b5fa426ed265b105430c397")
block, err := client.BlockByHash(context.Background(), blockHash)
if err != nil {
log.Panic(err)
}
fmt.Printf("%+v\n", *block)
Get the transaction by hash:
transactionByHash, _, err := client.TransactionByHash(context.Background(), common.HexToHash("0x9af27afed9a4dd018c0625ea1368afb8ba08e4cfb69b3e76dfb8521c8a87ecfc"))
if err != nil {
log.Panic(err)
}
fmt.Printf("%+v\n", transactionByHash)
Also, the following examples demonstrate how to:
- Deposit ETH and tokens from Ethereum into zkSync Era.
- Transfer ETH and tokens on zkSync Era.
- Withdraw ETH and tokens from zkSync Era to Ethereum.
- Get confirmed tokens on zkSync Era.
- Deploy a smart contract using CREATE opcode.
- Deploy a smart contract using CREATE2 opcode.
- Deploy custom token on zkSync Era.
- Deploy smart account.
- Use paymaster to pay fee with token.
Full code for all examples is available here. Examples are configured to interact with zkSync Era
and Goerli
test networks.