1
+ import { dataSource } from "@graphprotocol/graph-ts" ;
2
+ import { Book , BookMetaData } from "../generated/schema" ;
3
+
4
+ let context = dataSource . context ( ) ;
5
+ let bookId = context . getString ( "bookId" ) ;
6
+ let newBook = Book . load ( bookId ) ;
7
+
8
+ // BookBought(uint256,indexed address, uint256)
9
+ // handleBookBought
10
+
11
+ // BookTransferred(uint256,indexed address)
12
+ // handleBookTransferred
13
+
14
+ // PriceUpdated(uint256)
15
+ // handlePriceUpdated
16
+
17
+ // SellingPriceUpdated(uint256,uint256)
18
+ // handleSellingPriceUpdated
19
+
20
+ // MarketSupplyIncreased(uint256)
21
+ // handleMarketSupplyIncreased
22
+
23
+ // SupplyUnlimited()
24
+ // handleSupplyUnlimited
25
+
26
+ // SupplyLimited()
27
+ // handleSupplyLimited
28
+
29
+ // RoyaltyUpdated(uint256)
30
+ // RoyaltyUpdated
31
+
32
+ // BookRedeemed(uint256,uint256,indexed address)
33
+ // handleBookRedeemed
34
+
35
+ // CoverPageUpdated(bytes32)
36
+ // handleCoverPageUpdated
37
+
38
+ // ContributorAdded(indexed address, uint96)
39
+ // handleContributorAdded
40
+
41
+ // ContributorRemoved(indexed address)
42
+ // handleContributorRemoved
43
+
44
+ // ContributorUpdated(indexed address, uint96)
45
+ // handleContributorUpdated
46
+
47
+ // RevenueWithdrawn(uint256)
48
+ // evenueWithdrawn
49
+
50
+ // BookLocked(uint256,indexed address)
51
+ // handleBookLocked
52
+
53
+ // BookUnlocked(uint256)
54
+ // handleBookUnlocked
0 commit comments