27 lines
563 B
GraphQL
27 lines
563 B
GraphQL
type Approval @entity(immutable: true) {
|
|
id: Bytes!
|
|
owner: Bytes! # address
|
|
spender: Bytes! # address
|
|
value: BigInt! # uint256
|
|
blockNumber: BigInt!
|
|
blockTimestamp: BigInt!
|
|
transactionHash: Bytes!
|
|
}
|
|
|
|
type EIP712DomainChanged @entity(immutable: true) {
|
|
id: Bytes!
|
|
|
|
blockNumber: BigInt!
|
|
blockTimestamp: BigInt!
|
|
transactionHash: Bytes!
|
|
}
|
|
|
|
type Transfer @entity(immutable: true) {
|
|
id: Bytes!
|
|
from: Bytes! # address
|
|
to: Bytes! # address
|
|
value: BigInt! # uint256
|
|
blockNumber: BigInt!
|
|
blockTimestamp: BigInt!
|
|
transactionHash: Bytes!
|
|
}
|