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!
|
|
}
|