Swift API

BaseDeployer

Deploys smart contracts and accounts

allBalances

Returns all balances for confirmed tokens given by an account address.

Example

let result = try! await wallet.walletL2.allBalances()

approveERC20

Bridging ERC20 tokens from Ethereum requires approving the tokens to the ZKsync Ethereum smart contract.

Inputs

ParameterTypeDescription
tokenAddressThe Ethereum address of the token.
amountBigNumberishThe amount of the token to be approved.
bridgeAddressString?The address of the bridge contract to be used. Defaults to the default ZKsync bridge L1Erc20Bridge (optional).

Example

let tokenL1 = "0x5C221E77624690fff6dd741493D735a17716c26B";
let result = try await wallet.walletL1.approveERC20(token: tokenL1, amount: BigUInt(5))

balance

Returns the amount of the token the Wallet has.

Inputs

ParameterTypeDescription
tokenStringThe address of the token. ETH by default (optional).
blockNumberBlockNumberIn which block a balance should be checked on. committed, i.e. the latest processed one is the default option.

Example

let result = try! await wallet.walletL2.balance()

balanceL1

Returns the amount of the token the Wallet has on Ethereum.

Inputs

ParameterTypeDescription
token?AddressThe address of the token. ETH by default (optional).
blockTag?BlockTagIn which block a balance should be checked on. committed, i.e. the latest processed one is the default option (optional).

Example

import { Wallet, Provider, utils } from "zksync-ethers";
import { ethers } from "ethers";
 
const PRIVATE_KEY = "<WALLET_PRIVATE_KEY>";
 
const provider = Provider.getDefaultProvider(types.Network.Sepolia);
const ethProvider = ethers.getDefaultProvider("sepolia");
const wallet = new Wallet(PRIVATE_KEY, provider, ethProvider);
 
const tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be";
 
console.log(`Token balance: ${await wallet.getBalanceL1(tokenL1)}`);
For development and testing, it is recommended to use burner wallets. Avoid using real private keys to prevent security risks.

constructor

Inputs

ParameterTypeDescription
ZKsyncZKsyncClientInstance of ZKsyncClient class.
webWeb3Instance of Web3 class.
signerETHSignerInstance of ETHSigner class.

Example

let credentials = Credentials("<WALLET_PRIVATE_KEY>")
 
let l1Web3 = EthereumClientImpl(ZKsyncWeb3RpcIntegrationTests.L1NodeUrl)
let ZKsync = BaseClient(BaseIntegrationEnv.L2NodeUrl)
let signerL1 = BaseSigner(credentials,
                        chainId: chainId)
let signerL2 = BaseSigner(credentials,
                          chainId: BigUInt(270))
let walletL1 = WalletL1(ZKsync, ethClient: l1Web3, web3: l1Web3.web3, ethSigner: signer)
let walletL2 = WalletL2(ZKsync, ethClient: l1Web3, web3: ZKsync.web3, ethSigner: signerL2)
let baseDeployer = BaseDeployer(adapterL2: walletL2, signer: signerL2)
let wallet = Wallet(walletL1: walletL1, walletL2: walletL2, deployer: baseDeployer)

deposit

Transfers the specified token from the associated account on the L1 network to the target account on the L2 network. The token can be either ETH or any ERC20 token. For ERC20 tokens, enough approved tokens must be associated with the specified L1 bridge (default one or the one defined in transaction.bridgeAddress). In this case, transaction.approveERC20 can be enabled to perform token approval. If there are already enough approved tokens for the L1 bridge, token approval will be skipped. To check the amount of approved tokens for a specific bridge, use the allowanceL1 method.

Inputs

ParameterTypeDescription
transactionDeposittransactionDepositTransaction struct.

Example

let tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be"
let txERC20 = DepositTransaction(token: token, amount: BigUInt(10000000), approveERC20: true)
 
let resultERC20 = try! await wallet.walletL1.deposit(transaction: txERC20)
let receiptERC20 = try! await wallet.walletL1.ethClient.waitforTransactionReceipt(transactionHash: resultERC20.hash, timeout: 120, pollLatency: 0.5)
 
let l2HashERC20 = try! await wallet.walletL1.ZKsync.getL2HashFromPriorityOp(receipt: receiptERC20!)
let l2receiptERC20 = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: l2HashERC20!)
 
let txETH = DepositTransaction(token: ZKsyncAddresses.EthAddress, amount: amount)
 
