Skip to content

Commit

Permalink
Merge pull request #92 from aavegotchi/dev
Browse files Browse the repository at this point in the history
v1.4.0
  • Loading branch information
cinnabarhorse authored Jun 1, 2023
2 parents 49e167f + 1cff3a9 commit 4d4fcbf
Show file tree
Hide file tree
Showing 13 changed files with 1,806 additions and 5 deletions.
505 changes: 505 additions & 0 deletions abis/AavegotchiDiamond.json

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions abis/RealmDiamond.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
[
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "KinshipBurned",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down
16 changes: 16 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ type GotchiLending @entity {
timeEnded: BigInt

claimed: [ClaimedToken!]! @derivedFrom(field: "lending")

channellingAllowed: Boolean!
}

type ClaimedToken @entity {
Expand All @@ -392,3 +394,17 @@ type Whitelist @entity {
# id: ID!
# calldata:
#}
## buy order
type ERC721BuyOrder @entity {
id: ID!
buyer: Bytes!
seller: Bytes
erc721TokenAddress: Bytes!
erc721TokenId: BigInt!
category: BigInt!
priceInWei: BigInt!
duration: BigInt!
validationHash: Bytes!
createdAt: BigInt!
executedAt: BigInt
}
Loading

0 comments on commit 4d4fcbf

Please sign in to comment.