Skip to content

Commit 40a13e3

Browse files
authored
Add Arkham Exchange PoR (DefiLlama#12431)
1 parent e433d03 commit 40a13e3

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

projects/arkham-exchange/index.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
const { cexExports } = require('../helper/cex')
2+
const bitcoinAddressBook = require('../helper/bitcoin-book/index.js')
3+
4+
const config = {
5+
ethereum: {
6+
owners: [
7+
'0x679Fb19dEc9d66C34450a8563FfDFD29C04e615A',
8+
'0x0323718324218dcBfF7c9f89bA5a5954F61A6c74',
9+
'0x794C629e4403CA7CEE126Cc19d6C7b002D0238a5',
10+
],
11+
},
12+
bitcoin: {
13+
owners: bitcoinAddressBook.arkhamExchange
14+
},
15+
solana: {
16+
owners: [
17+
'H2qEpXtSEzQTH5xNFpA8VA1W2NKNZWxUoVpascxyWAK1',
18+
'3huamNpghPSPbgQSLX56B18Sj1hq5SE4KGxwTvhwJGnC',
19+
],
20+
},
21+
doge: {
22+
owners: [
23+
'9xFftuJonFHopj9FB6tyW1kyxqusr4jrGh',
24+
]
25+
},
26+
avax: {
27+
owners: [
28+
'0xDc2822D0685c0CcEAb07b35d6de4aC9280FB9cFF',
29+
'0x34407900475cEF87acE1597670A9A42F31961d02',
30+
'0xaF4E837d27cD6A5B33D67d51b88Ae42c0Bb3f1af',
31+
]
32+
},
33+
ton: {
34+
owners: [
35+
'UQDT3cimS92wrKXrc7U6quPIM1ose_N5-R4U5byIUDHkF8pt',
36+
'UQDd2gNTRcIsgdUgf0DYMVcpxZuV78hegZ4D1tIj7xLKTwWn',
37+
]
38+
},
39+
}
40+
41+
module.exports = cexExports(config)
42+
module.exports.methodology = 'Wallets can be tracked here: https://intel.arkm.com/explorer/entity/arkham-exchange'
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = [
2+
'bc1qlnkyrrupehgw5evu43erlgkhhagv0uj3yyhacvc65n3ud6qeas0sa958ps'
3+
]

projects/helper/bitcoin-book/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ const toobit = require('./toobit.js')
8484
const indiaCovid = require('./india-covid.js')
8585
const wooCEX = require('./woo-cex.js')
8686
const bitlayerBridge = require('./bitlayer-bridge.js')
87+
const arkhamExchange = require('./arkham-exchange.js')
8788

8889
const p2pb2b = ['39BFtTzZjj6o2s7eewefFQxqM4617VmhEK']
8990
const teleswap = [
@@ -183,4 +184,5 @@ module.exports = {
183184
indiaCovid,
184185
wooCEX,
185186
p2pb2b,
186-
}
187+
arkhamExchange,
188+
}

0 commit comments

Comments
 (0)