let resultEth = try! await wallet.walletL1.deposit(transaction: txETH)
let receiptEth = try! await wallet.walletL1.ethClient.waitforTransactionReceipt(transactionHash: resultEth.hash, timeout: 120, pollLatency: 0.5)
 
let l2HashEth = try! await wallet.walletL1.ZKsync.getL2HashFromPriorityOp(receipt: receiptEth!)
let l2receiptEth = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: l2HashEth!)

estimateGasDeposit

Estimates the amount of gas required for a deposit transaction on L1 network. Gas of approving ERC20 token is not included in estimation.

Inputs

ParameterTypeDescription
transactionDeposittransactionDepositTransaction struct.

Example

let tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be"
let tx = DepositTransaction(token: tokenL1, amount: BigUInt(10000000), approveERC20: true)
 
let gas = try! await wallet.walletL1.estimateGasDeposit(transaction: tx)

estimateGasRequestExecute

Estimates the amount of gas required for a request execute transaction.

Inputs

ParameterTypeDescription
transactionRequestExecuteTransactionRequestExecuteTransaction struct.

Example

let tx = RequestExecuteTransaction(contractAddress: mainContractAddress, calldata: Data(hex: "0x"), l2Value: BigUInt(7_000_000_000))
 
let gas = try! await wallet.walletL1.estimateGasRequestExecute(transaction: tx)

finalizeWithdrawal

Proves the inclusion of the L2 -> L1 withdrawal message.

Inputs

NameTypeDescription
withdrawalHashStringHash of the L2 transaction where the withdrawal was initiated.
indexIntIn case there were multiple withdrawals in one transaction, you may pass an index of the withdrawal you want to finalize. Defaults to 0 (optional).
optionsTransactionOptionTransaction's options which may be used to pass l2 gasLimit, gasPrice, value, etc (optional).

Example

