From edf7a57bae64cd81316e39a77f1f23cb6e3d77e0 Mon Sep 17 00:00:00 2001 From: youssefea Date: Mon, 4 Sep 2023 16:57:02 +0100 Subject: [PATCH 1/7] First section commit --- docs/quickstart/quickstart_chains/klaytn.md | 364 ++++++++++++++++++++ 1 file changed, 364 insertions(+) create mode 100644 docs/quickstart/quickstart_chains/klaytn.md diff --git a/docs/quickstart/quickstart_chains/klaytn.md b/docs/quickstart/quickstart_chains/klaytn.md new file mode 100644 index 00000000000..84f812446ff --- /dev/null +++ b/docs/quickstart/quickstart_chains/klaytn.md @@ -0,0 +1,364 @@ +# Klaytn Quick Start + +## Goals + +The goal of this quick start guide is to index all transfers and approval events from the [Orbit ETH](https://scope.klaytn.com/token/0x34d21b1e550d73cee41151c77f3c73359527a396) on [Klaytn](https://scope.klaytn.com) Network . + +::: warning +Before we begin, **make sure that you have initialised your project** using the provided steps in the [Start Here](../quickstart.md) section. Please initialise an a Klaytn project. +::: + +In every SubQuery project, there are [3 key files](../quickstart.md#_3-make-changes-to-your-project) to update. Let's begin updating them one by one. + +::: tip Note +The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Klaytn/klaytn-starter). + +We use Ethereum packages, runtimes, and handlers (e.g. `@subql/node-ethereum`, `ethereum/Runtime`, and `ethereum/*Hander`) for Klaytn Network. Since Klaytn is an EVM-compatible layer-1, we can use the core Ethereum framework to index it. +::: + +## 1. Your Project Manifest File + +The Project Manifest (`project.yaml`) file works as an entry point to your Fantom project. It defines most of the details on how SubQuery will index and transform the chain data. For Fantom, there are three types of mapping handlers (and you can have more than one in each project): + +- [BlockHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every block, run a mapping function +- [TransactionHandlers](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every transaction that matches optional filter criteria, run a mapping function +- [LogHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): 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 FTM contract on Fantom Opera network, the first step is to import the contract abi definition which can be obtained from from any standard [ERC-20 contract](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/). 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:** + +```yaml +dataSources: + - kind: ethereum/Runtime # We use ethereum runtime since Fantom Opera is EVM-compatible + startBlock: 67295175 # This is the block that the contract was deployed on https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83 + options: + # Must be a key of assets + abi: erc20 + address: "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" # This is the contract address for Wrapped FTM https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83 + assets: + erc20: + file: "./abis/erc20.abi.json" + mapping: + file: "./dist/index.js" + handlers: + - handler: handleTransaction + kind: ethereum/TransactionHandler # We use ethereum handlers since Fantom Opera is EVM-compatible + filter: + ## The function can either be the function fragment or signature + # function: '0x095ea7b3' + # function: '0x7ff36ab500000000000000000000000000000000000000000000000000000000' + function: approve(address spender, uint256 amount) + - handler: handleLog + kind: ethereum/LogHandler # We use ethereum handlers since Fantom Opera is EVM-compatible + filter: + topics: + ## Follows standard log filters https://docs.ethers.io/v5/concepts/events/ + - Transfer(address indexed from, address indexed to, uint256 + amount) + # address: "0x60781C2586D68229fde47564546784ab3fACA982" +``` + +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 [WFTM contract](https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83). + +The code also indicates that you will be running a `handleLog` mapping function whenever there is a `Transfer` event being emitted from the [WFTM contract](https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83). + +Check out our [Manifest File](../../build/manifest/ethereum.md) documentation to get more information about the Project Manifest (`project.yaml`) 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.). + +```graphql +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. + +::: code-tabs +@tab:active yarn + +```shell +yarn codegen +``` + +@tab npm + +```shell +npm run-script 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](../../build/graphql.md). All entities can be imported from the following directory: + +```ts +import { Approval, Transfer } from "../types"; +``` + +If 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. All of these types are written to `src/types/abi-interfaces` and `src/types/contracts` directories. In this example SubQuery project, you would import these types like so. + +```ts +import { + ApproveTransaction, + TransferLog, +} from "../types/abi-interfaces/Erc20Abi"; +``` + +::: warning 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](../../build/graphql.md) 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`: + +```ts +export async function handleLog(log: TransferLog): Promise { + 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 { + 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](../../build/mapping/ethereum.md) 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: + +::: code-tabs +@tab:active yarn + +```shell +yarn build +``` + +@tab npm + +```shell +npm run-script build +``` + +::: + +::: warning 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](../../run_publish/run.md) to get more information on the file and the settings. + +Run the following command under the project directory: + +::: code-tabs +@tab:active yarn + +```shell +yarn start:docker +``` + +@tab npm + +```shell +npm run-script start:docker +``` + +::: + +::: tip 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](../../run_publish/query.md). + +```graphql +# 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: + +```json +{ + "data": { + "query": { + "transfers": { + "totalCount": 459, + "nodes": [ + { + "id": "0x57b54d4bf53caca4c60772761f4949e4dc02d92f62a02b180d5b382d50b7787d", + "blockHeight": "67295406", + "from": "0x31F63A33141fFee63D4B26755430a390ACdD8a4d", + "to": "0x0000000000000000000000000000000000000000", + "value": "176970961833699983570796", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + { + "id": "0x128198372b0080d144f01041bdeb97e39155981010337abc8dc18878727af227", + "blockHeight": "67295494", + "from": "0x31F63A33141fFee63D4B26755430a390ACdD8a4d", + "to": "0x4EE115137ac73A3e5F99598564905465C101b11F", + "value": "160977046912584985744989", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + { + "id": "0xaca3354ec2d60bc8816590e32c755a87269a07d1eef7c7a49f808d9d6aee9f18", + "blockHeight": "67296279", + "from": "0x38C2853E569125Fc9Af310Ab145FCEfB2A07A322", + "to": "0x0000000000000000000000000000000000000000", + "value": "10000000000000000000000", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + { + "id": "0x5f549d1546f590146b87091c9bdfde18ff1f3d33b6ed852fc454af810a4c0e32", + "blockHeight": "67296232", + "from": "0x5BAB9d61f84630A76fA9e2f67739f2da694B5402", + "to": "0x245cD6d33578de9aF75a3C0c636c726b1A8cbdAa", + "value": "6996500000000000000000", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + { + "id": "0x6158b4cc15013f08e89c91cef0d1610cd37d7d303126299900689790ecb8124e", + "blockHeight": "67295446", + "from": "0x31F63A33141fFee63D4B26755430a390ACdD8a4d", + "to": "0x0000000000000000000000000000000000000000", + "value": "6844335953031983950296", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + } + ] + } + }, + "approvals": { + "nodes": [ + { + "id": "0x7e08e7e27996561ba385b9ffc6a9a02d51ad17a22a9bbb9e79a6ad059f269720", + "blockHeight": null, + "owner": "0xDEc89FC2ECfF1F2197204126EaAc55043155153b", + "spender": "0x1111111254EEB25477B68fb85Ed929f73A960582", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + }, + { + "id": "0xa00b913d56a1e91a6fdc52e05f56db54e518a1fbbd81e94ccc4b0d3521c72c53", + "blockHeight": null, + "owner": "0xDEc89FC2ECfF1F2197204126EaAc55043155153b", + "spender": "0x1111111254EEB25477B68fb85Ed929f73A960582", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935", + "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + } + ] + } + } +} +``` + +::: tip Note +The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Fantom/fantom-starter). +::: + +## What's next? + +Congratulations! You have now a locally running SubQuery project that accepts GraphQL API requests for transferring data. + +::: tip Tip + +Find out how to build a performant SubQuery project and avoid common mistakes in [Project Optimisation](../../build/optimisation.md). + +::: + +Click [here](../../quickstart/whats-next.md) to learn what should be your **next step** in your SubQuery journey. From 5ae63ce80418fd95e7f44cb2a8466d0cc5222a74 Mon Sep 17 00:00:00 2001 From: youssefea Date: Mon, 4 Sep 2023 17:02:04 +0100 Subject: [PATCH 2/7] Klaytn guide --- docs/quickstart/quickstart_chains/klaytn.md | 98 ++++++++++----------- 1 file changed, 45 insertions(+), 53 deletions(-) diff --git a/docs/quickstart/quickstart_chains/klaytn.md b/docs/quickstart/quickstart_chains/klaytn.md index 84f812446ff..cc4428c3be8 100644 --- a/docs/quickstart/quickstart_chains/klaytn.md +++ b/docs/quickstart/quickstart_chains/klaytn.md @@ -18,7 +18,7 @@ We use Ethereum packages, runtimes, and handlers (e.g. `@subql/node-ethereum`, ` ## 1. Your Project Manifest File -The Project Manifest (`project.yaml`) file works as an entry point to your Fantom project. It defines most of the details on how SubQuery will index and transform the chain data. For Fantom, there are three types of mapping handlers (and you can have more than one in each project): +The Project Manifest (`project.yaml`) file works as an entry point to your Klaytn project. It defines most of the details on how SubQuery will index and transform the chain data. For Klaytn, there are three types of mapping handlers (and you can have more than one in each project): - [BlockHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every block, run a mapping function - [TransactionHandlers](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every transaction that matches optional filter criteria, run a mapping function @@ -26,18 +26,18 @@ The Project Manifest (`project.yaml`) file works as an entry point to your Fanto 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 FTM contract on Fantom Opera network, the first step is to import the contract abi definition which can be obtained from from any standard [ERC-20 contract](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/). Copy the entire contract ABI and save it as a file called `erc20.abi.json` in the `/abis` directory. +As we are indexing all transfers and approvals from the Orbit ETH contract on Klaytn network, the first step is to import the contract abi definition which can be obtained from from any standard [ERC-20 contract](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/). 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:** ```yaml dataSources: - - kind: ethereum/Runtime # We use ethereum runtime since Fantom Opera is EVM-compatible - startBlock: 67295175 # This is the block that the contract was deployed on https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83 + - kind: ethereum/Runtime # We use ethereum runtime since Klaytn is EVM-compatible + startBlock: 131206820 # This is the block that the contract was deployed on https://scope.klaytn.com/token/0x34d21b1e550d73cee41151c77f3c73359527a396 options: # Must be a key of assets abi: erc20 - address: "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" # This is the contract address for Wrapped FTM https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83 + address: "0x34d21b1e550d73cee41151c77f3c73359527a396" # This is the contract address for Orbit Ether https://scope.klaytn.com/token/0x34d21b1e550d73cee41151c77f3c73359527a396 assets: erc20: file: "./abis/erc20.abi.json" @@ -45,14 +45,14 @@ dataSources: file: "./dist/index.js" handlers: - handler: handleTransaction - kind: ethereum/TransactionHandler # We use ethereum handlers since Fantom Opera is EVM-compatible + kind: ethereum/TransactionHandler # We use ethereum handlers since Klaytn is EVM-compatible filter: ## The function can either be the function fragment or signature # function: '0x095ea7b3' # function: '0x7ff36ab500000000000000000000000000000000000000000000000000000000' function: approve(address spender, uint256 amount) - handler: handleLog - kind: ethereum/LogHandler # We use ethereum handlers since Fantom Opera is EVM-compatible + kind: ethereum/LogHandler # We use ethereum handlers since Klaytn is EVM-compatible filter: topics: ## Follows standard log filters https://docs.ethers.io/v5/concepts/events/ @@ -61,9 +61,9 @@ dataSources: # address: "0x60781C2586D68229fde47564546784ab3fACA982" ``` -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 [WFTM contract](https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83). +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 [Orbit ETH contract](https://scope.klaytn.com/token/0x34d21b1e550d73cee41151c77f3c73359527a396). -The code also indicates that you will be running a `handleLog` mapping function whenever there is a `Transfer` event being emitted from the [WFTM contract](https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83). +The code also indicates that you will be running a `handleLog` mapping function whenever there is a `Transfer` event being emitted from the [Orbit ETH](https://scope.klaytn.com/token/0x34d21b1e550d73cee41151c77f3c73359527a396). Check out our [Manifest File](../../build/manifest/ethereum.md) documentation to get more information about the Project Manifest (`project.yaml`) file. @@ -278,47 +278,47 @@ You will see the result similar to below: "data": { "query": { "transfers": { - "totalCount": 459, + "totalCount": 8, "nodes": [ { - "id": "0x57b54d4bf53caca4c60772761f4949e4dc02d92f62a02b180d5b382d50b7787d", - "blockHeight": "67295406", - "from": "0x31F63A33141fFee63D4B26755430a390ACdD8a4d", - "to": "0x0000000000000000000000000000000000000000", - "value": "176970961833699983570796", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + "id": "0x19a332808b2642af38d84951bbe17c044b021be6e587a2f8799ff90419279672", + "blockHeight": "131207180", + "from": "0xd3e2Fd9dB41Acea03f0E0c22d85D3076186f4f24", + "to": "0xa03990511B6ee8BDb24C1693f9f8BD90DDfFd19D", + "value": "1813529233975307", + "contractAddress": "0x34d21b1e550D73cee41151c77F3c73359527a396" }, { - "id": "0x128198372b0080d144f01041bdeb97e39155981010337abc8dc18878727af227", - "blockHeight": "67295494", - "from": "0x31F63A33141fFee63D4B26755430a390ACdD8a4d", - "to": "0x4EE115137ac73A3e5F99598564905465C101b11F", - "value": "160977046912584985744989", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + "id": "0x12581a3f5dcb67a4d5017fa877c1971f130539ceb81949478cf3710f27802c44", + "blockHeight": "131207054", + "from": "0x6B0177E96C3623B6F6940dA18378d52f78CeA12D", + "to": "0x88Fe4fB118c954c11A359AbcE9dc887F7399bE1c", + "value": "1731405454880983", + "contractAddress": "0x34d21b1e550D73cee41151c77F3c73359527a396" }, { - "id": "0xaca3354ec2d60bc8816590e32c755a87269a07d1eef7c7a49f808d9d6aee9f18", - "blockHeight": "67296279", - "from": "0x38C2853E569125Fc9Af310Ab145FCEfB2A07A322", - "to": "0x0000000000000000000000000000000000000000", - "value": "10000000000000000000000", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + "id": "0x8df838f5f6e0710c43a15512c353c62ca7ef90b19e77db72f832835d2eab76b1", + "blockHeight": "131207096", + "from": "0xc3DA629c518404860c8893a66cE3Bb2e16bea6eC", + "to": "0xd3e2Fd9dB41Acea03f0E0c22d85D3076186f4f24", + "value": "160321797378530", + "contractAddress": "0x34d21b1e550D73cee41151c77F3c73359527a396" }, { - "id": "0x5f549d1546f590146b87091c9bdfde18ff1f3d33b6ed852fc454af810a4c0e32", - "blockHeight": "67296232", - "from": "0x5BAB9d61f84630A76fA9e2f67739f2da694B5402", - "to": "0x245cD6d33578de9aF75a3C0c636c726b1A8cbdAa", - "value": "6996500000000000000000", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + "id": "0xc4f94437900be853cc03e0fae2c18650fdde00bd8a26cd080d45dd9051edad42", + "blockHeight": "131206820", + "from": "0x6B0177E96C3623B6F6940dA18378d52f78CeA12D", + "to": "0x71B59e4bC2995B57aA03437ed645AdA7Dd5B1890", + "value": "18574153690448", + "contractAddress": "0x34d21b1e550D73cee41151c77F3c73359527a396" }, { - "id": "0x6158b4cc15013f08e89c91cef0d1610cd37d7d303126299900689790ecb8124e", - "blockHeight": "67295446", - "from": "0x31F63A33141fFee63D4B26755430a390ACdD8a4d", - "to": "0x0000000000000000000000000000000000000000", - "value": "6844335953031983950296", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + "id": "0x6e4c46dad80fa9c55f4d1e6048317f12614b7405321ce36ed7bec8b0e624dffb", + "blockHeight": "131207283", + "from": "0xAebFAe557F3948B91c9cb25fc650A26F728C5C9d", + "to": "0x09267e3E96925C76DfcC2CE39479559A2AB9B8a2", + "value": "2000000000000", + "contractAddress": "0x34d21b1e550D73cee41151c77F3c73359527a396" } ] } @@ -326,20 +326,12 @@ You will see the result similar to below: "approvals": { "nodes": [ { - "id": "0x7e08e7e27996561ba385b9ffc6a9a02d51ad17a22a9bbb9e79a6ad059f269720", + "id": "0x61e162fa7e5bbc5edfb462627eaf6d96aaf240ccde102bb0a04ef868bab54c07", "blockHeight": null, - "owner": "0xDEc89FC2ECfF1F2197204126EaAc55043155153b", - "spender": "0x1111111254EEB25477B68fb85Ed929f73A960582", + "owner": "0x88Fe4fB118c954c11A359AbcE9dc887F7399bE1c", + "spender": "0x51D233B5aE7820030A29c75d6788403B8B5d317B", "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" - }, - { - "id": "0xa00b913d56a1e91a6fdc52e05f56db54e518a1fbbd81e94ccc4b0d3521c72c53", - "blockHeight": null, - "owner": "0xDEc89FC2ECfF1F2197204126EaAc55043155153b", - "spender": "0x1111111254EEB25477B68fb85Ed929f73A960582", - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935", - "contractAddress": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" + "contractAddress": "0x34d21b1e550D73cee41151c77F3c73359527a396" } ] } @@ -348,7 +340,7 @@ You will see the result similar to below: ``` ::: tip Note -The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Fantom/fantom-starter). +The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Klaytn/klaytn-starter). ::: ## What's next? From 0686d0947bebd39c9cc69c91e00816b645a90dd6 Mon Sep 17 00:00:00 2001 From: youssefea Date: Tue, 5 Sep 2023 15:27:37 +0100 Subject: [PATCH 3/7] Adding klaytn to config ts --- docs/.vuepress/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 413cf8b1fb2..89c0a7ca493 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -444,6 +444,10 @@ function getSidebar(locale: string): SidebarOptions { text: "Immutable (Testnet)", link: `${locale}/quickstart/quickstart_chains/immutable-testnet.md`, }, + { + text: "Klaytn", + link: `${locale}/quickstart/quickstart_chains/klaytn.md`, + }, { text: "Mantle", link: `${locale}/quickstart/quickstart_chains/mantle.md`, From 177abd5c0037f06423b0ba74b95af571a0c1296e Mon Sep 17 00:00:00 2001 From: youssefea Date: Thu, 7 Sep 2023 16:55:23 +0100 Subject: [PATCH 4/7] Add Skale to guides --- docs/.vuepress/config.ts | 4 + docs/quickstart/quickstart_chains/skale.md | 360 +++++++++++++++++++++ 2 files changed, 364 insertions(+) create mode 100644 docs/quickstart/quickstart_chains/skale.md diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 89c0a7ca493..b552ab7227f 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -522,6 +522,10 @@ function getSidebar(locale: string): SidebarOptions { text: "Scroll Sepolia", link: `${locale}/quickstart/quickstart_chains/scroll-sepolia.md`, }, + { + text: "Skale", + link: `${locale}/quickstart/quickstart_chains/skale.md`, + }, { text: "ZkSync Era", link: `${locale}/quickstart/quickstart_chains/zksync-era.md`, diff --git a/docs/quickstart/quickstart_chains/skale.md b/docs/quickstart/quickstart_chains/skale.md new file mode 100644 index 00000000000..665b7631171 --- /dev/null +++ b/docs/quickstart/quickstart_chains/skale.md @@ -0,0 +1,360 @@ +# Skale Europa Quick Start + +## Goals + +The goal of this quick start guide is to index all transfers and approval events from the [SKL Token](https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433) on [Skale Europa](https://skale.space/) Network . + +::: warning +Before we begin, **make sure that you have initialised your project** using the provided steps in the [Start Here](../quickstart.md) section. Please initialise an a Skale project. +::: + +In every SubQuery project, there are [3 key files](../quickstart.md#_3-make-changes-to-your-project) to update. Let's begin updating them one by one. + +::: tip Note +The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Skale/skale-starter). + +We use Ethereum packages, runtimes, and handlers (e.g. `@subql/node-ethereum`, `ethereum/Runtime`, and `ethereum/*Hander`) for Skale. Since Skale Europa 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.yaml`) file works as an entry point to your Skale project. It defines most of the details on how SubQuery will index and transform the chain data. For Poltgon zkEVM, there are three types of mapping handlers (and you can have more than one in each project): + +- [BlockHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every block, run a mapping function +- [TransactionHandlers](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every transaction that matches optional filter criteria, run a mapping function +- [LogHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): 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 SKL Token contract on Skale network, the first step is to import the contract abi definition which can be obtained from from any standard [ERC-20 contract](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/). 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:** + +```yaml +dataSources: + - kind: ethereum/Runtime # We use ethereum runtime since Skale Europa is EVM-compatible + startBlock: 3238500 # This is the block that the contract was deployed on https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433 + options: + # Must be a key of assets + abi: erc20 + address: "0x871bb56655376622a367ece74332c449e5bac433" # This is the contract address for SKL Token https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433 + assets: + erc20: + file: "./abis/erc20.abi.json" + mapping: + file: "./dist/index.js" + handlers: + - handler: handleTransaction + kind: ethereum/TransactionHandler # We use ethereum handlers since Skale Europa is EVM-compatible + filter: + ## The function can either be the function fragment or signature + # function: '0x095ea7b3' + # function: '0x7ff36ab500000000000000000000000000000000000000000000000000000000' + function: approve(address spender, uint256 amount) + - handler: handleLog + kind: ethereum/LogHandler # We use ethereum handlers since Skale Europa is EVM-compatible + filter: + topics: + ## Follows standard log filters https://docs.ethers.io/v5/concepts/events/ + - Transfer(address indexed from, address indexed to, uint256 + amount) + # address: "0x60781C2586D68229fde47564546784ab3fACA982" +``` + +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 [SKL Token](https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433). + +The code also indicates that you will be running a `handleLog` mapping function whenever there is a `Transfer` event being emitted from the [SKL Token](https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433). + +Check out our [Manifest File](../../build/manifest/ethereum.md) documentation to get more information about the Project Manifest (`project.yaml`) 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.). + +```graphql +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. + +::: code-tabs +@tab:active yarn + +```shell +yarn codegen +``` + +@tab npm + +```shell +npm run-script 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](../../build/graphql.md). All entities can be imported from the following directory: + +```ts +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](../../build/introduction.md#evm-codegen-from-abis). + +In this example SubQuery project, you would import these types like so. + +```ts +import { + ApproveTransaction, + TransferLog, +} from "../types/abi-interfaces/Erc20Abi"; +``` + +::: warning 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](../../build/graphql.md) 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`: + +```ts +export async function handleLog(log: TransferLog): Promise { + 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 { + 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](../../build/mapping/ethereum.md) 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: + +::: code-tabs +@tab:active yarn + +```shell +yarn build +``` + +@tab npm + +```shell +npm run-script build +``` + +::: + +::: warning 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](../../run_publish/run.md) to get more information on the file and the settings. + +Run the following command under the project directory: + +::: code-tabs +@tab:active yarn + +```shell +yarn start:docker +``` + +@tab npm + +```shell +npm run-script start:docker +``` + +::: + +::: tip 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](../../run_publish/query.md). + +```graphql +# 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: + +```json +{ + "data": { + "query": { + "transfers": { + "totalCount": 901, + "nodes": [ + { + "id": "0x11c3519a07d48ca7e9b3d77c9c288919e8786dfffaad76bdfd6ae554d2481a13", + "blockHeight": "3072", + "from": "0xC6c893a0dCf31b5766Ac5c103AF9e9805A6d0774", + "to": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", + "value": "4390819482026157205", + "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + }, + { + "id": "0x8d2eed830280b0e35165560f7234da3ccd02f9dc526434e874ccb0e5a464c4f6", + "blockHeight": "936", + "from": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", + "to": "0x267816F8789a28463cE10acD50ffeDDE57F318Ee", + "value": "3499686336793644484", + "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + }, + { + "id": "0x818086a329ca6cecfaf55ac6f3c5a34b985a97ef5439c15bb66f094b4e76a8e5", + "blockHeight": "2841", + "from": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", + "to": "0xC6c893a0dCf31b5766Ac5c103AF9e9805A6d0774", + "value": "3300395407835132030", + "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + }, + { + "id": "0x08e395f3058c05141ab656e08fba91d47d52c9bc954e26f378e4edd3f4ef9d8d", + "blockHeight": "2435", + "from": "0x4b8f52c68594554DdF13aff5E2d8d788bC56Ca8c", + "to": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", + "value": "1794066117854317399", + "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + }, + { + "id": "0x0ac0c00fd9c3bb4ee921e82fe32e658846497697447d9dadffaaec64b2c5ff4a", + "blockHeight": "2998", + "from": "0x7D9195077671B08F442B2A1b310858bDB1C4abcc", + "to": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", + "value": "1430946047728089377", + "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + } + ] + } + }, + "approvals": { + "nodes": [ + { + "id": "0xccec6946012d52a27fcae9790ade5a5e7314f934170483fecf2896e3448604bd", + "blockHeight": null, + "owner": "0x12680Ad2f3D80b162344Ba3FF3978daB7A565675", + "spender": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935", + "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + } + ] + } + } +} +``` + +::: tip Note +The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Skale/skale-starter/). +::: + +## What's next? + +Congratulations! You have now a locally running SubQuery project that accepts GraphQL API requests for transferring data. + +::: tip Tip + +Find out how to build a performant SubQuery project and avoid common mistakes in [Project Optimisation](../../build/optimisation.md). + +::: + +Click [here](../../quickstart/whats-next.md) to learn what should be your **next step** in your SubQuery journey. From 0147db87bb10ec3899433e4f04c0e7a0e0402c41 Mon Sep 17 00:00:00 2001 From: youssefea Date: Thu, 7 Sep 2023 17:00:30 +0100 Subject: [PATCH 5/7] Adding klaytn to config ts --- docs/.vuepress/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 413cf8b1fb2..89c0a7ca493 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -444,6 +444,10 @@ function getSidebar(locale: string): SidebarOptions { text: "Immutable (Testnet)", link: `${locale}/quickstart/quickstart_chains/immutable-testnet.md`, }, + { + text: "Klaytn", + link: `${locale}/quickstart/quickstart_chains/klaytn.md`, + }, { text: "Mantle", link: `${locale}/quickstart/quickstart_chains/mantle.md`, From 7281f60706f69dc2a9c2b09dfb4591725aa0b31e Mon Sep 17 00:00:00 2001 From: youssefea Date: Thu, 7 Sep 2023 17:02:34 +0100 Subject: [PATCH 6/7] delete skale --- docs/quickstart/quickstart_chains/skale.md | 360 --------------------- 1 file changed, 360 deletions(-) delete mode 100644 docs/quickstart/quickstart_chains/skale.md diff --git a/docs/quickstart/quickstart_chains/skale.md b/docs/quickstart/quickstart_chains/skale.md deleted file mode 100644 index 665b7631171..00000000000 --- a/docs/quickstart/quickstart_chains/skale.md +++ /dev/null @@ -1,360 +0,0 @@ -# Skale Europa Quick Start - -## Goals - -The goal of this quick start guide is to index all transfers and approval events from the [SKL Token](https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433) on [Skale Europa](https://skale.space/) Network . - -::: warning -Before we begin, **make sure that you have initialised your project** using the provided steps in the [Start Here](../quickstart.md) section. Please initialise an a Skale project. -::: - -In every SubQuery project, there are [3 key files](../quickstart.md#_3-make-changes-to-your-project) to update. Let's begin updating them one by one. - -::: tip Note -The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Skale/skale-starter). - -We use Ethereum packages, runtimes, and handlers (e.g. `@subql/node-ethereum`, `ethereum/Runtime`, and `ethereum/*Hander`) for Skale. Since Skale Europa 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.yaml`) file works as an entry point to your Skale project. It defines most of the details on how SubQuery will index and transform the chain data. For Poltgon zkEVM, there are three types of mapping handlers (and you can have more than one in each project): - -- [BlockHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every block, run a mapping function -- [TransactionHandlers](../../build/manifest/ethereum.md#mapping-handlers-and-filters): On each and every transaction that matches optional filter criteria, run a mapping function -- [LogHanders](../../build/manifest/ethereum.md#mapping-handlers-and-filters): 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 SKL Token contract on Skale network, the first step is to import the contract abi definition which can be obtained from from any standard [ERC-20 contract](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/). 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:** - -```yaml -dataSources: - - kind: ethereum/Runtime # We use ethereum runtime since Skale Europa is EVM-compatible - startBlock: 3238500 # This is the block that the contract was deployed on https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433 - options: - # Must be a key of assets - abi: erc20 - address: "0x871bb56655376622a367ece74332c449e5bac433" # This is the contract address for SKL Token https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433 - assets: - erc20: - file: "./abis/erc20.abi.json" - mapping: - file: "./dist/index.js" - handlers: - - handler: handleTransaction - kind: ethereum/TransactionHandler # We use ethereum handlers since Skale Europa is EVM-compatible - filter: - ## The function can either be the function fragment or signature - # function: '0x095ea7b3' - # function: '0x7ff36ab500000000000000000000000000000000000000000000000000000000' - function: approve(address spender, uint256 amount) - - handler: handleLog - kind: ethereum/LogHandler # We use ethereum handlers since Skale Europa is EVM-compatible - filter: - topics: - ## Follows standard log filters https://docs.ethers.io/v5/concepts/events/ - - Transfer(address indexed from, address indexed to, uint256 - amount) - # address: "0x60781C2586D68229fde47564546784ab3fACA982" -``` - -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 [SKL Token](https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433). - -The code also indicates that you will be running a `handleLog` mapping function whenever there is a `Transfer` event being emitted from the [SKL Token](https://elated-tan-skat.explorer.mainnet.skalenodes.com/token/0x871Bb56655376622A367ece74332C449e5bAc433). - -Check out our [Manifest File](../../build/manifest/ethereum.md) documentation to get more information about the Project Manifest (`project.yaml`) 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.). - -```graphql -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. - -::: code-tabs -@tab:active yarn - -```shell -yarn codegen -``` - -@tab npm - -```shell -npm run-script 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](../../build/graphql.md). All entities can be imported from the following directory: - -```ts -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](../../build/introduction.md#evm-codegen-from-abis). - -In this example SubQuery project, you would import these types like so. - -```ts -import { - ApproveTransaction, - TransferLog, -} from "../types/abi-interfaces/Erc20Abi"; -``` - -::: warning 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](../../build/graphql.md) 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`: - -```ts -export async function handleLog(log: TransferLog): Promise { - 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 { - 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](../../build/mapping/ethereum.md) 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: - -::: code-tabs -@tab:active yarn - -```shell -yarn build -``` - -@tab npm - -```shell -npm run-script build -``` - -::: - -::: warning 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](../../run_publish/run.md) to get more information on the file and the settings. - -Run the following command under the project directory: - -::: code-tabs -@tab:active yarn - -```shell -yarn start:docker -``` - -@tab npm - -```shell -npm run-script start:docker -``` - -::: - -::: tip 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](../../run_publish/query.md). - -```graphql -# 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: - -```json -{ - "data": { - "query": { - "transfers": { - "totalCount": 901, - "nodes": [ - { - "id": "0x11c3519a07d48ca7e9b3d77c9c288919e8786dfffaad76bdfd6ae554d2481a13", - "blockHeight": "3072", - "from": "0xC6c893a0dCf31b5766Ac5c103AF9e9805A6d0774", - "to": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", - "value": "4390819482026157205", - "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" - }, - { - "id": "0x8d2eed830280b0e35165560f7234da3ccd02f9dc526434e874ccb0e5a464c4f6", - "blockHeight": "936", - "from": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", - "to": "0x267816F8789a28463cE10acD50ffeDDE57F318Ee", - "value": "3499686336793644484", - "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" - }, - { - "id": "0x818086a329ca6cecfaf55ac6f3c5a34b985a97ef5439c15bb66f094b4e76a8e5", - "blockHeight": "2841", - "from": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", - "to": "0xC6c893a0dCf31b5766Ac5c103AF9e9805A6d0774", - "value": "3300395407835132030", - "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" - }, - { - "id": "0x08e395f3058c05141ab656e08fba91d47d52c9bc954e26f378e4edd3f4ef9d8d", - "blockHeight": "2435", - "from": "0x4b8f52c68594554DdF13aff5E2d8d788bC56Ca8c", - "to": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", - "value": "1794066117854317399", - "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" - }, - { - "id": "0x0ac0c00fd9c3bb4ee921e82fe32e658846497697447d9dadffaaec64b2c5ff4a", - "blockHeight": "2998", - "from": "0x7D9195077671B08F442B2A1b310858bDB1C4abcc", - "to": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", - "value": "1430946047728089377", - "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" - } - ] - } - }, - "approvals": { - "nodes": [ - { - "id": "0xccec6946012d52a27fcae9790ade5a5e7314f934170483fecf2896e3448604bd", - "blockHeight": null, - "owner": "0x12680Ad2f3D80b162344Ba3FF3978daB7A565675", - "spender": "0xd8E1E7009802c914b0d39B31Fc1759A865b727B1", - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639935", - "contractAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" - } - ] - } - } -} -``` - -::: tip Note -The final code of this project can be found [here](https://github.com/subquery/ethereum-subql-starter/blob/main/Skale/skale-starter/). -::: - -## What's next? - -Congratulations! You have now a locally running SubQuery project that accepts GraphQL API requests for transferring data. - -::: tip Tip - -Find out how to build a performant SubQuery project and avoid common mistakes in [Project Optimisation](../../build/optimisation.md). - -::: - -Click [here](../../quickstart/whats-next.md) to learn what should be your **next step** in your SubQuery journey. From 05c4713b73fea84accaaaeb0a5a7e6febb127548 Mon Sep 17 00:00:00 2001 From: youssefea Date: Thu, 7 Sep 2023 17:04:25 +0100 Subject: [PATCH 7/7] remove skale --- docs/.vuepress/config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index b552ab7227f..89c0a7ca493 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -522,10 +522,6 @@ function getSidebar(locale: string): SidebarOptions { text: "Scroll Sepolia", link: `${locale}/quickstart/quickstart_chains/scroll-sepolia.md`, }, - { - text: "Skale", - link: `${locale}/quickstart/quickstart_chains/skale.md`, - }, { text: "ZkSync Era", link: `${locale}/quickstart/quickstart_chains/zksync-era.md`,