forked from dsgriffin/nft-sales-x-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkets.js
48 lines (47 loc) · 1.15 KB
/
markets.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const markets = {
// OpenSea Contract Address
'0x7be8076f4ea4a4ad08075c2508e481d6c946d12b' : {
'name': 'OpenSea 🌊',
'site': 'https://opensea.io/assets/',
'logDecoder': [{
type: 'bytes32',
name: 'buyHash'
}, {
type: 'bytes32',
name: 'sellHash',
},{
type: 'uint256',
name: 'price',
}]
},
// LooksRareExchange Contract Address
'0x59728544b08ab483533076417fbbb2fd0b17ce3a' : {
'name': 'LooksRare 👀💎',
'site': 'https://looksrare.org/collections/',
'logDecoder': [{
type: 'bytes32',
name: 'orderHash'
}, {
type: 'uint256',
name: 'orderNonce',
},{
type: 'address',
name: 'currency',
},{
type: 'address',
name: 'collection',
},{
type: 'uint256',
name: 'tokenId',
},{
type: 'uint256',
name: 'amount',
},{
type: 'uint256',
name: 'price',
}]
}
};
module.exports = {
markets: markets
};