let finalizedWithdraw = try! await wallet.walletL1.finalizeWithdrawal(withdrawalHash: "<WITHDRAW_HASH>")```

getAddress

Returns the wallet address.

getAllowanceL1

Returns the amount of approved tokens for a specific L1 bridge.

Inputs

ParameterTypeDescription
tokenStringThe Ethereum address of the token.
bridgeAddressString?The address of the bridge contract to be used. Defaults to the default ZKsync bridge L1Erc20Bridge (optional).

Example

let tokenL1 = "0x5C221E77624690fff6dd741493D735a17716c26B";
let result = try await wallet.walletL1.getAllowanceL1(token: tokenL1)

getBaseCost

Returns base cost for L2 transaction.

Inputs

NameTypeDescription
gasLimitBigUIntThe gasLimit for the L2 contract call.
gasPerPubdataByteBigUIntThe L2 gas price for each published L1 calldata byte (optional).
gasPriceBigUIntThe L1 gas price of the L1 transaction that will send the request for an execute call (optional).

Example

let result = try await wallet.walletL1.baseCost(gasLimit: BigUInt(100_000))["0"] as? BigUInt else {
  throw EthereumProviderError.invalidParameter
}

getDeploymentNonce

Returns account's deployment nonce number.

async getDeploymentNonce(): Promise<bigint>

Example

import { Wallet, Provider, utils } from "zksync-ethers";
import { ethers } from "ethers";
 
const PRIVATE_KEY = "<WALLET_PRIVATE_KEY>";
 
const provider = Provider.getDefaultProvider(types.Network.Sepolia);
const ethProvider = ethers.getDefaultProvider("sepolia");
const wallet = new Wallet(PRIVATE_KEY, provider, ethProvider);
 
console.log(`Nonce: ${await wallet.getDeploymentNonce()}`);

getDepositTransaction

Returns populated deposit transaction.

Inputs

ParameterTypeDescription
transactionDeposittransactionDepositTransaction struct.

Example

let tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be"
let tx = DepositTransaction(token: tokenL1, amount: BigUInt(10000000), approveERC20: true)
 
let resultERC20 = try! await wallet.walletL1.getDepositTransaction(transaction: tx)

getFullRequiredDepositFee

Retrieves the full needed ETH fee for the deposit. Returns the L1 fee and the L2 fee FullDepositFee.

Inputs

ParameterTypeDescription
transactionDeposittransactionDepositTransaction struct.

Example

let tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be"
let tx = DepositTransaction(token: tokenL1, amount: BigUInt(10000000), approveERC20: true)
 
let fullDepositFee = try! await wallet.walletL1.getFullRequiredDepositFee(transaction: tx)

getL1BridgeContracts

Returns L1 bridge contracts.

There is no separate Ether bridge contract, Main contract is used instead.

Example

let result = try! await wallet.walletL1.getL1BridgeContracts()

getNonce

Returns account's nonce number.

Inputs

ParameterTypeDescription
blockBlockNumberIn which block a balance should be checked on. committed, i.e. the latest processed one is the default option (optional).

Example

let result = try! await wallet.walletL2.getNonce()

getRequestExecute

Returns populated CodableTransaction.

Inputs

ParameterTypeDescription
transactionRequestExecuteTransactionRequestExecuteTransaction struct.

Example

let tx = RequestExecuteTransaction(contractAddress: mainContractAddress, calldata: Data(hex: "0x"), l2Value: BigUInt(7_000_000_000))
 
let requestExecuteTx = try! await wallet.walletL1.getRequestExecute(transaction: tx)

isWithdrawalFinalized

Returns whether the withdrawal transaction is finalized on the L1 network.

Inputs

NameTypeDescription
withdrawalHashStringHash of the L2 transaction where the withdrawal was initiated.
indexIntIn case there were multiple withdrawals in one transaction, you may pass an index of the withdrawal you want to finalize. Defaults to 0 (optional).

Example

let isFinalized = await wallet.walletL1.isWithdrawalFinalized(withdrawHash: "<WITHDRAW_HASH>")

mainContract

Inputs

ParameterTypeDescription
transactionCodableTransactionTemplate transaction which will be used for writeOperation and readOperation.

Returns Contract wrapper of the ZKsync smart contract.

Example

let result = try! await wallet.walletL1.mainContract()
let transaction = CodableTransaction(type: .eip1559, to: EthereumAddress(signer.address)!)
 
let result = try! await wallet.walletL1.mainContract(transaction: transaction)

requestExecute

Request execution of L2 transaction from L1.

Inputs

ParameterTypeDescription
transactionRequestExecuteTransactionRequestExecuteTransaction struct.

Example

let tx = RequestExecuteTransaction(contractAddress: mainContractAddress, calldata: Data(hex: "0x"), l2Value: BigUInt(7_000_000_000), l2GasLimit: BigUInt(900_000))
 
let resultEth = try! await wallet.walletL1.deposit(transaction: txETH)
let receiptEth = try! await wallet.walletL1.ethClient.waitforTransactionReceipt(transactionHash: resultEth.hash, timeout: 120, pollLatency: 0.5)
 
let l2HashEth = try! await wallet.walletL1.ZKsync.getL2HashFromPriorityOp(receipt: receiptEth!)
let l2receiptEth = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: l2HashEth!)

sendTransaction

Broadcast the transaction to the network.

Inputs

ParameterTypeDescription
transactionCodableTransactionTransaction request.

Example

let transaction = CodableTransaction(type: .eip1559, to: EthereumAddress(signer.address)!)
 
let signed = wallet.walletL2.signTransaction(transaction)
let result = try! await wallet.walletL2.sendTransaction(signed)

signTransaction

Returns new and signed CodableTransaction.

Inputs

ParameterTypeDescription
transactionCodableTransactionTransaction request.

Example

let transaction = CodableTransaction(type: .eip1559, to: EthereumAddress(signer.address)!)
 
let result = wallet.walletL2.signTransaction(transaction)

transfer

For convenience, the Wallet class has transfer method, which can transfer ETH or any ERC20 token within the same interface.

Inputs

ParameterTypeDescription
toStringThe address of the recipient.
amountBigUIntThe amount of the token to transfer (optional).
tokenStringThe address of the token. ETH by default (optional).
optionsTransactionOptionTransaction's options which may be used to pass l2 gasLimit, gasPrice, value, etc (optional).
paymasterParamsPaymasterParamsPaymaster parameters (optional).

Examples

Transfer ETH.

let amount = BigUInt(7_000_000_000)
 
let result = await wallet.walletL2.transfer("<RECIPIENT_ADDRESS>", amount: amount)
 
let receipt = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: result.hash)

Transfer ETH using paymaster to facilitate fee payment with an ERC20 token.

let amount = BigUInt(7_000_000_000)
 
let paymasterInput = Paymaster.encodeApprovalBased(
  EthereumAddress(ZKsyncWalletIntegrationTests.PaymasterToken)!,
  minimalAllowance: BigUInt(1),
  paymasterInput: Data()
)
 
let paymasterParams = PaymasterParams(paymaster: EthereumAddress(ZKsyncWalletIntegrationTests.PaymasterAddress)!, paymasterInput: paymasterInput)
 
let result = await wallet.walletL2.transfer("<RECIPIENT_ADDRESS>", amount: amount, token: ZKsyncAddresses.EthAddress, options: nil, paymasterParams: paymasterParams)
 
let receipt = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: result.hash)

withdraw

Initiates the withdrawal process which withdraws ETH or any ERC20 token from the associated account on L2 network to the target account on L1 network.

Inputs

ParameterTypeDescription
amountBigNumberishThe amount of the token to withdraw.
tokenAddressThe address of the token. ETH by default.
toAddressThe address of the recipient on L1 (optional).
optionsTransactionOptionTransaction's options which may be used to pass l2 gasLimit, gasPrice, value, etc (optional).
paymasterParamsPaymasterParamsPaymaster parameters (optional).

Examples

Withdraw ETH.

let result = try! await wallet.walletL2.withdraw(BigUInt(10_000_000), to: nil, token: ZKsyncAddresses.EthAddress)
let receipt = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: result!.hash)
 
// It should return false
let isFinalized = await wallet.walletL1.isWithdrawalFinalized(withdrawHash: result!.hash)
 
let finalizedWithdraw = try! await wallet.walletL1.finalizeWithdrawal(withdrawalHash: result!.hash)```

