Skip to content

Commit e15e036

Browse files
authoredJan 17, 2024
Add support for endBlock in manifest (#1409)
1 parent 274c46c commit e15e036

File tree

6 files changed

+10
-0
lines changed

6 files changed

+10
-0
lines changed
 

‎.changeset/slow-bananas-help.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': minor
3+
---
4+
5+
Add support for endBlock in subgraph manifest

‎packages/cli/src/protocols/arweave/manifest.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ type DataSource {
4141
type ContractSource {
4242
owner: String
4343
startBlock: BigInt
44+
endBlock: BigInt
4445
}
4546

4647
type ContractMapping {

‎packages/cli/src/protocols/cosmos/manifest.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ type DataSource {
4141

4242
type ContractSource {
4343
startBlock: BigInt
44+
endBlock: BigInt
4445
}
4546

4647
type ContractMapping {

‎packages/cli/src/protocols/ethereum/manifest.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ type ContractSource {
4545
address: String
4646
abi: String!
4747
startBlock: BigInt
48+
endBlock: BigInt
4849
}
4950

5051
type ContractMapping {

‎packages/cli/src/protocols/near/manifest.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ type DataSource {
4242
type ContractSource {
4343
account: String
4444
startBlock: BigInt
45+
endBlock: BigInt
4546
accounts: PartialAccount
4647
}
4748

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit ec49a21365db37e557492be68e057dce199e4045

0 commit comments

Comments
 (0)
Please sign in to comment.