Skip to content

Commit a2b86b5

Browse files
authored
Add cex.io exchange adapter (#16146)
1 parent 1bc4fcb commit a2b86b5

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

projects/cex-io/index.js

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
const { cexExports } = require('../helper/cex')
2+
3+
const config = {
4+
bitcoin: {
5+
owners: [
6+
'3HfJ6brzer2fZob1ZZCyeUUUTD6vzXWdJv',
7+
'3FnBbsWjxLejVsMMHEqDt6B19dEupBaZwK',
8+
'32L7Yo5JzwnGtRgeGxrXxc8LT6CpQsL3d4',
9+
'3E4ujC6LQVFxhEcZ1E7ZTGYhcb67WFAuoC',
10+
],
11+
},
12+
13+
ethereum: {
14+
owners: [
15+
'0xc9f5296eb3ac266c94568d790b6e91eba7d76a11',
16+
'0x2818e54e0489274F61f33F163504074beE5932CA',
17+
'0xc48c74C4eDA47f915e8580391EC2F386F769D996',
18+
],
19+
},
20+
21+
polkadot: {
22+
owners: [
23+
'16k7GSZckaQEqatoxpvxy8QgGSquULbKJa9HgEeQjZV8YyCr',
24+
'14ct4em2mEorhkQBFg8eJPYyHB1y81L8tPz3qHwL1jJuDh4X',
25+
'12xu4vLmFGvhgX93JXVxxLJdkkngkKj4WQQcJXt2Es55G9S9',
26+
],
27+
},
28+
29+
litecoin: {
30+
owners: [
31+
'MPVaSwnMnbRortv8XajivUoiYjKMoUfsKp',
32+
'MTgZ3Kjiwf8Rv3HWcuAF3Ei7b6sSV9e4Nv',
33+
'MSEA4EakQkZ1jjr5Y613thWJqPMaQEBRdw',
34+
'MGAuMM1KGz8x3H2B6fC2az9BDwop7FAoqa',
35+
'MSkqCeihbC8vaZXQ8XB8R72kx9qLYARLWo',
36+
],
37+
},
38+
39+
ripple: {
40+
owners: [
41+
'rE1sdh25BJQ3qFwngiTBwaq3zPGGYcrjp1',
42+
],
43+
},
44+
45+
sui: {
46+
owners: [
47+
'0x8a9eb4260c0313f0c23d5858b5296235933534ff0f1692c7c1b3881fbbe53c0a',
48+
'0x3c7ea0026464b3ded7f3b0431e24c17bb6714d9c5de751433dacfec3fe6bc36b',
49+
],
50+
},
51+
52+
tron: {
53+
owners: [
54+
'TQ8y7omRyKSq42Tri398txQCQE4wxjk97Q',
55+
'TS8w3kpkav9p1dC68BsKSRfefz5ta2WMHd',
56+
],
57+
},
58+
59+
cosmos: {
60+
owners: [
61+
'cosmos1ruqrgv8wh4fqm24uyeuvmg8jwv737qv9vxl8q9',
62+
],
63+
},
64+
65+
solana: {
66+
owners: [
67+
'2QwUbEACJ3ppwfyH19QCSVvNrRzfuK5mNVNDsDMsZKMh',
68+
'DUru5ZfCdCnjPFuY7NPniV3hhZqNJLgn2sBZJGaMc2Sj',
69+
'CGRNicgpirZd3unSzn1Y34k7w31rQftTbaJwEuQu31XP',
70+
],
71+
},
72+
73+
bsc: {
74+
owners: [
75+
'0xc9f5296eb3ac266c94568d790b6e91eba7d76a11',
76+
'0xad6ec9801f04f45e7f6d907ec6b72246b66ff4f3',
77+
'0x278aa8f0d35c5582587c883ce6393542e54476a1',
78+
'0x8E7B542d93901560583C0c22D156eccA5191684d',
79+
'0xc48c74C4eDA47f915e8580391EC2F386F769D996',
80+
],
81+
},
82+
83+
stellar: {
84+
owners: [
85+
'GB3RMPTL47E4ULVANHBNCXSXM2ZA5JFY5ISDRERPCXNJUDEO73QFZUNK',
86+
],
87+
},
88+
89+
cardano: {
90+
owners: [
91+
'Ae2tdPwUPEYz3R9oSTPe1JBSfMbWSMtejQvdP31wqhWyXBFLcBiedk4esAe',
92+
'Ae2tdPwUPEYyjYzxV1MZpHZRh5DhfRRpgGUstspt1hHoo26P8p9cFcvibr1',
93+
'Ae2tdPwUPEZFH7gTGv9bTCiWWiid9ghExS2d4fT7s4FfN5kdRE4Wto6oAJW',
94+
],
95+
},
96+
97+
polygon: {
98+
owners: [
99+
'0xc9f5296eb3ac266c94568d790b6e91eba7d76a11',
100+
'0x8E7B542d93901560583C0c22D156eccA5191684d',
101+
'0xc48c74C4eDA47f915e8580391EC2F386F769D996',
102+
],
103+
},
104+
}
105+
106+
module.exports = cexExports(config)
107+
module.exports.methodology = 'Reserves include all addresses publicly disclosed here: https://blog.cex.io/wallet-address-list. External custodial wallets are excluded.'

0 commit comments

Comments
 (0)