tornado-subgraph/schema.graphql

40 lines
642 B
GraphQL
Raw Normal View History

2021-06-07 13:43:31 +03:00
type Deposit @entity {
id: ID!
2022-03-12 19:43:38 +03:00
from: Bytes!
2021-06-07 13:43:31 +03:00
index: BigInt!
amount: String!
currency: String!
commitment: Bytes!
timestamp: BigInt!
blockNumber: BigInt!
transactionHash: Bytes!
}
type Withdrawal @entity {
id: ID!
to: Bytes!
fee: BigInt!
index: BigInt!
amount: String!
currency: String!
nullifier: Bytes!
timestamp: BigInt!
blockNumber: BigInt!
transactionHash: Bytes!
}
type EncryptedNote @entity {
id: ID!
index: BigInt!
blockNumber: BigInt!
encryptedNote: Bytes!
transactionHash: Bytes!
}
type NoteAccount @entity {
id: ID!
index: BigInt!
address: Bytes!
encryptedAccount: Bytes!
}