zkEVM client
Make sure you have set up Matic.js by following the get started guide.
Make sure you have set up Matic.js by following the get started guide.
The ZkEvmClient interacts with the zkEVM bridge.
import { ZkEvmClient, use } from "@maticnetwork/maticjs"
const zkEvmClient = new ZkEvmClient();
await zkEvmClient.init({
network: <network name>, // 'testnet'
version: <network version>, // 'blueberry'
parent: {
provider: <parent provider>,
defaultConfig: {
from: <from address>
}
},
child: {
provider: <child provider>,
defaultConfig: {
from: <from address>
}
}
});Once the ZkEvmClient is initialized, you can interact with all available APIs from MaticJS SDK.
Edit on GitHub
Last updated on