Skip to main content

ZkSync (Era) Quick Start

SubQuery TeamAbout 6 min

ZkSync (Era) Quick Start

Goals

The goal of this quick start guide is to index all transfers and approval events from the Wrapped ETHopen in new window on ZkSync Era Network.

Note

Before we begin, make sure that you have initialised your project using the provided steps in the Start Here section. Please initialise an a ZkSync Era project.

In every SubQuery project, there are 3 key files to update. Let's begin updating them one by one.

Note

The final code of this project can be found hereopen in new window.

We use Ethereum packages, runtimes, and handlers (e.g. @subql/node-ethereum, ethereum/Runtime, and ethereum/*Hander) for ZkSync Era. Since ZkSync Era is an EVM-compatible layer-2 scaling solution, we can use the core Ethereum framework to index it.

1. Your Project Manifest File

The Project Manifest (project.ts) file works as an entry point to your ZkSync project. It defines most of the details on how SubQuery will index and transform the chain data. For ZkSync Era, there are three types of mapping handlers (and you can have more than one in each project):

  • BlockHanders: On each and every block, run a mapping function
  • TransactionHandlers: On each and every transaction that matches optional filter criteria, run a mapping function
  • LogHanders: On each and every log that matches optional filter criteria, run a mapping function

Note that the manifest file has already been set up correctly and doesn’t require significant changes, but you need to import the correct contract definitions and update the datasource handlers.

As we are indexing all transfers and approvals from the Wrapped ETH contract on ZkSync network, the first step is to import the contract abi definition which can be obtained from from any standard ERC-20 contractopen in new window. Copy the entire contract ABI and save it as a file called erc20.abi.json in the /abis directory.

Update the datasources section as follows:

{
  dataSources: [
    {
      kind: EthereumDatasourceKind.Runtime,
      startBlock: 10456259, // This is the block that the contract was deployed on
      options: {
        // Must be a key of assets
        abi: "erc20",
        // This is the contract address for wrapped ether https://explorer.zksync.io/address/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4
        address: "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4",
      },
      assets: new Map([["erc20", { file: "./abis/erc20.abi.json" }]]),
      mapping: {
        file: "./dist/index.js",
        handlers: [
          {
            kind: EthereumHandlerKind.Call,
            handler: "handleTransaction",
            filter: {
              /**
               * The function can either be the function fragment or signature
               * function: '0x095ea7b3'
               * function: '0x7ff36ab500000000000000000000000000000000000000000000000000000000'
               */
              function: "approve(address spender, uint256 rawAmount)",
            },
          },
          {
            kind: EthereumHandlerKind.Event,
            handler: "handleLog",
            filter: {
              /**
               * Follows standard log filters https://docs.ethers.io/v5/concepts/events/
               * address: "0x60781C2586D68229fde47564546784ab3fACA982"
               */
              topics: [
                "Transfer(address indexed from, address indexed to, uint256 amount)",
              ],
            },
          },
        ],
      },
    },
  ],
}

The above code indicates that you will be running a handleTransaction mapping function whenever there is a approve method being called on any transaction from the WETH contractopen in new window.

The code also indicates that you will be running a handleLog mapping function whenever there is a Transfer event being emitted from the WETH contractopen in new window.

Check out our Manifest File documentation to get more information about the Project Manifest (project.ts) file.

2. Update Your GraphQL Schema File

The schema.graphql file determines the shape of your data from SubQuery due to the mechanism of the GraphQL query language. Hence, updating the GraphQL Schema file is the perfect place to start. It allows you to define your end goal right at the start.

Remove all existing entities and update the schema.graphql file as follows. Here you can see we are indexing block information such as the id, blockHeight, transfer receiver and transfer sender along with an approvals and all of the attributes related to them (such as owner and spender etc.).

type Transfer @entity {
  id: ID! # Transaction hash
  blockHeight: BigInt
  to: String!
  from: String!
  value: BigInt!
  contractAddress: String!
}

type Approval @entity {
  id: ID! # Transaction hash
  blockHeight: BigInt
  owner: String!
  spender: String!
  value: BigInt!
  contractAddress: String!
}

SubQuery makes it easy and type-safe to work with your GraphQL entities, as well as smart contracts, events, transactions, and logs. SubQuery CLI will generate types from your project's GraphQL schema and any contract ABIs included in the data sources.

yarn
yarn codegen

