@@ -6606,7 +6606,7 @@ enum Pool_orderBy {
6606
6606
# TAP v2 Entities
6607
6607
# PaymentsEscrow and GraphTallyCollector contract entities
6608
6608
6609
- type EscrowAccount @entity {
6609
+ type PaymentsEscrowAccount @entity {
6610
6610
id : Bytes !
6611
6611
payer : Payer !
6612
6612
collector : Collector !
@@ -6616,7 +6616,7 @@ type EscrowAccount @entity {
6616
6616
thawEndTimestamp : BigInt !
6617
6617
}
6618
6618
6619
- input EscrowAccount_filter {
6619
+ input PaymentsEscrowAccount_filter {
6620
6620
id : Bytes
6621
6621
id_not : Bytes
6622
6622
id_in : [Bytes ! ]
@@ -6665,7 +6665,7 @@ input EscrowAccount_filter {
6665
6665
or : [EscrowAccount_filter ]
6666
6666
}
6667
6667
6668
- enum EscrowAccount_orderBy {
6668
+ enum PaymentsEscrowAccount_orderBy {
6669
6669
id
6670
6670
payer
6671
6671
payer__id
@@ -6682,7 +6682,7 @@ enum EscrowAccount_orderBy {
6682
6682
type Collector @entity {
6683
6683
id : Bytes !
6684
6684
type : String
6685
- escrowAccounts : [EscrowAccount ! ]! @derivedFrom (field : " collector" )
6685
+ escrowAccounts : [PaymentsEscrowAccount ! ]! @derivedFrom (field : " collector" )
6686
6686
}
6687
6687
6688
6688
input Collector_filter {
@@ -6700,7 +6700,7 @@ input Collector_filter {
6700
6700
type_not_starts_with : String
6701
6701
type_ends_with : String
6702
6702
type_not_ends_with : String
6703
- escrowAccounts_ : EscrowAccount_filter
6703
+ escrowAccounts_ : PaymentsEscrowAccount_filter
6704
6704
_change_block : BlockChangedFilter
6705
6705
and : [Collector_filter ]
6706
6706
or : [Collector_filter ]
@@ -6809,7 +6809,7 @@ enum DataService_orderBy {
6809
6809
6810
6810
type Payer @entity {
6811
6811
id : Bytes !
6812
- escrowAccounts : [EscrowAccount ! ]! @derivedFrom (field : " payer" )
6812
+ escrowAccounts : [PaymentsEscrowAccount ! ]! @derivedFrom (field : " payer" )
6813
6813
signers : [Signer ! ]! @derivedFrom (field : " payer" )
6814
6814
}
6815
6815
@@ -6818,7 +6818,7 @@ input Payer_filter {
6818
6818
id_not : Bytes
6819
6819
id_in : [Bytes ! ]
6820
6820
id_not_in : [Bytes ! ]
6821
- escrowAccounts_ : EscrowAccount_filter
6821
+ escrowAccounts_ : PaymentsEscrowAccount_filter
6822
6822
signers_ : Signer_filter
6823
6823
_change_block : BlockChangedFilter
6824
6824
and : [Payer_filter ]
@@ -6833,15 +6833,15 @@ enum Payer_orderBy {
6833
6833
6834
6834
type Receiver @entity {
6835
6835
id : Bytes !
6836
- escrowAccounts : [EscrowAccount ! ]! @derivedFrom (field : " receiver" )
6836
+ escrowAccounts : [PaymentsEscrowAccount ! ]! @derivedFrom (field : " receiver" )
6837
6837
}
6838
6838
6839
6839
input Receiver_filter {
6840
6840
id : Bytes
6841
6841
id_not : Bytes
6842
6842
id_in : [Bytes ! ]
6843
6843
id_not_in : [Bytes ! ]
6844
- escrowAccounts_ : EscrowAccount_filter
6844
+ escrowAccounts_ : PaymentsEscrowAccount_filter
6845
6845
_change_block : BlockChangedFilter
6846
6846
and : [Receiver_filter ]
6847
6847
or : [Receiver_filter ]
@@ -8318,7 +8318,7 @@ type Query {
8318
8318
"""
8319
8319
subgraphError : _SubgraphErrorPolicy_ ! = deny
8320
8320
): [Delegator ! ]!
8321
- escrowAccount (
8321
+ paymentsEscrowAccount (
8322
8322
id : ID !
8323
8323
8324
8324
"""
@@ -8335,13 +8335,13 @@ type Query {
8335
8335
Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.
8336
8336
"""
8337
8337
subgraphError : _SubgraphErrorPolicy_ ! = deny
8338
- ): EscrowAccount
8339
- escrowAccounts (
8338
+ ): PaymentsEscrowAccount
8339
+ paymentsEscrowAccounts (
8340
8340
skip : Int = 0
8341
8341
first : Int = 100
8342
- orderBy : EscrowAccount_orderBy
8342
+ orderBy : PaymentsEscrowAccount_orderBy
8343
8343
orderDirection : OrderDirection
8344
- where : EscrowAccount_filter
8344
+ where : PaymentsEscrowAccount_filter
8345
8345
8346
8346
"""
8347
8347
The block at which the query should be executed. Can either be a `{ hash:
@@ -8357,7 +8357,7 @@ type Query {
8357
8357
Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.
8358
8358
"""
8359
8359
subgraphError : _SubgraphErrorPolicy_ ! = deny
8360
- ): [EscrowAccount ! ]!
8360
+ ): [PaymentsEscrowAccount ! ]!
8361
8361
collector (
8362
8362
id : ID !
8363
8363
block : Block_height
@@ -12368,20 +12368,20 @@ type Subscription {
12368
12368
"""
12369
12369
subgraphError : _SubgraphErrorPolicy_ ! = deny
12370
12370
): [Transaction ! ]!
12371
- escrowAccount (
12371
+ paymentsEscrowAccount (
12372
12372
id : ID !
12373
12373
block : Block_height
12374
12374
subgraphError : _SubgraphErrorPolicy_ ! = deny
12375
- ): EscrowAccount
12376
- escrowAccounts (
12375
+ ): PaymentsEscrowAccount
12376
+ paymentsEscrowAccounts (
12377
12377
skip : Int = 0
12378
12378
first : Int = 100
12379
- orderBy : EscrowAccount_orderBy
12379
+ orderBy : PaymentsEscrowAccount_orderBy
12380
12380
orderDirection : OrderDirection
12381
- where : EscrowAccount_filter
12381
+ where : PaymentsEscrowAccount_filter
12382
12382
block : Block_height
12383
12383
subgraphError : _SubgraphErrorPolicy_ ! = deny
12384
- ): [EscrowAccount ! ]!
12384
+ ): [PaymentsEscrowAccount ! ]!
12385
12385
collector (
12386
12386
id : ID !
12387
12387
block : Block_height
0 commit comments