mirror of
https://github.com/tornadocash/tornado-pool-subgraph.git
synced 2024-12-04 23:05:17 +01:00
16 lines
258 B
GraphQL
16 lines
258 B
GraphQL
|
type Commitment @entity {
|
||
|
id: ID!
|
||
|
index: BigInt!
|
||
|
commitment: Bytes!
|
||
|
blockNumber: BigInt!
|
||
|
encryptedOutput: Bytes!
|
||
|
transactionHash: Bytes!
|
||
|
}
|
||
|
|
||
|
type Nullifier @entity {
|
||
|
id: ID!
|
||
|
nullifier: Bytes!
|
||
|
blockNumber: BigInt!
|
||
|
transactionHash: Bytes!
|
||
|
}
|