This will create a new directory (or update the existing one) src/types which contains generated entity classes for each type you have defined previously in schema.graphql. These classes provide type-safe entity loading, and read and write access to entity fields - see more about this process in the GraphQL Schema. All entities can be imported from the following directory:

import { Approval, Transfer } from "../types";

As you're creating a new EVM based project, this command will also generate ABI types and save them into src/types using the npx typechain --target=ethers-v5 command, allowing you to bind these contracts to specific addresses in the mappings and call read-only contract methods against the block being processed.

It will also generate a class for every contract event to provide easy access to event parameters, as well as the block and transaction the event originated from. Read about how this is done in EVM Codegen from ABIs.

In this example SubQuery project, you would import these types like so.

import {
  ApproveTransaction,
  TransferLog,
} from "../types/abi-interfaces/Erc20Abi";

Important

When you make any changes to the schema file, please ensure that you regenerate your types directory using the SubQuery CLI prompt yarn codegen or npm run-script codegen.

Check out the GraphQL Schema documentation to get in-depth information on schema.graphql file.

3. Add a Mapping Function

Mapping functions define how chain data is transformed into the optimised GraphQL entities that we previously defined in the schema.graphql file.

Navigate to the default mapping function in the src/mappings directory. You will be able to see two exported functions handleLog and handleTransaction:

export async function handleLog(log: TransferLog): Promise<void> {
  logger.info(`New transfer transaction log at block ${log.blockNumber}`);
  assert(log.args, "No log.args");

  const transaction = Transfer.create({
    id: log.transactionHash,
    blockHeight: BigInt(log.blockNumber),
    to: log.args.to,
    from: log.args.from,
    value: log.args.value.toBigInt(),
    contractAddress: log.address,
  });

  await transaction.save();
}

export async function handleTransaction(tx: ApproveTransaction): Promise<void> {
  logger.info(`New Approval transaction at block ${tx.blockNumber}`);
  assert(tx.args, "No tx.args");

  const approval = Approval.create({
    id: tx.hash,
    owner: tx.from,
    spender: await tx.args[0],
    value: BigInt(await tx.args[1].toString()),
    contractAddress: tx.to,
  });

  await approval.save();
}

The handleLog function receives a log parameter of type TransferLog which includes log data in the payload. We extract this data and then save this to the store using the .save() function (Note that SubQuery will automatically save this to the database).

The handleTransaction function receives a tx parameter of type ApproveTransaction which includes transaction data in the payload. We extract this data and then save this to the store using the .save() function (Note that SubQuery will automatically save this to the database).

Check out our Mappings documentation to get more information on mapping functions.

4. Build Your Project

Next, build your work to run your new SubQuery project. Run the build command from the project's root directory as given here:

yarn
yarn build

Important

Whenever you make changes to your mapping functions, you must rebuild your project.

Now, you are ready to run your first SubQuery project. Let’s check out the process of running your project in detail.

5. Run Your Project Locally with Docker

Whenever you create a new SubQuery Project, first, you must run it locally on your computer and test it and using Docker is the easiest and quickest way to do this.

The docker-compose.yml file defines all the configurations that control how a SubQuery node runs. For a new project, which you have just initialised, you won't need to change anything.

However, visit the Running SubQuery Locally to get more information on the file and the settings.

Run the following command under the project directory:

yarn
yarn start:docker

Note

It may take a few minutes to download the required images and start the various nodes and Postgres databases.

6. Query your Project

Next, let's query our project. Follow these three simple steps to query your SubQuery project:

  1. Open your browser and head to http://localhost:3000.

  2. You will see a GraphQL playground in the browser and the schemas which are ready to query.

  3. Find the Docs tab on the right side of the playground which should open a documentation drawer. This documentation is automatically generated and it helps you find what entities and methods you can query.

Try the following query to understand how it works for your new SubQuery starter project. Don’t forget to learn more about the GraphQL Query language.

# Write your query or mutation here
{
  query {
    transfers(first: 5, orderBy: VALUE_DESC) {
      totalCount
      nodes {
        id
        blockHeight
        from
        to
        value
        contractAddress
      }
    }
  }
  approvals(first: 5, orderBy: BLOCK_HEIGHT_DESC) {
    nodes {
      id
      blockHeight
      owner
      spender
      value
      contractAddress
    }
  }
}

You will see the result similar to below:

