Skip to content

Commit 3c6f837

Browse files
committed
Description Updated
1 parent b3c2584 commit 3c6f837

File tree

2 files changed

+7
-21
lines changed

2 files changed

+7
-21
lines changed

Ethereum/ethscriptions/README.md

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[SubQuery](https://subquery.network) is a fast, flexible, and reliable open-source data indexer that provides you with custom APIs for your web3 project across all of our supported networks. To learn about how to get started with SubQuery, [visit our docs](https://academy.subquery.network).
44

5-
**This SubQuery project indexes all transfers and approval events for the [wrapped Ether token](https://etherscan.io/address/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) (`0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2`) on Ethereum Mainnet**
5+
**This SubQuery project indexes inscriptions on Ethereum Mainnet**
66

77
## Start
88

@@ -41,28 +41,15 @@ For this project, you can try to query with the following GraphQL code to get a
4141
```graphql
4242
{
4343
query {
44-
transfers(first: 5, orderBy: VALUE_DESC) {
45-
totalCount
44+
inscriptions {
4645
nodes {
4746
id
48-
blockHeight
49-
from
50-
to
51-
value
52-
contractAddress
47+
block
48+
creator
49+
data
5350
}
5451
}
5552
}
56-
approvals(first: 5, orderBy: BLOCK_HEIGHT_DESC) {
57-
nodes {
58-
id
59-
blockHeight
60-
owner
61-
spender
62-
value
63-
contractAddress
64-
}
65-
}
6653
}
6754
```
6855

Ethereum/ethscriptions/project.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ import {
88
const project: EthereumProject = {
99
specVersion: "1.0.0",
1010
version: "0.0.1",
11-
name: "ethereum-subql-starter",
12-
description:
13-
"This project can be use as a starting point for developing your new Ethereum SubQuery project",
11+
name: "ethscriptions",
12+
description: "This SubQuery project indexes inscriptions on Ethereum Mainnet",
1413
runner: {
1514
node: {
1615
name: "@subql/node-ethereum",

0 commit comments

Comments
 (0)