Skip to content

Latest commit

 

History

History
139 lines (93 loc) · 4.91 KB

README.md

File metadata and controls

139 lines (93 loc) · 4.91 KB

🚀 zksync2-swift Swift SDK 🚀

License License: Apache 2.0 Contributor Covenant Contributions Welcome X (formerly Twitter) Follow

ZKsync Era Logo

In order to provide easy access to all the features of ZKsync Era, the zksync2-swift Swift SDK was created, which is made in a way that has an interface very similar to those of web3swift. In fact, web3swift is a peer dependency of our library is inherited from the corresponding web3swift.

While most of the existing SDKs should work out of the box, deploying smart contracts or using unique ZKsync Era features, like account abstraction, requires providing additional fields to those that Ethereum transactions have by default.

The library is made in such a way that after replacing web3swift with zksync2-swift most client apps will work out of box.

🔗 For a detailed walkthrough, refer to the official documentation.

📌 Overview

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:

  • ZkSyncClient 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.
  • Wallet 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. It provides easy usage of the most common features.

🛠 Prerequisites

  • IOS: >=13.0
  • MacOS: >=11.0

📥 Installation & Setup

CocoaPods Integration

To install ZKsync via CocoaPods, add zksync2-swift pod to the Podfile:

 pod 'zkSync2-swift'

Swift Package Manager Integration

To install ZKsync via Swift Package Manager, add zksync2-swift to the Package Dependencies:

 'github.com/zksync-sdk/zksync2-swift'

Connect to the ZKsync Era network:

Once you have integrated zksync2-swift dependencies, connect to ZKsync using the endpoint of the operator node.

var zkSync: ZkSyncClient= BaseClient(URL(string: "https://sepolia.era.zksync.dev"))

Get the latest block number

var blockNumber = try await zkSync.web3.eth.blockNumber()

Get the latest block

var block = try await zkSync.web3.eth.block(by: .latest)

Create a wallet

let walletL1 = WalletL1(self.zkSync, ethClient: self.l1Web3, web3: self.l1Web3.web3, ethSigner: self.signer)
let walletL2 = WalletL2(self.zkSync, ethClient: self.l1Web3, web3: self.zkSync.web3, ethSigner: self.signerL2)
let baseDeployer = BaseDeployer(adapterL2: walletL2, signer: self.signerL2)
let wallet = wallet = Wallet(walletL1: walletL1, walletL2: walletL2, deployer: baseDeployer)

Check account balances

let balanceL1 = await wallet.walletL1.balanceL1()

let balanceL2 = try! await wallet.walletL2.getBalance()

Transfer funds

Transfer funds among accounts on L2 network.

let result = await wallet.walletL2.transfer("<RECEIVER_ADDRESS>", amount: BigUInt(10000000))

Deposit funds

Transfer funds from L1 to L2 network.

let tx = DepositTransaction(token: ZkSyncAddresses.EthAddress, 
    amount: BigUInt(10000000))
        
let result = try! await wallet.walletL1.deposit(transaction: tx)

Withdraw funds

Transfer funds from L2 to L1 network.

let result = try! await wallet.walletL2.withdraw(amount, to: nil, token: ZkSyncAddresses.EthAddress)

🤖 Running tests

In order to run test you need to run local-setup on your machine. For running tests, use:

swift test --filter EIP712EncoderTests --skip EIP712EncoderTests.testEncodeDomainMemberValues;
swift test --filter Transaction712Tests --skip Transaction712Tests.testSerializeToEIP712Message;
swift test --filter ContractDeployerTests;
swift test --filter EthereumKeystoreV3Tests;
swift test --filter ZKSyncWeb3RpcIntegrationTests;
swift test --filter ZkSyncWalletIntegrationTests;

🤝 Contributing

We welcome contributions from the community! If you're interested in contributing to the zksync2-swift Swift SDK, please take a look at our CONTRIBUTING.md for guidelines and details on the process.

Thank you for making zksync2-swift Swift SDK better! 🙌