{
  "data": {
    "query": {
      "transfers": {
        "totalCount": 312,
        "nodes": [
          {
            "id": "0xadcf58769ca162e0488d6edeb87f662b98fb2dfe63c2f90a79ae8f3f46566352",
            "blockHeight": "10456276",
            "from": "0x04e9Db37d8EA0760072e1aCE3F2A219988Fdac29",
            "to": "0x92097b24B1F52390Bd49355B4708a99dA3BCb8Ed",
            "value": "54507000000",
            "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
          },
          {
            "id": "0x0bdef9732cc76f3f85a3b6f5f2fd54bb7088407499a6d2eedba814c4e0834859",
            "blockHeight": "10456293",
            "from": "0xc02502CFe2Ef70581De8B90c5De9Db5c38709D6c",
            "to": "0x41C8cf74c27554A8972d3bf3D2BD4a14D8B604AB",
            "value": "5125616093",
            "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
          },
          {
            "id": "0xde9960a4831ef95f9c361f43c0fcc2588ec2bfda51d3a7dc1eb4388b83e91e29",
            "blockHeight": "10456287",
            "from": "0x621425a1Ef6abE91058E9712575dcc4258F8d091",
            "to": "0x87bbA1Ab615D33A5ECf83901BbFd1F7622562f40",
            "value": "5081848131",
            "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
          },
          {
            "id": "0x7887f90a43c9ecad5afe38dffad726b5967b7f42f4e0231b72d2ccdcfa8951ea",
            "blockHeight": "10456319",
            "from": "0x87bbA1Ab615D33A5ECf83901BbFd1F7622562f40",
            "to": "0x621425a1Ef6abE91058E9712575dcc4258F8d091",
            "value": "5081848131",
            "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
          },
          {
            "id": "0x35d1fafa6c594db1853d2182e5158ac1530d9274784760bacf43611b5db63663",
            "blockHeight": "10456299",
            "from": "0x621425a1Ef6abE91058E9712575dcc4258F8d091",
            "to": "0x8afE9F6648E2458A75A51AC868D1f203f2B8C77a",
            "value": "2681633716",
            "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
          }
        ]
      }
    },
    "approvals": {
      "nodes": [
        {
          "id": "0x9ad838401aa20b6264ae55389ed6075168112a3318d69d81eab6b030c510ead3",
          "blockHeight": "10456406",
          "owner": "0xBe234C78b61E37097A1D37Bfbe7C0434CfDCaa9d",
          "spender": "0x2da10A1e27bF85cEdD8FFb1AbBe97e53391C0295",
          "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935",
          "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
        },
        {
          "id": "0xd656dc17d14cf795060e6dc6886553ab110d010d4cc7447ec68a131fb5b9967f",
          "blockHeight": "10456406",
          "owner": "0xE44D4a0872a050621592418bAa728337F558120F",
          "spender": "0xA269031037B4D5fa3F771c401D19E57def6Cb491",
          "value": "19054027",
          "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
        },
        {
          "id": "0xec318b68b34252636210315f448c0ca8dc35b9ed72c7ddef9415c6792c04cac6",
          "blockHeight": "10456406",
          "owner": "0xFBE0c5f3aF4aD305e051e478E0608D739408439D",
          "spender": "0x2da10A1e27bF85cEdD8FFb1AbBe97e53391C0295",
          "value": "18219100",
          "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
        },
        {
          "id": "0x7836d437bbb3b83ec13e98f26ac805c904422bde36af50b852417d62095afea4",
          "blockHeight": "10456406",
          "owner": "0xEc93D5e0B9F2B5145De52De82527aeD8A1058570",
          "spender": "0x8B791913eB07C32779a16750e3868aA8495F5964",
          "value": "17652824",
          "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
        },
        {
          "id": "0xf0f816641e87f1ffa6808294250b083091d606a856e30c8344e52b9f21331533",
          "blockHeight": "10456405",
          "owner": "0xBCD1ec967FeBbF82D32BA86b63b4dd063371760C",
          "spender": "0x2da10A1e27bF85cEdD8FFb1AbBe97e53391C0295",
          "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935",
          "contractAddress": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4"
        }
      ]
    }
  }
}

Note

The final code of this project can be found hereopen in new window.

What's next?

Congratulations! You have now a locally running SubQuery project that accepts GraphQL API requests for transferring data.

Tip

Find out how to build a performant SubQuery project and avoid common mistakes in Project Optimisation.

Click here to learn what should be your next step in your SubQuery journey.