Withdraw ETH using paymaster to facilitate fee payment with an ERC20 token.

let paymasterInput = Paymaster.encodeApprovalBased(
    EthereumAddress(ZKsyncWalletIntegrationTests.PaymasterToken)!,
    minimalAllowance: BigUInt(1),
    paymasterInput: Data()
)
let paymasterParams = PaymasterParams(paymaster: EthereumAddress(ZKsyncWalletIntegrationTests.PaymasterAddress)!, paymasterInput: paymasterInput)
 
let result = try! await wallet.walletL2.withdraw(BigUInt(10_000_000), to: nil, token: ZKsyncAddresses.EthAddress, paymasterParams: paymasterParams)
let receipt = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: result!.hash)
 
// It should return false
let isFinalized = await wallet.walletL1.isWithdrawalFinalized(withdrawHash: result!.hash)
 
let finalizedWithdraw = try! await wallet.walletL1.finalizeWithdrawal(withdrawalHash: result!.hash)```

Withdraw ERC20.

let tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be"
let l2DAI = try! await ZKsync.l2TokenAddress(address: tokenL1)
 
let result = try! await wallet.walletL2.withdraw(BigUInt(5), to: nil, token: l2DAI)
let receipt = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: result!.hash)
 
// It should return false
let isFinalized = await wallet.walletL1.isWithdrawalFinalized(withdrawHash: result!.hash)
 
let finalizedWithdraw = try! await wallet.walletL1.finalizeWithdrawal(withdrawalHash: result!.hash)```

Withdraw ERC20 using paymaster to facilitate fee payment with an ERC20 token.

let tokenL1 = "0x56E69Fa1BB0d1402c89E3A4E3417882DeA6B14Be"
let l2DAI = try! await ZKsync.l2TokenAddress(address: tokenL1)
 
let paymasterInput = Paymaster.encodeApprovalBased(
    EthereumAddress(ZKsyncWalletIntegrationTests.PaymasterToken)!,
    minimalAllowance: BigUInt(1),
    paymasterInput: Data()
)
let paymasterParams = PaymasterParams(paymaster: EthereumAddress(ZKsyncWalletIntegrationTests.PaymasterAddress)!, paymasterInput: paymasterInput)
 
let result = try! await wallet.walletL2.withdraw(BigUInt(5), to: nil, token: l2DAI, paymasterParams: paymasterParams)
let receipt = await ZKsyncTransactionReceiptProcessor(ZKsync: ZKsync).waitForTransactionReceipt(hash: result!.hash)
 
// It should return false
let isFinalized = await wallet.walletL1.isWithdrawalFinalized(withdrawHash: result!.hash)
 
let finalizedWithdraw = try! await wallet.walletL1.finalizeWithdrawal(withdrawalHash: result!.hash)```

Example

let result = try! await wallet.walletL1.getAddress()

Made with ❤️ by the ZKsync Community