mirror of
https://github.com/tornadocash/tornado-pool-subgraph.git
synced 2024-12-04 15:04:51 +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!
|
|
}
|