diff --git a/src/API/api.js b/src/API/api.js index fe6a6f8..3f7ac1f 100644 --- a/src/API/api.js +++ b/src/API/api.js @@ -1,9 +1,10 @@ // @flow import axios from 'axios'; -import { BACKEND_URL } from '../manifestEnvs'; +import { BACKEND_URL, BACKEND_URL_DAEDALUS } from '../manifestEnvs'; -const backendUrl: string = BACKEND_URL; +const backendUrlAdapools: string = BACKEND_URL; +const backendUrlDaedalus: string = BACKEND_URL_DAEDALUS; export type HistBPE = {| +val: string, @@ -50,6 +51,19 @@ export type Pool = {| +saturation: number, |}; +// TODO: fix with right data +export type PoolDaedalusSimple = {| + +cost: string, + +margin: string, + +non_myopic_member_rewards: number, + +pledge: string, + +pool_id: string, + +pool_info: ?string, + +produced_blocks: number, + +relative_stake: string, + +saturation: string, +|}; + export type World = {| +epoch: string, +slot: string, @@ -65,33 +79,45 @@ export const Sorting = Object.freeze({ TICKER: 'ticker', SCORE: 'score', }); +export const Provider = Object.freeze({ + ADAPOOLS: 'adapools', + POOLTOOL: 'pooltool', + DAEDALUS_SIMPLE: 'daedalus_simple', + DAEDALUS_ADVANCED: 'daedalus_advanced', +}); export type SortingEnum = $Values; +export type ProviderEnum = $Values; export type SearchParams = {| limit?: number, search?: string, - sort?: SortingEnum + sort?: SortingEnum, +|}; +export type SearchParamsDaedalus = {| + search?: string, + limit: ?number, + offset: ?number, |}; export type ApiPoolsResponse = {| world?: World, pools?: {| [string]: Pool |}, |}; +export type ApiPoolsDaedalusSimpleResponse = Array; +const encodeForm = (data) => { + return (Object.keys(data): any) + .map((key) => `${encodeURIComponent(key)}=${encodeURIComponent(data[key])}`) + .join('&'); +}; export function getPools(body: SearchParams): Promise { const requestBody = { ...{ search: '', sort: Sorting.SCORE, limit: 250 }, ...body, - } + }; - const encodeForm = (data) => { - return (Object.keys(data): any) - .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(data[key])}`) - .join('&'); - } - - return axios(`${backendUrl}`, { + return axios(`${backendUrlAdapools}`, { headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, method: 'post', data: encodeForm(requestBody), @@ -103,8 +129,29 @@ export function getPools(body: SearchParams): Promise { .catch((error) => { console.error('API::getPools Error: ', error); return { - pools: {} - } + pools: {}, + }; + }); +} + +export function getPoolsByDaedalusSimple( + body: SearchParamsDaedalus, +): Promise { + const requestBody = { + search: '', + limit: 250, + offset: 0, + ...body, + }; + + return axios(backendUrlDaedalus, { + // TODO: fix when limit and offset works + method: 'get', + data: encodeForm(requestBody), + }) + .then((response) => response.data) + .catch((error) => { + console.error(`API daedalus: getPoolsByDaedalusSimple Error: ${error}`); }); } diff --git a/src/API/data.js b/src/API/data.js index e3ae542..33bb470 100644 --- a/src/API/data.js +++ b/src/API/data.js @@ -1,8 +1,8 @@ // @flow -import type { ApiPoolsResponse } from './api'; +import type { ApiPoolsResponse, ApiPoolsDaedalusSimpleResponse } from './api'; -export default ({ +const adapoolsResponse = ({ world: { epoch: '210', slot: '241680', @@ -59,7 +59,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '1': { id: '1b268f4cba3faa7e36d8a0cc4adca2096fb856119412ee7330f692b5', @@ -108,7 +108,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '2': { id: '00000036d515e12e18cd3c88c74f09a67984c2c279a5296aa96efe89', @@ -157,7 +157,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '3': { id: 'eaa778d97077ff7725fe4cbb70b514d840407a45a3c244ac05f6a83d', @@ -206,7 +206,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '4': { id: 'fcbfb4a3c18f890de7a51f68603b18e654f8b432abdda17c53a0d586', @@ -254,7 +254,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '5': { id: '6184f6e7229530a2d1f9f746112406100e2696dd7439ff8c52750700', @@ -302,7 +302,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '6': { id: '618ab17ec8ea7239b4ac0c826b667c599489e25524ce74841a29d510', @@ -351,7 +351,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '7': { id: 'c1cadab46b74defa9f79b59b617fe2a50bdbce6b367e472b6109a7bc', @@ -399,7 +399,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '8': { id: '91ab082852ea331c39eebae35a3e2a390ea26423d82a91c72a02fb85', @@ -447,7 +447,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '9': { id: 'fd832d27b5fbe0489409613f50e2139b54a21e613c8a7609dcff556e', @@ -495,7 +495,7 @@ export default ({ color_stake: 'hsl(70.90058712452,80%,80%)', color_fees: 'hsl(103.97795347187,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.32302249181499 + saturation: 0.32302249181499, }, '10': { id: 'bcd7cf751b59f949170a7e6599f9ac03e49b32c19f3f1d8dad3ac210', @@ -543,5754 +543,56 @@ export default ({ color_stake: 'hsl(75.232344880759,80%,80%)', color_fees: 'hsl(85.321510124674,80%,80%)', color_pledge: 'hsl(240,95%,95%)', - saturation: 0.29452408211082 + saturation: 0.29452408211082, }, - '11': { - id: '0c2e0c5a062389a3fd6fafddae26344d490866d7a34cad981b20f96b', - db_ticker: 'ACL', - db_name: 'A CardanoLand pool ACL', - pool_pic: null, - fullname: - ' [ACL] A CardanoLand pool ACL', - pledge: '750000000000', - pledge_real: '750040000000', - total_stake: '71039107902695', - total_size: 0.22832991568573, - tax_fix: '340000000', - tax_ratio: '0.01', - tax_computed: 1.8067795716517, - blocks_epoch: '0', - roa: '0', - hist_bpe: { - '0': { - val: '0', - time: '1596491229', - e: 208, - }, - '1': { - val: '0', - time: '1596923233', - e: 209, - }, - }, - hist_roa: {}, - score: 202.83868804581, - handles: { - tw: null, - tg: null, - fb: null, - yt: null, - tc: null, - di: null, - gh: null, - icon: null, - }, - last_rewards: '0', - position: 13, - color_roa: 'hsl(120,80%,80%)', - color_stake: 'hsl(62.027684679808,80%,80%)', - color_fees: 'hsl(110.66354824296,80%,80%)', - color_pledge: 'hsl(240,95%,95%)', - saturation: 0.3813968569951 - }, - '12': { - id: '94864d27407c1dd0569e4acb9c7fa6ec2cc19a6193d9171f2d811232', - db_ticker: 'STACK', - db_name: 'ADASTACK', - pool_pic: - 'https://a.adapools.org/proxy/?c=59f18e37bd9d46f22d7dd3094dd02e36&a=https://adastack.net/img/adastack64.png', - fullname: - ' [STACK] ADASTACK', - pledge: '1010000000000', - pledge_real: '1015319927770', - total_stake: '54282635804282', - total_size: 0.17447220302045, - tax_fix: '340000000', - tax_ratio: '0.02', - tax_computed: 2.8228995747506, - blocks_epoch: '0', - roa: '0', - hist_bpe: { - '0': { - val: '0', - time: '1596491230', - e: 208, - }, - '1': { - val: '0', - time: '1596923234', - e: 209, - }, - }, - hist_roa: {}, - score: 198.93297412085, - handles: { - tw: null, - tg: null, - fb: null, - yt: null, - tc: null, - di: null, - gh: null, - icon: 'https://adastack.net/img/adastack64.png', - }, - last_rewards: '0', - position: 14, - color_roa: 'hsl(120,80%,80%)', - color_stake: 'hsl(75.84433006697,80%,80%)', - color_fees: 'hsl(103.5243451627,80%,80%)', - color_pledge: 'hsl(240,95%,95%)', - saturation: 0.29049786329829 - }, - // "13": { - // "id": "04c60c78417132a195cbb74975346462410f72612952a7c4ade7e438", - // "db_ticker": "ADLT", - // "db_name": "AdaLite Stake Pool", - // "pool_pic": null, - // "fullname": " [ADLT] AdaLite Stake Pool", - // "pledge": "50000000000", - // "pledge_real": "50076870869", - // "total_stake": "128233583386560", - // "total_size": 0.4121611904648, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 198.13537099335, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 15 - // }, - // "14": { - // "id": "463e481957f266d93e4decbfb73003380ab17223e0e569f71c7a525a", - // "db_ticker": "1PCT0", - // "db_name": "1 Percent Pool #0", - // "pool_pic": null, - // "fullname": " [1PCT0] 1 Percent Pool #0", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "118251685830517", - // "total_size": 0.3800779352742, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 196.55605568259, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 16 - // }, - // "15": { - // "id": "95c4956f7a137f7fe9c72f2e831e6038744b6307d00143b2447e6443", - // "db_ticker": "LOVE", - // "db_name": "StakeLove", - // "pool_pic": null, - // "fullname": " [LOVE] StakeLove", - // "pledge": "500000000000", - // "pledge_real": "510126306419", - // "total_stake": "84745310442184", - // "total_size": 0.27238362303943, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 194.68285334383, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 17 - // }, - // "16": { - // "id": "fb21d3e5ed7684742936778239a7bed2bcee1292964ddeb716d3a903", - // "db_ticker": "DIGI2", - // "db_name": "Digital Fortress", - // "pool_pic": "https://a.adapools.org/proxy/?c=ddaf8b8616f1f99c3c8786889ff30805&a=https://digitalfortress.online/Rick64x64.png", - // "fullname": " [DIGI2] Digital Fortress", - // "pledge": "515000000000", - // "pledge_real": "515009400000", - // "total_stake": "79026593242173", - // "total_size": 0.2540028430063, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 191.28384011305, - // "handles": { - // "tw": "RichardMcCrackn", - // "tg": "DigitalFortressOnline", - // "fb": "", - // "yt": "digitalfortress", - // "tc": "", - // "di": "", - // "gh": null, - // "icon": "https://digitalfortress.online/Rick64x64.png" - // }, - // "last_rewards": "0", - // "position": 18 - // }, - // "17": { - // "id": "d248ded3c18e0e80d07a46f00a2d808075b989ccb1a0e40a76e5cee1", - // "db_ticker": "HRMS", - // "db_name": "Hermes Stakepool Germany #1", - // "pool_pic": "https://a.adapools.org/proxy/?c=e4696267f63644c2659c6ba5c848e93d&a=https://hermes-stakepool.com/meta/icon.png", - // "fullname": " [HRMS] Hermes Stakepool Germany #1", - // "pledge": "250000000000", - // "pledge_real": "250497400000", - // "total_stake": "99037890389050", - // "total_size": 0.31832203176311, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 190.02675969888, - // "handles": { - // "tw": "Wiiinnie", - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://hermes-stakepool.com/meta/icon.png" - // }, - // "last_rewards": "0", - // "position": 19 - // }, - // "18": { - // "id": "b62ecc8ce7e46c4443b63b91fffaeb19f869d191a7d2381087aaa768", - // "db_ticker": "STKH1", - // "db_name": "Stakhanovite #1", - // "pool_pic": null, - // "fullname": " [STKH1] Stakhanovite #1", - // "pledge": "425000000000", - // "pledge_real": "445601465581", - // "total_stake": "83454429389802", - // "total_size": 0.26823454557277, - // "tax_fix": "340000000", - // "tax_ratio": "0.019", - // "tax_computed": 2.7212803412391, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 189.80776790733, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 20 - // }, - // "19": { - // "id": "42c3740db23c3fc36cb9f63aa8070ec01417b4d22893463c8c8a21d4", - // "db_ticker": "ADAFR", - // "db_name": "ADAFR", - // "pool_pic": null, - // "fullname": " [ADAFR] ADAFR", - // "pledge": "3030000000000", - // "pledge_real": "3042713159402", - // "total_stake": "41865288625754", - // "total_size": 0.13456106226968, - // "tax_fix": "340000000", - // "tax_ratio": "0.0185", - // "tax_computed": 2.6704713272906, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 189.53359684637, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 21 - // }, - // "20": { - // "id": "31af0509d4376a8a55b40e952aea7f009c13cadf0338c57512ff42e9", - // "db_ticker": "SWIM", - // "db_name": "The Swimming Pool", - // "pool_pic": "https://a.adapools.org/proxy/?c=9dfec91983e1a1f8d4b6c159d6b8f11d&a=https://kficz.github.io/output-onlinepngtools.png", - // "fullname": " [SWIM] The Swimming Pool", - // "pledge": "425000000000", - // "pledge_real": "425000024347", - // "total_stake": "105189804131839", - // "total_size": 0.33809516782389, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 189.50704272608, - // "handles": { - // "tw": "theswimpool", - // "tg": "adaswim", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "", - // "gh": "kficz", - // "icon": "https://kficz.github.io/output-onlinepngtools.png" - // }, - // "last_rewards": "0", - // "position": 22 - // }, - // "21": { - // "id": "65ea43eab7c0143d6bb68f9d56c276bce09377bdc41e1a42ac9535ed", - // "db_ticker": "HOPE", - // "db_name": "hope", - // "pool_pic": null, - // "fullname": " [HOPE] hope", - // "pledge": "3000000000000", - // "pledge_real": "3000719795515", - // "total_stake": "40234930453017", - // "total_size": 0.12932085648573, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 188.12704692757, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 23 - // }, - // "22": { - // "id": "0001a003afb844ce6d9409fc49e049db654a78dc77f1151cb6cd548f", - // "db_ticker": "AHL", - // "db_name": "AHLNET #1 ", - // "pool_pic": null, - // "fullname": " [AHL] AHLNET #1 ", - // "pledge": "340000000000", - // "pledge_real": "345403088104", - // "total_stake": "88446254824338", - // "total_size": 0.28427899086826, - // "tax_fix": "475000000", - // "tax_ratio": "0.018", - // "tax_computed": 2.9487897060545, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 187.75345759472, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 24 - // }, - // "23": { - // "id": "64e09628015d1065e4a11f032c90f677ba1f2f583ff0f55a158450b0", - // "db_ticker": "1PCT4", - // "db_name": "1 Percent Pool #4", - // "pool_pic": null, - // "fullname": " [1PCT4] 1 Percent Pool #4", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "106649278631471", - // "total_size": 0.34278612889146, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 187.63112706794, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 25 - // }, - // "24": { - // "id": "0f292fcaa02b8b2f9b3c8f9fd8e0bb21abedb692a6d5058df3ef2735", - // "db_ticker": "NUTS", - // "db_name": "StakeNuts", - // "pool_pic": null, - // "fullname": " [NUTS] StakeNuts", - // "pledge": "510000000000", - // "pledge_real": "510497600000", - // "total_stake": "76269868528465", - // "total_size": 0.24514233306983, - // "tax_fix": "340000000", - // "tax_ratio": "0.049", - // "tax_computed": 5.7705567718054, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 186.89857286548, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 26 - // }, - // "25": { - // "id": "6198d2070b6e70cc2a5e370a43dd49699960c88a084ffe390abe9a6a", - // "db_ticker": "COOL", - // "db_name": "COOL", - // "pool_pic": null, - // "fullname": " [COOL] COOL", - // "pledge": "300000000000", - // "pledge_real": "300493582947", - // "total_stake": "88646829435998", - // "total_size": 0.28492366653384, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 185.36696922217, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 27 - // }, - // "26": { - // "id": "00beef9385526062d41cd7293746048c6a9a13ab8b591920cf40c706", - // "db_ticker": "BCSH1", - // "db_name": "Blue Cheese Stakehouse", - // "pool_pic": "https://a.adapools.org/proxy/?c=e1263ccdd41ed5bfa0f1640e14b199f7&a=https://bluecheesestakehouse.com/apple-icon-60x60.png", - // "fullname": " [BCSH1] Blue Cheese Stakehouse", - // "pledge": "1000000000000", - // "pledge_real": "1000010000000", - // "total_stake": "34112731466160", - // "total_size": 0.10964322792661, - // "tax_fix": "500000000", - // "tax_ratio": "0.0225", - // "tax_computed": 3.4707559378436, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 182.76980672843, - // "handles": { - // "tw": "amw7", - // "tg": "blue_cheese_stake_house", - // "fb": "", - // "yt": "andrewwestberg", - // "tc": "", - // "di": "", - // "gh": "AndrewWestberg", - // "icon": "https://bluecheesestakehouse.com/apple-icon-60x60.png" - // }, - // "last_rewards": "0", - // "position": 28 - // }, - // "27": { - // "id": "71a659c3e71b0ddd0cf9a67bdb3f7fd656934c4a995801ee0ea4c482", - // "db_ticker": "EKTRP", - // "db_name": "Ektropy", - // "pool_pic": null, - // "fullname": " [EKTRP] Ektropy", - // "pledge": "1000000000000", - // "pledge_real": "1000010000000", - // "total_stake": "30788905547188", - // "total_size": 0.098959973107695, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 181.87699392619, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 29 - // }, - // "28": { - // "id": "1d8988c2057d6efd6a094e468840a51942ab03b5b69b07a2bca71b53", - // "db_ticker": "1PCT5", - // "db_name": "1 Percent Pool #5", - // "pool_pic": null, - // "fullname": " [1PCT5] 1 Percent Pool #5", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "98836442164136", - // "total_size": 0.31767454817881, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 181.6212528623, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 30 - // }, - // "29": { - // "id": "660f20fb9d419173ac623786ad3e6dc11a23951981e0e83e98233d29", - // "db_ticker": "OCEAN", - // "db_name": "ADA Ocean Three", - // "pool_pic": "https://a.adapools.org/proxy/?c=6a56da86993724fcdc26e9a070f34e45&a=https://adaocean.com/images/extended-dolphin.png", - // "fullname": " [OCEAN] ADA Ocean Three", - // "pledge": "500000000000", - // "pledge_real": "501547052595", - // "total_stake": "60319582378813", - // "total_size": 0.1938758180581, - // "tax_fix": "340000000", - // "tax_ratio": "0.009", - // "tax_computed": 1.7051764112223, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 178.02783567504, - // "handles": { - // "tw": "ada_ocean", - // "tg": "ada_ocean", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://adaocean.com/images/extended-dolphin.png" - // }, - // "last_rewards": "0", - // "position": 31 - // }, - // "30": { - // "id": "cfff13497008842ab170eae18ecf43be7eb4fa51bdd503821ddaaf19", - // "db_ticker": "OCEAN", - // "db_name": "ADA Ocean Four", - // "pool_pic": "https://a.adapools.org/proxy/?c=6a56da86993724fcdc26e9a070f34e45&a=https://adaocean.com/images/extended-dolphin.png", - // "fullname": " [OCEAN] ADA Ocean Four", - // "pledge": "500000000000", - // "pledge_real": "501547052727", - // "total_stake": "59145156992790", - // "total_size": 0.19010104586168, - // "tax_fix": "340000000", - // "tax_ratio": "0.009", - // "tax_computed": 1.7051764112223, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 177.12443153195, - // "handles": { - // "tw": "ada_ocean", - // "tg": "ada_ocean", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://adaocean.com/images/extended-dolphin.png" - // }, - // "last_rewards": "0", - // "position": 32 - // }, - // "31": { - // "id": "d918835729aaab9d4dca82c60079a6c643d65141f909730ecfeb3aef", - // "db_ticker": "COOL2", - // "db_name": "COOL2", - // "pool_pic": null, - // "fullname": " [COOL2] COOL2", - // "pledge": "300000000000", - // "pledge_real": "300495428697", - // "total_stake": "76767810840077", - // "total_size": 0.24674279131577, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 176.22926260992, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 33 - // }, - // "32": { - // "id": "d2f12c2f3094ed0784f048fe93a62d8b061525b356e043be084470d9", - // "db_ticker": "TAPSY", - // "db_name": "TapTap Vienna", - // "pool_pic": null, - // "fullname": " [TAPSY] TapTap Vienna", - // "pledge": "1600000000000", - // "pledge_real": "1600278076515", - // "total_stake": "22397280116166", - // "total_size": 0.071988081375102, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 175.42189744078, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 34 - // }, - // "33": { - // "id": "a531c8c1fa9423ffa6eff3262c87ab4f18b8c290f71df6aca310a947", - // "db_ticker": "SPS", - // "db_name": "StakePool Service", - // "pool_pic": null, - // "fullname": " [SPS] StakePool Service", - // "pledge": "10000000000", - // "pledge_real": "10501932698", - // "total_stake": "104470101576220", - // "total_size": 0.3357819402413, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 175.1560590163, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 35 - // }, - // "34": { - // "id": "d0bc68eb83d85aace04d977e3bf370fb5625e445235be987429cf5c8", - // "db_ticker": "AZEN", - // "db_name": "Adaizen", - // "pool_pic": null, - // "fullname": " [AZEN] Adaizen", - // "pledge": "1000000000000", - // "pledge_real": "1000078383729", - // "total_stake": "20584361322955", - // "total_size": 0.06616109948555, - // "tax_fix": "340000000", - // "tax_ratio": "0.00618", - // "tax_computed": 1.4186641548408, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 174.41545993974, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 36 - // }, - // "35": { - // "id": "86c8a19e4d6227da12d7c9c63c5fd7a83bf227a92089778f7d9ec0f9", - // "db_ticker": "ZZZ3", - // "db_name": "ZZZ3", - // "pool_pic": null, - // "fullname": " [ZZZ3] ZZZ3", - // "pledge": "50000000000", - // "pledge_real": "54499445725", - // "total_stake": "98477917433016", - // "total_size": 0.31652219809948, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 173.21335326512, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 37 - // }, - // "36": { - // "id": "e2eed9f58a161573050ab9324252b4fcccbf9fe06e1a034b6f91d748", - // "db_ticker": "ADAST", - // "db_name": "AdaStrong", - // "pool_pic": null, - // "fullname": " [ADAST] AdaStrong", - // "pledge": "3000000000000", - // "pledge_real": "3002503396949", - // "total_stake": "24164197290405", - // "total_size": 0.077667207441413, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 172.71561982209, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 38 - // }, - // "37": { - // "id": "79c4d4fe108f480fee98f307adac12571df2959651f833b595141cd1", - // "db_ticker": "AZUR", - // "db_name": "AzureADA", - // "pool_pic": null, - // "fullname": " [AZUR] AzureADA", - // "pledge": "1600000000000", - // "pledge_real": "1603635486132", - // "total_stake": "19579674286216", - // "total_size": 0.062931890769931, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 172.23838833772, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 39 - // }, - // "38": { - // "id": "000022b3f0b748a43239c5024c58f852c05593cd0a77a798f0bb3a14", - // "db_ticker": "BUFFY", - // "db_name": "BUFFY Crypto2099 Corp", - // "pool_pic": null, - // "fullname": " [BUFFY] BUFFY Crypto2099 Corp", - // "pledge": "1100000000000", - // "pledge_real": "1100000000000", - // "total_stake": "20153759476061", - // "total_size": 0.064777083183852, - // "tax_fix": "340000000", - // "tax_ratio": "0.0258", - // "tax_computed": 3.4123228305753, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 172.09056907409, - // "handles": { - // "tw": "Crypto2099Corp", - // "tg": "Crypto2099", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": "Crypto2099", - // "icon": null - // }, - // "last_rewards": "0", - // "position": 40 - // }, - // "39": { - // "id": "c2c52eab0d713209b337d8ff8fe28e1ccae2f70eb7ed1ee27e8c866a", - // "db_ticker": "OCEAN", - // "db_name": "ADA Ocean Two", - // "pool_pic": "https://a.adapools.org/proxy/?c=6a56da86993724fcdc26e9a070f34e45&a=https://adaocean.com/images/extended-dolphin.png", - // "fullname": " [OCEAN] ADA Ocean Two", - // "pledge": "500000000000", - // "pledge_real": "501547052859", - // "total_stake": "51137025760617", - // "total_size": 0.16436175967094, - // "tax_fix": "340000000", - // "tax_ratio": "0.009", - // "tax_computed": 1.7051764112223, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 170.96433058412, - // "handles": { - // "tw": "ada_ocean", - // "tg": "ada_ocean", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://adaocean.com/images/extended-dolphin.png" - // }, - // "last_rewards": "0", - // "position": 41 - // }, - // "40": { - // "id": "83f09b0af923a095a1c17905e802a35d1044f974b25d2a755a2d8266", - // "db_ticker": "OCEAN", - // "db_name": "ADA Ocean Five", - // "pool_pic": "https://a.adapools.org/proxy/?c=6a56da86993724fcdc26e9a070f34e45&a=https://adaocean.com/images/extended-dolphin.png", - // "fullname": " [OCEAN] ADA Ocean Five", - // "pledge": "500000000000", - // "pledge_real": "506582846702", - // "total_stake": "50644532784310", - // "total_size": 0.16277881637286, - // "tax_fix": "340000000", - // "tax_ratio": "0.009", - // "tax_computed": 1.7051764112223, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 170.58548983312, - // "handles": { - // "tw": "ada_ocean", - // "tg": "ada_ocean", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://adaocean.com/images/extended-dolphin.png" - // }, - // "last_rewards": "0", - // "position": 42 - // }, - // "41": { - // "id": "80790f58f82501881d46bbb4f6b9d6536ac1a60fdd18350a0b7d50b0", - // "db_ticker": "ZZZ4", - // "db_name": "ZZZ4", - // "pool_pic": null, - // "fullname": " [ZZZ4] ZZZ4", - // "pledge": "50000000000", - // "pledge_real": "54499445725", - // "total_stake": "94686190776210", - // "total_size": 0.30433504297588, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 170.29664045219, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 43 - // }, - // "42": { - // "id": "0014cda8c1c48b64d542ae26e8b65d9e1953c0d5562ee620d6900f4c", - // "db_ticker": "CROWN", - // "db_name": "CROWN Stake Pool", - // "pool_pic": null, - // "fullname": " [CROWN] CROWN Stake Pool", - // "pledge": "1000000000000", - // "pledge_real": "1000100000000", - // "total_stake": "16588856243754", - // "total_size": 0.053318971187634, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 169.93775907429, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 44 - // }, - // "43": { - // "id": "4511bcca3896bcb6d43b66fb89fe079f00f44bed505c9ca232704dc9", - // "db_ticker": "SKY", - // "db_name": "SkyLightPool.com", - // "pool_pic": null, - // "fullname": " [SKY] SkyLightPool.com", - // "pledge": "250000000000", - // "pledge_real": "251171256457", - // "total_stake": "76801708538238", - // "total_size": 0.24685174339571, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 169.87267975632, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 45 - // }, - // "44": { - // "id": "aef742cd720083790f58b8dced44b868e2496335061c2c5256b44e45", - // "db_ticker": "ZZZ2", - // "db_name": "ZZZ2", - // "pool_pic": null, - // "fullname": " [ZZZ2] ZZZ2", - // "pledge": "50000000000", - // "pledge_real": "54499445461", - // "total_stake": "93478759965689", - // "total_size": 0.30045418659547, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 169.36784752102, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 46 - // }, - // "45": { - // "id": "87021d7881cff6817040033a3c6b0246d11421c198e69195e60a7000", - // "db_ticker": "1PCT", - // "db_name": "1 Percent Pool", - // "pool_pic": null, - // "fullname": " [1PCT] 1 Percent Pool", - // "pledge": "111000000000", - // "pledge_real": "111017421085", - // "total_stake": "82274929970985", - // "total_size": 0.26444346470477, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 168.88162809834, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 47 - // }, - // "46": { - // "id": "bbfb301cad22e7a62f6fea6e3c93aec4e6f714aef66b0a828e792f12", - // "db_ticker": "W4ADA", - // "db_name": "Whales4ADA", - // "pool_pic": "https://a.adapools.org/proxy/?c=3df9c89dfb32300c120ade94df9efc23&a=https://staking4ada.org/wp-content/uploads/4ADA/W4ADA_64x64.png", - // "fullname": " [W4ADA] Whales4ADA", - // "pledge": "2000000000000", - // "pledge_real": "2000021556006", - // "total_stake": "17574672639272", - // "total_size": 0.056487526946788, - // "tax_fix": "340000000", - // "tax_ratio": "0.04", - // "tax_computed": 4.8556218744959, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 168.66335707879, - // "handles": { - // "tw": "Staking4ADA", - // "tg": "Staking4ADA", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "C5WnSv8", - // "gh": "", - // "icon": "https://staking4ada.org/wp-content/uploads/4ADA/W4ADA_64x64.png" - // }, - // "last_rewards": "0", - // "position": 49 - // }, - // "47": { - // "id": "f83cb7810af45813ad4e16f2497a0d02997e2987f4a41fa3830a4d88", - // "db_ticker": "LEO", - // "db_name": "LEOPool", - // "pool_pic": null, - // "fullname": " [LEO] LEOPool", - // "pledge": 0, - // "pledge_real": "207639694", - // "total_stake": "116719526519363", - // "total_size": 0.37515335476269, - // "tax_fix": "340000000", - // "tax_ratio": "0.2", - // "tax_computed": 21.140585202212, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 168.64366596653, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 50 - // }, - // "48": { - // "id": "5271fc86fd9c25613c138c4aef6f8593b2952c95897b079facebbc9e", - // "db_ticker": "RDLRT", - // "db_name": "RDLRT", - // "pool_pic": null, - // "fullname": " [RDLRT] RDLRT", - // "pledge": "60000000000", - // "pledge_real": "115025775565", - // "total_stake": "87733723665056", - // "total_size": 0.2819888131855, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 168.6645801676, - // "handles": { - // "tw": null, - // "tg": "rdlrtpool", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": "rdlrt", - // "icon": null - // }, - // "last_rewards": "0", - // "position": 48 - // }, - // "49": { - // "id": "f8328a36320b8719b07da68f3b28f019feb5907ac26a42420d3680b3", - // "db_ticker": "GAGA", - // "db_name": "GAGA Pool", - // "pool_pic": null, - // "fullname": " [GAGA] GAGA Pool", - // "pledge": 0, - // "pledge_real": "107640178", - // "total_stake": "95100963928896", - // "total_size": 0.30566818357657, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 167.28236339016, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 51 - // }, - // "50": { - // "id": "6ec027701fa6c9f4a593f7e7108cb2f5af54361080f7bed1c835349d", - // "db_ticker": "BNTY1", - // "db_name": "Cryptobounty1", - // "pool_pic": null, - // "fullname": " [BNTY1] Cryptobounty1", - // "pledge": "1100000000000", - // "pledge_real": "1103882236136", - // "total_stake": "13564137215665", - // "total_size": 0.043597088959009, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 166.59477137471, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 52 - // }, - // "51": { - // "id": "5bb951ce3ad7ab55800546b43e1223caf3a3d542f4e7bab08f0525d0", - // "db_ticker": "HRBR", - // "db_name": "The Harbour", - // "pool_pic": null, - // "fullname": " [HRBR] The Harbour", - // "pledge": "940000000000", - // "pledge_real": "940597616902", - // "total_stake": "10004074529392", - // "total_size": 0.032154535174324, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 165.88866237403, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 53 - // }, - // "52": { - // "id": "ca6475b755a0a31d8cf77b9d42520ff8b5274bd9a5712aed95ac14ad", - // "db_ticker": "ABBA", - // "db_name": "ABBA - because Staking is like Good Music !", - // "pool_pic": null, - // "fullname": " [ABBA] ABBA - because Staking is like Good Music !", - // "pledge": "2000000000000", - // "pledge_real": "2001239822073", - // "total_stake": "10184745595298", - // "total_size": 0.032735237979625, - // "tax_fix": "340000000", - // "tax_ratio": "0.012", - // "tax_computed": 2.0099907139583, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 165.82442897473, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 54 - // }, - // "53": { - // "id": "56b76df4f3653a6faf62f6f6838045cf9f3dde69a1eee353de526ee4", - // "db_ticker": "NAP", - // "db_name": "NAP-Nekota ADA Pool", - // "pool_pic": null, - // "fullname": " [NAP] NAP-Nekota ADA Pool", - // "pledge": "300000000000", - // "pledge_real": "301503222097", - // "total_stake": "64109545947957", - // "total_size": 0.20605730636423, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 165.47585501493, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 55 - // }, - // "54": { - // "id": "00beef284975ef87856c1343f6bf50172253177fdebc756524d43fc1", - // "db_ticker": "BCSH2", - // "db_name": "Blue Cheese Stakehouse", - // "pool_pic": "https://a.adapools.org/proxy/?c=e1263ccdd41ed5bfa0f1640e14b199f7&a=https://bluecheesestakehouse.com/apple-icon-60x60.png", - // "fullname": " [BCSH2] Blue Cheese Stakehouse", - // "pledge": "7467739000000", - // "pledge_real": "7467739000000", - // "total_stake": "14811528249766", - // "total_size": 0.047606383248481, - // "tax_fix": "500000000", - // "tax_ratio": "0.05", - // "tax_computed": 6.2877165660892, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 165.10576670296, - // "handles": { - // "tw": "amw7", - // "tg": "blue_cheese_stake_house", - // "fb": "", - // "yt": "andrewwestberg", - // "tc": "", - // "di": "", - // "gh": "AndrewWestberg", - // "icon": "https://bluecheesestakehouse.com/apple-icon-60x60.png" - // }, - // "last_rewards": "0", - // "position": 56 - // }, - // "55": { - // "id": "bdd750e173f3d606c1af13b8661da7c0b5fa43121741c593cceec822", - // "db_ticker": "ACL", - // "db_name": "A CardanoLand pool ACL", - // "pool_pic": null, - // "fullname": " [ACL] A CardanoLand pool ACL", - // "pledge": "750000000000", - // "pledge_real": "752062551119", - // "total_stake": "21891109220584", - // "total_size": 0.070361175276153, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 165.03253521341, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 57 - // }, - // "56": { - // "id": "7e53c234d29f6037c5e5f82dfdc8a6edf816cc406d0a3a3412cdeab7", - // "db_ticker": "F4ADA", - // "db_name": "Friends4ADA", - // "pool_pic": "https://a.adapools.org/proxy/?c=d11625a5ee8385891908e9faedf969f6&a=https://staking4ada.org/wp-content/uploads/4ADA/F4ADA_64x64.png", - // "fullname": " [F4ADA] Friends4ADA", - // "pledge": "1050000000000", - // "pledge_real": "1050015556006", - // "total_stake": "10058725788436", - // "total_size": 0.032330192185484, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.89830104607, - // "handles": { - // "tw": "Staking4ADA", - // "tg": "Staking4ADA", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "C5WnSv8", - // "gh": "", - // "icon": "https://staking4ada.org/wp-content/uploads/4ADA/F4ADA_64x64.png" - // }, - // "last_rewards": "0", - // "position": 58 - // }, - // "57": { - // "id": "6b5180a258275c671690c94c704f074190e90ea900ed565b4c29abe8", - // "db_ticker": "1PCT8", - // "db_name": "1 Percent Pool #8", - // "pool_pic": null, - // "fullname": " [1PCT8] 1 Percent Pool #8", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "75712265051884", - // "total_size": 0.24335011525414, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.83342431441, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 59 - // }, - // "58": { - // "id": "2f73a35c508608125faf8404c2bcce942ea7dcd9c1a41c009385d3d7", - // "db_ticker": "GENE", - // "db_name": "genePool One", - // "pool_pic": null, - // "fullname": " [GENE] genePool One", - // "pledge": "1000000000000", - // "pledge_real": "1000201438547", - // "total_stake": "8078687163498", - // "total_size": 0.025966063107373, - // "tax_fix": "340000000", - // "tax_ratio": "0.018", - // "tax_computed": 2.6196627152074, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.59471202594, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 60 - // }, - // "59": { - // "id": "e455088c9164ae075f0300bc1a7234c30433556c6b88d4301a06cfe5", - // "db_ticker": "LEO4", - // "db_name": "LEO4 Pool", - // "pool_pic": null, - // "fullname": " [LEO4] LEO4 Pool", - // "pledge": 0, - // "pledge_real": "207640178", - // "total_stake": "110087489596012", - // "total_size": 0.35383703370742, - // "tax_fix": "340000000", - // "tax_ratio": "0.2", - // "tax_computed": 21.140585202212, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.54209910241, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 61 - // }, - // "60": { - // "id": "c4a4b16b33b63da2117f4a84d3ea686f34fcf9f4603ce016af9e39aa", - // "db_ticker": "LEO2", - // "db_name": "LEO2 Pool", - // "pool_pic": null, - // "fullname": " [LEO2] LEO2 Pool", - // "pledge": 0, - // "pledge_real": "107640178", - // "total_stake": "110000115465745", - // "total_size": 0.35355620067917, - // "tax_fix": "340000000", - // "tax_ratio": "0.2", - // "tax_computed": 21.140585202212, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.47488823298, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 62 - // }, - // "61": { - // "id": "20b95f87c93f3be9e5094c8fbdb924f9ab8b5e1c7bfb542d3a8bc7fc", - // "db_ticker": "LEO3", - // "db_name": "LEO3 Pool", - // "pool_pic": null, - // "fullname": " [LEO3] LEO3 Pool", - // "pledge": 0, - // "pledge_real": "107640178", - // "total_stake": "110000115120047", - // "total_size": 0.35355619956804, - // "tax_fix": "340000000", - // "tax_ratio": "0.2", - // "tax_computed": 21.140585202212, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.47488796706, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 63 - // }, - // "62": { - // "id": "3116c834a09b0060aef7284f63d3275456364e3309b3c19ec328af60", - // "db_ticker": "ADV", - // "db_name": "ADAvault", - // "pool_pic": null, - // "fullname": " [ADV] ADAvault", - // "pledge": "1250000030000", - // "pledge_real": "1250000430668", - // "total_stake": "6731441798977", - // "total_size": 0.02163582263039, - // "tax_fix": "340000000", - // "tax_ratio": "0.0099", - // "tax_computed": 1.7966191832882, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.38141296977, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 64 - // }, - // "63": { - // "id": "6b6164af70861c5537cc9c8e50fdae35139ca2c8c6fbb42e8b7e6bfb", - // "db_ticker": "SCAN", - // "db_name": "AdaScan Pool", - // "pool_pic": null, - // "fullname": " [SCAN] AdaScan Pool", - // "pledge": "3300000000000", - // "pledge_real": "3300495600000", - // "total_stake": "11612451797136", - // "total_size": 0.037324091166467, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 163.06043098111, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 65 - // }, - // "64": { - // "id": "f76e3a1104a9d816a67d5826a155c9e2979a839d0d944346d47e33ab", - // "db_ticker": "ST3AK", - // "db_name": "Steak.and.ADA", - // "pool_pic": null, - // "fullname": " [ST3AK] Steak.and.ADA", - // "pledge": "1412388000000", - // "pledge_real": "1635548322754", - // "total_stake": "6518822237182", - // "total_size": 0.020952432761752, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 162.19157906924, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 66 - // }, - // "65": { - // "id": "ea595c6f726db925b6832af51795fd8a46e700874c735d204f7c5841", - // "db_ticker": "ENDVR", - // "db_name": "Endeavor ENDVR", - // "pool_pic": "https://a.adapools.org/proxy/?c=351f4d7b79b5a33f21621a89f4d04bdd&a=https://intlx.s3.us-east-2.amazonaws.com/poolIcon64x64.png", - // "fullname": " [ENDVR] Endeavor ENDVR", - // "pledge": "1000000000000", - // "pledge_real": "1000003151176", - // "total_stake": "6029915476205", - // "total_size": 0.019381016075819, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 161.81549694541, - // "handles": { - // "tw": "endeavor_ENDVR", - // "tg": "endeavorstakepools", - // "fb": "", - // "yt": "endeavorstakepools", - // "tc": "", - // "di": "XFfMM7p", - // "gh": null, - // "icon": "https://intlx.s3.us-east-2.amazonaws.com/poolIcon64x64.png" - // }, - // "last_rewards": "0", - // "position": 67 - // }, - // "66": { - // "id": "881e3af880ac65f96cbf9b85d3f054f72aa7bb9c77fe365bbf36f4c7", - // "db_ticker": "D360", - // "db_name": "DApp360", - // "pool_pic": "https://a.adapools.org/proxy/?c=12f825c8ab8736ad7f05156115c8659a&a=http://dapp360.co/D360-logo64x64.png", - // "fullname": " [D360] DApp360", - // "pledge": "1600000000000", - // "pledge_real": "1600034894468", - // "total_stake": "7193932664868", - // "total_size": 0.023122334828135, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 161.69461402794, - // "handles": { - // "tw": "dapp360", - // "tg": "dapp360pool", - // "fb": "dapp360", - // "yt": "", - // "tc": "", - // "di": "", - // "gh": null, - // "icon": "http://dapp360.co/D360-logo64x64.png" - // }, - // "last_rewards": "0", - // "position": 68 - // }, - // "67": { - // "id": "54f5f2618a3da4bb0b384895d8f3922189acbb8e9637201ebb26bc18", - // "db_ticker": "MANT", - // "db_name": "MantisPool 1% Network", - // "pool_pic": null, - // "fullname": " [MANT] MantisPool 1% Network", - // "pledge": "1000000000000", - // "pledge_real": "1085496665669", - // "total_stake": "4070448533820", - // "total_size": 0.013083007345803, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 161.32433468513, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 69 - // }, - // "68": { - // "id": "398964318c3664acd3a17d6d0f29a74b6d9a8200cde2f875629906b9", - // "db_ticker": "TQWS", - // "db_name": "TeqWyse Stake Pool", - // "pool_pic": "https://a.adapools.org/proxy/?c=cfacf50e64b38b410a8b0a2aa8c5e5a2&a=http://teqwyse.com/images/TeqWyse-logo64x64.png", - // "fullname": " [TQWS] TeqWyse Stake Pool", - // "pledge": "1015000000000", - // "pledge_real": "1015113374145", - // "total_stake": "6440661874770", - // "total_size": 0.020701214109288, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 161.11517495864, - // "handles": { - // "tw": "teqwyse", - // "tg": "teqwysestakepool", - // "fb": "teqwyse", - // "yt": "", - // "tc": "", - // "di": "", - // "gh": null, - // "icon": "http://teqwyse.com/images/TeqWyse-logo64x64.png" - // }, - // "last_rewards": "0", - // "position": 70 - // }, - // "69": { - // "id": "e00ff546b17eb7ed726411edc74eccdad9d176d0d338c21a3d8daf34", - // "db_ticker": "PLTUS", - // "db_name": " Plutus Staking ", - // "pool_pic": null, - // "fullname": " [PLTUS] Plutus Staking ", - // "pledge": "1000000000000", - // "pledge_real": "1000128653422", - // "total_stake": "4732223153678", - // "total_size": 0.015210046206737, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 160.81727208192, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 71 - // }, - // "70": { - // "id": "6d9ce533e4874ff84f89a0f1d2f8a26c0838898ba16fcf66aa790c9e", - // "db_ticker": "TRUE", - // "db_name": "TRUE", - // "pool_pic": null, - // "fullname": " [TRUE] TRUE", - // "pledge": "1333999000000", - // "pledge_real": "1336999128103", - // "total_stake": "4897502869523", - // "total_size": 0.015741278998049, - // "tax_fix": "340000000", - // "tax_ratio": "0.025", - // "tax_computed": 3.3310198558406, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 160.43629004379, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 72 - // }, - // "71": { - // "id": "3dc5218de6bf5a29ad6203d9da31b7128c414872e53b8f09767764d4", - // "db_ticker": "USA01", - // "db_name": "United Stakes of Cardano", - // "pool_pic": null, - // "fullname": " [USA01] United Stakes of Cardano", - // "pledge": "1200000000000", - // "pledge_real": "1200028831566", - // "total_stake": "5209077916880", - // "total_size": 0.016742726037477, - // "tax_fix": "340000000", - // "tax_ratio": "0.035", - // "tax_computed": 4.3473810009438, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 159.65960201204, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 73 - // }, - // "72": { - // "id": "000000f66e28b0f18aef20555f4c4954234e3270dfbbdcc13f54e799", - // "db_ticker": "TITAN", - // "db_name": "TITANstaking", - // "pool_pic": "https://a.adapools.org/proxy/?c=4132e5183c5000d7dc26616256861be5&a=https://www.titanstaking.io/img/logo-64.png", - // "fullname": " [TITAN] TITANstaking", - // "pledge": "1020000000000", - // "pledge_real": "1020016927530", - // "total_stake": "5801367022039", - // "total_size": 0.018646428454852, - // "tax_fix": "340000000", - // "tax_ratio": "0.04", - // "tax_computed": 4.8556218744959, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 159.60696814246, - // "handles": { - // "tw": "titanstaking", - // "tg": "titanstakingio", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "", - // "gh": null, - // "icon": "https://www.titanstaking.io/img/logo-64.png" - // }, - // "last_rewards": "0", - // "position": 74 - // }, - // "73": { - // "id": "abacadaba9f12a8b5382fc370e4e7e69421fb59831bb4ecca3a11d9b", - // "db_ticker": "SMAUG", - // "db_name": "SM₳UG", - // "pool_pic": null, - // "fullname": " [SMAUG] SM₳UG", - // "pledge": "1052000000000", - // "pledge_real": "1054591505786", - // "total_stake": "2879920041500", - // "total_size": 0.0092564774484224, - // "tax_fix": "340000000", - // "tax_ratio": "0.0199", - // "tax_computed": 2.8127375790617, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 159.40258552978, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 76 - // }, - // "74": { - // "id": "a10865dae2d543ee9f13e98bff70ea81565bb6e4343b15b765f78174", - // "db_ticker": "SECUR", - // "db_name": "SecureStaking.io", - // "pool_pic": "https://a.adapools.org/proxy/?c=c0d325f999ce290e5b849f1d21b04076&a=https://cardano.securestaking.io/img/favicon.png", - // "fullname": " [SECUR] SecureStaking.io", - // "pledge": "560000000000", - // "pledge_real": "561995642598", - // "total_stake": "50394865955613", - // "total_size": 0.16197635125711, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 159.37072232312, - // "handles": { - // "tw": null, - // "tg": "joinchat/MLVgN1NIbh-9nsbsxu9OWA", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://cardano.securestaking.io/img/favicon.png" - // }, - // "last_rewards": "0", - // "position": 77 - // }, - // "75": { - // "id": "bca52a1ea803c93025fa43e3aed7af82c3b2bfb01b530b07b0048c9a", - // "db_ticker": "SAGE", - // "db_name": "SAGE Cardano Staking", - // "pool_pic": "https://a.adapools.org/proxy/?c=d8ee57aa4992b66f7e66959c728eb56f&a=https://www.ianesthesia.org/SAGE_Cardano64x64.png", - // "fullname": " [SAGE] SAGE Cardano Staking", - // "pledge": "1600000000000", - // "pledge_real": "1601484059254", - // "total_stake": "4467523434855", - // "total_size": 0.014359263218813, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 159.5973761587, - // "handles": { - // "tw": "SAGE_Cardano", - // "tg": "SAGE_Cardano", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "", - // "gh": null, - // "icon": "https://www.ianesthesia.org/SAGE_Cardano64x64.png" - // }, - // "last_rewards": "0", - // "position": 75 - // }, - // "76": { - // "id": "ff069b3ecf738d4adfe83f7c20c64b82f94f7285ee41eedb2bfd297b", - // "db_ticker": "TNTM", - // "db_name": "TANTUM", - // "pool_pic": null, - // "fullname": " [TNTM] TANTUM", - // "pledge": "1400000000000", - // "pledge_real": "1401097216644", - // "total_stake": "2439256680701", - // "total_size": 0.0078401219931308, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 159.0534517181, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 78 - // }, - // "77": { - // "id": "3bc296e50585d6de57d7c49ae55b06b8bc3d04519705991f766c98b9", - // "db_ticker": "SOLO", - // "db_name": "SOLO", - // "pool_pic": null, - // "fullname": " [SOLO] SOLO", - // "pledge": "3100000000000", - // "pledge_real": "3100082268476", - // "total_stake": "3680366471254", - // "total_size": 0.011829227461936, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923239", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 158.99187080209, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 79 - // }, - // "78": { - // "id": "828194edf77d6a55b5d0bf9da43bdb996676c5d538b9387ccde8be94", - // "db_ticker": "KAZE", - // "db_name": "Kaze", - // "pool_pic": null, - // "fullname": " [KAZE] Kaze", - // "pledge": "1000000000000", - // "pledge_real": "1040001573974", - // "total_stake": "1327740657598", - // "total_size": 0.0042675495421074, - // "tax_fix": "340000000", - // "tax_ratio": "0.01337", - // "tax_computed": 2.1491940565904, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491234", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923237", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 158.87214491079, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 80 - // }, - // "79": { - // "id": "17a6a1f2fb36d9ef275805db17409af7ab753b9d27bdd41b89510bb9", - // "db_ticker": "1PCT2", - // "db_name": "1 Percent Pool #2", - // "pool_pic": null, - // "fullname": " [1PCT2] 1 Percent Pool #2", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "68770108423731", - // "total_size": 0.22103702483985, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 158.49330383122, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 81 - // }, - // "80": { - // "id": "46ebbc0d27d9169cae12d12dcf8f6cacbcf27937c67ae4350abbcaba", - // "db_ticker": "ALTZ", - // "db_name": "ALTZ", - // "pool_pic": null, - // "fullname": " [ALTZ] ALTZ", - // "pledge": "1000000000000", - // "pledge_real": "1010192132647", - // "total_stake": "1558745087187", - // "total_size": 0.0050100310215108, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 158.3761351077, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 82 - // }, - // "81": { - // "id": "8be06c73a6ba898ae2f0d1f1594321ab3c24dd0d0717bd3e686b1658", - // "db_ticker": "TIM", - // "db_name": "timsahabutdinov", - // "pool_pic": "https://a.adapools.org/proxy/?c=e1a18b3059b81cfea64c74e9cd90306a&a=https://timsahabutdinov.com/timlogo.png", - // "fullname": " [TIM] timsahabutdinov", - // "pledge": "2900000000000", - // "pledge_real": "2901248574850", - // "total_stake": "3806677713721", - // "total_size": 0.012235209972051, - // "tax_fix": "340000000", - // "tax_ratio": "0.04", - // "tax_computed": 4.8556218744959, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 158.07259175144, - // "handles": { - // "tw": "timsahabutdinov", - // "tg": "timsahabutdinov", - // "fb": "", - // "yt": "timsahabutdinov", - // "tc": "", - // "di": "", - // "gh": null, - // "icon": "https://timsahabutdinov.com/timlogo.png" - // }, - // "last_rewards": "0", - // "position": 83 - // }, - // "82": { - // "id": "5977a2ca8bbb156c964b2def041bfd456a2f64615415cb6023e3aee0", - // "db_ticker": "CEMA1", - // "db_name": "Centimani Stake Pool", - // "pool_pic": null, - // "fullname": " [CEMA1] Centimani Stake Pool", - // "pledge": "1000000000000", - // "pledge_real": "1000000000000", - // "total_stake": "4330710608618", - // "total_size": 0.013919527107231, - // "tax_fix": "500000000", - // "tax_ratio": "0.04", - // "tax_computed": 5.2631578947368, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 158.06815795805, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 84 - // }, - // "83": { - // "id": "90f35b86d1bb85f15f559a612b5f3a406af7ea04530f65807950177f", - // "db_ticker": "THETA", - // "db_name": "Theta Staking Pool", - // "pool_pic": null, - // "fullname": " [THETA] Theta Staking Pool", - // "pledge": "1033736000000", - // "pledge_real": "1034231621214", - // "total_stake": "2430667236335", - // "total_size": 0.0078125142828741, - // "tax_fix": "340000000", - // "tax_ratio": "0.032", - // "tax_computed": 4.0424557742012, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.82728825375, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 87 - // }, - // "84": { - // "id": "b59366e330a6db8260ad9aae8446ba8c908931d1b9cb3cca5d1d84aa", - // "db_ticker": "1PCT9", - // "db_name": "1 Percent Pool #9", - // "pool_pic": null, - // "fullname": " [1PCT9] 1 Percent Pool #9", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "67350211745714", - // "total_size": 0.2164732725864, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.40107561736, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 90 - // }, - // "85": { - // "id": "cd29aa2b5003b8833a7bcf36b2fef2a4b96b7d07632249dbd432cac8", - // "db_ticker": "CHEAP", - // "db_name": "CheapStaking", - // "pool_pic": null, - // "fullname": " [CHEAP] CheapStaking", - // "pledge": "200000000000", - // "pledge_real": "201006976833", - // "total_stake": "60920933604359", - // "total_size": 0.19580864743449, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.37269037732, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 91 - // }, - // "86": { - // "id": "2d8020dd75f88a07870ad2633639e843853644c9bdd9b53bf6363358", - // "db_ticker": "LOOP", - // "db_name": "Loop Pool", - // "pool_pic": null, - // "fullname": " [LOOP] Loop Pool", - // "pledge": "900000000000", - // "pledge_real": "900997279740", - // "total_stake": "1558523298759", - // "total_size": 0.0050093181615867, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.35968374632, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 92 - // }, - // "87": { - // "id": "643808a16d63204df62860a87c5ec7e551ca11af8b8e15a6d08ad667", - // "db_ticker": "AJG10", - // "db_name": "AJG10", - // "pool_pic": null, - // "fullname": " [AJG10] AJG10", - // "pledge": "1000000000000", - // "pledge_real": "1000002647130", - // "total_stake": "1454697299085", - // "total_size": 0.0046756064575487, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.27981759272, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 93 - // }, - // "88": { - // "id": "699c814b5a0f3bf2d35b9b0adcfed9fa0fe891881a9ad3c15e2edf73", - // "db_ticker": "APOP", - // "db_name": "ADAPOP", - // "pool_pic": null, - // "fullname": " [APOP] ADAPOP", - // "pledge": "2100000000000", - // "pledge_real": "2107169672668", - // "total_stake": "2769364892207", - // "total_size": 0.0089011372891502, - // "tax_fix": "340000000", - // "tax_ratio": "0.04", - // "tax_computed": 4.8556218744959, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.27465881182, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 94 - // }, - // "89": { - // "id": "c65ca06828caa8fc9b0bb015af93ef71685544c6ed2abbb7c59b0e62", - // "db_ticker": "ARRA1", - // "db_name": "Arrakis", - // "pool_pic": null, - // "fullname": " [ARRA1] Arrakis", - // "pledge": "1400000000000", - // "pledge_real": "1403735956113", - // "total_stake": "2722718314883", - // "total_size": 0.0087512084769528, - // "tax_fix": "340000000", - // "tax_ratio": "0.04", - // "tax_computed": 4.8556218744959, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.23877682926, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 95 - // }, - // "90": { - // "id": "4f04025065314e75684cd38357ac6af703fcef705d9b4f638e3caf46", - // "db_ticker": "247", - // "db_name": "Staking 24/7", - // "pool_pic": null, - // "fullname": " [247] Staking 24/7", - // "pledge": "1700000000000", - // "pledge_real": "1709001461873", - // "total_stake": "3048141936640", - // "total_size": 0.0097971668273828, - // "tax_fix": "340000000", - // "tax_ratio": "0.035", - // "tax_computed": 4.3473810009438, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.9973435657, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 85 - // }, - // "91": { - // "id": "cdb10209d937fc1559c635e35b9147febde5307b4a7d276f868775cd", - // "db_ticker": "ADALO", - // "db_name": "ADALovelacePool", - // "pool_pic": null, - // "fullname": " [ADALO] ADALovelacePool", - // "pledge": "1000000000000", - // "pledge_real": "1000007413352", - // "total_stake": "18797638672727", - // "total_size": 0.060418315769302, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.8808197943, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 86 - // }, - // "92": { - // "id": "c0b86026e65261a0698e789fc2e0b1cf36c85693dbf1cd516067400d", - // "db_ticker": "DOOM", - // "db_name": "The DOOM Pool", - // "pool_pic": null, - // "fullname": " [DOOM] The DOOM Pool", - // "pledge": "2198000000000", - // "pledge_real": "2198497427553", - // "total_stake": "3252138197616", - // "total_size": 0.010452840166252, - // "tax_fix": "340000000", - // "tax_ratio": "0.04", - // "tax_computed": 4.8556218744959, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.6460228929, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 88 - // }, - // "93": { - // "id": "224d7939df10e8de9d57f7a443c676e0c972f9f9268440b4e5493402", - // "db_ticker": "ADMNT", - // "db_name": "ADAMANT - 'In code we trust'", - // "pool_pic": "https://a.adapools.org/proxy/?c=190d5a6a9b86cedef3cd8a05508caf53&a=https://adamantpool.files.wordpress.com/2020/08/adamant-pool-logo.jpg?w=500", - // "fullname": " [ADMNT] ADAMANT - 'In code we trust'", - // "pledge": "1000000000000", - // "pledge_real": "1000001819187", - // "total_stake": "1054701782477", - // "total_size": 0.0033899633057952, - // "tax_fix": "340000000", - // "tax_ratio": "0.025", - // "tax_computed": 3.3310198558406, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 157.4802892076, - // "handles": { - // "tw": "", - // "tg": "", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "", - // "gh": "", - // "icon": "https://adamantpool.files.wordpress.com/2020/08/adamant-pool-logo.jpg?w=500" - // }, - // "last_rewards": "0", - // "position": 89 - // }, - // "94": { - // "id": "28e31e89ea8a27199c2a3469703df2534d83b1df9be7d98709e3307f", - // "db_ticker": "BULL", - // "db_name": "Crypto Stakehouse", - // "pool_pic": null, - // "fullname": " [BULL] Crypto Stakehouse", - // "pledge": "3500000000000", - // "pledge_real": "3500407649286", - // "total_stake": "3513738630369", - // "total_size": 0.011293661602744, - // "tax_fix": "345000000", - // "tax_ratio": "0.0499", - // "tax_computed": 5.8749899016474, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": {}, - // "hist_roa": {}, - // "score": 156.82788596787, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 96 - // }, - // "95": { - // "id": "40183423c226189d508db4b21bf94b790cf4d096134a9afbc2bd5318", - // "db_ticker": "SAND", - // "db_name": "Sandstone", - // "pool_pic": null, - // "fullname": " [SAND] Sandstone", - // "pledge": "810000000000", - // "pledge_real": "914266738375", - // "total_stake": "6109052197870", - // "total_size": 0.019635372887424, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 155.87637134669, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 97 - // }, - // "96": { - // "id": "2a46b8dba635aac1d4d174fbd0cd7c7f3ef6c330e7bce483bd76297a", - // "db_ticker": "AGAPE", - // "db_name": "agapepool", - // "pool_pic": null, - // "fullname": " [AGAPE] agapepool", - // "pledge": "1250000000000", - // "pledge_real": "1250498274944", - // "total_stake": "1997836433608", - // "total_size": 0.0064213337963706, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923237", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 155.66457300917, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 98 - // }, - // "97": { - // "id": "a631b46315b1567ef0ce2b2ad4cb63faac09f32ceba6716a7e331e5e", - // "db_ticker": "4ADA", - // "db_name": "Staking4ADA.org", - // "pool_pic": "https://a.adapools.org/proxy/?c=9ba87dd01752cf63fb989eb181e92770&a=https://staking4ada.org/wp-content/uploads/4ADA/4ADA_64x64.png", - // "fullname": " [4ADA] Staking4ADA.org", - // "pledge": "200000000000", - // "pledge_real": "204770970794", - // "total_stake": "58697712370777", - // "total_size": 0.18866289445699, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 155.66252019764, - // "handles": { - // "tw": "Staking4ADA", - // "tg": "Staking4ADA", - // "fb": "", - // "yt": "", - // "tc": "", - // "di": "C5WnSv8", - // "gh": "", - // "icon": "https://staking4ada.org/wp-content/uploads/4ADA/4ADA_64x64.png" - // }, - // "last_rewards": "0", - // "position": 99 - // }, - // "98": { - // "id": "81857936f8c1fcaa8936e2eb23429f39bdc6cd0904f1d5d64cfbe14b", - // "db_ticker": "ZAZA", - // "db_name": "ZAZA Cocktail Pool", - // "pool_pic": null, - // "fullname": " [ZAZA] ZAZA Cocktail Pool", - // "pledge": "826000000000", - // "pledge_real": "826590342563", - // "total_stake": "1953561699769", - // "total_size": 0.0062790284304542, - // "tax_fix": "340000000", - // "tax_ratio": "0.008", - // "tax_computed": 1.6035748578915, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491235", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923237", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 154.96583157783, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 100 - // }, - // "99": { - // "id": "cdae4a1a08974113e77ea332cb1da97d9e3fca5cf797f9394739214b", - // "db_ticker": "SOBIT", - // "db_name": "Outofbits Staking", - // "pool_pic": "https://a.adapools.org/proxy/?c=f3cf28a7b576c77b40cf9444f8d29f8a&a=https://meta.staking.outofbits.com/logo/64.png", - // "fullname": " [SOBIT] Outofbits Staking", - // "pledge": "200000000000", - // "pledge_real": "201203211120", - // "total_stake": "55566677332335", - // "total_size": 0.17859929727168, - // "tax_fix": "380000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.9025429845571, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 154.17438829673, - // "handles": { - // "tw": "sobitada", - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": "https://discord.gg/4b7WPas", - // "gh": null, - // "icon": "https://meta.staking.outofbits.com/logo/64.png" - // }, - // "last_rewards": "0", - // "position": 101 - // }, - // "100": { - // "id": "fc88e862f18afc8ea5eaee720b003cb71f3405df2a76faafdca43f43", - // "db_ticker": "NGINE", - // "db_name": "BlockNgine", - // "pool_pic": null, - // "fullname": " [NGINE] BlockNgine", - // "pledge": "1155000000000", - // "pledge_real": "1191812838726", - // "total_stake": "13424696165753", - // "total_size": 0.043148905358321, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491234", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923237", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 154.12351734187, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 102 - // }, - // "101": { - // "id": "32ae538b59a19834504e8b22dff0f703572d7ee1d0e2ea233e1b300c", - // "db_ticker": "KTN4", - // "db_name": "KTN4", - // "pool_pic": null, - // "fullname": " [KTN4] KTN4", - // "pledge": "50000000000", - // "pledge_real": "54499445593", - // "total_stake": "73139015842191", - // "total_size": 0.23507932199063, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 153.72189050295, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 103 - // }, - // "102": { - // "id": "0b38a13726b9dc3aa11be08af93003e775d9d62091765e0e1e3d027b", - // "db_ticker": "KTN3", - // "db_name": "KTN3", - // "pool_pic": null, - // "fullname": " [KTN3] KTN3", - // "pledge": "50000000000", - // "pledge_real": "54499445857", - // "total_stake": "72748638216690", - // "total_size": 0.23382459212496, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 153.42160002179, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 104 - // }, - // "103": { - // "id": "1b5f8eb4c3de5274fca5cab708ac8b100feaed5db8fbdc9923b8663d", - // "db_ticker": "PROM", - // "db_name": "Prometheus Pool", - // "pool_pic": null, - // "fullname": " [PROM] Prometheus Pool", - // "pledge": "800000000000", - // "pledge_real": "803487448541", - // "total_stake": "2865488452527", - // "total_size": 0.0092100922446846, - // "tax_fix": "340000000", - // "tax_ratio": "0.025", - // "tax_computed": 3.3310198558406, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 152.20653536405, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 105 - // }, - // "104": { - // "id": "e75ff353a1a2e454d3fe59249f87dad63b4270b16caf4b819bae5f69", - // "db_ticker": "1PCT6", - // "db_name": "1 Percent Pool #6", - // "pool_pic": null, - // "fullname": " [1PCT6] 1 Percent Pool #6", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "59370343736852", - // "total_size": 0.1908248284626, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 151.26271561054, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 106 - // }, - // "105": { - // "id": "68f2b85350421ffa24b8fb7c2b4acbb865ce4b67c1c4edf71e77089a", - // "db_ticker": "METS", - // "db_name": "METS_MAINNET", - // "pool_pic": null, - // "fullname": " [METS] METS_MAINNET", - // "pledge": "815260000000", - // "pledge_real": "829926032795", - // "total_stake": "843508905248", - // "total_size": 0.0027111590066594, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 151.16033934105, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 107 - // }, - // "106": { - // "id": "33c1bf1a04ba85d8fd6119a08ee7f4ad659add075e2208b28862a2a1", - // "db_ticker": "P2P", - // "db_name": "P2P Validator", - // "pool_pic": null, - // "fullname": " [P2P] P2P Validator", - // "pledge": "7000000000000", - // "pledge_real": "7000213213822", - // "total_stake": "7301004305472", - // "total_size": 0.023466478489186, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": {}, - // "hist_roa": {}, - // "score": 149.84121534167, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 108 - // }, - // "107": { - // "id": "52e22df52e90370f639c99f5c760f0cd67d7f871cd0d0764fae47cd9", - // "db_ticker": "NORTH", - // "db_name": "Nordic Pool", - // "pool_pic": "https://a.adapools.org/proxy/?c=6a428cc4e4b830eff32154766b5dde47&a=https://www.osterlindh.com/nordic/logos/64x64.png", - // "fullname": " [NORTH] Nordic Pool", - // "pledge": "1001000000000", - // "pledge_real": "1001244045936", - // "total_stake": "6754982224130", - // "total_size": 0.021711484944417, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 149.45938171836, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://www.osterlindh.com/nordic/logos/64x64.png" - // }, - // "last_rewards": "0", - // "position": 110 - // }, - // "108": { - // "id": "654d96593e499e70889eeae16a15ad8682f8349fd1b77726bbbf8a6d", - // "db_ticker": "DIVY", - // "db_name": "DISCOVERY", - // "pool_pic": "https://a.adapools.org/proxy/?c=36270bf821baea6885a963a29df5d74f&a=https://raw.githubusercontent.com/julienadatrain/ada-train/master/discovery_icon.png", - // "fullname": " [DIVY] DISCOVERY", - // "pledge": "2046000000000", - // "pledge_real": "2046380643801", - // "total_stake": "6631775654731", - // "total_size": 0.021315481300321, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923237", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 149.37322327822, - // "handles": { - // "tw": "bumpydetour", - // "tg": "BP_Jay", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://raw.githubusercontent.com/julienadatrain/ada-train/master/discovery_icon.png" - // }, - // "last_rewards": "0", - // "position": 111 - // }, - // "109": { - // "id": "40d04c1367c25e6da2521f906f71bbb07858dc1d2209025364369173", - // "db_ticker": "THOR", - // "db_name": "THOR - The Viking Pool", - // "pool_pic": null, - // "fullname": " [THOR] THOR - The Viking Pool", - // "pledge": "777000000000", - // "pledge_real": "778000000000", - // "total_stake": "1055992289335", - // "total_size": 0.0033941111805473, - // "tax_fix": "340000000", - // "tax_ratio": "0.025", - // "tax_computed": 3.3310198558406, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": {}, - // "hist_roa": {}, - // "score": 149.28128190519, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 112 - // }, - // "110": { - // "id": "df6d366e0d659557f7ce38f1f6015fe5022b15fac72e5c3bd28bc5ed", - // "db_ticker": "HEL", - // "db_name": "CardanoAtStake", - // "pool_pic": null, - // "fullname": " [HEL] CardanoAtStake", - // "pledge": "600000000000", - // "pledge_real": "893213335686", - // "total_stake": "16271220522702", - // "total_size": 0.052298044270789, - // "tax_fix": "340000000", - // "tax_ratio": "0.025", - // "tax_computed": 3.3310198558406, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 149.18530362316, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 113 - // }, - // "111": { - // "id": "844540411ea37a35689620b02570eec2a0e403c1207c92c1b7a4dfa0", - // "db_ticker": "1PCT1", - // "db_name": "1 Percent Pool #1", - // "pool_pic": null, - // "fullname": " [1PCT1] 1 Percent Pool #1", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "56643769024587", - // "total_size": 0.18206122496951, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 149.16535044726, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 114 - // }, - // "112": { - // "id": "ce19882fd62e79faa113fcaef93950a4f0a5913b20a0689911b6f62d", - // "db_ticker": "ADLT2", - // "db_name": "AdaLite Stake Pool 2", - // "pool_pic": null, - // "fullname": " [ADLT2] AdaLite Stake Pool 2", - // "pledge": "50000000000", - // "pledge_real": "50016870825", - // "total_stake": "65329685909955", - // "total_size": 0.2099790117864, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596923238", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 149.7477575498, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 109 - // }, - // "113": { - // "id": "edffe7d318ed16e6a77bfbed0e1b4fd2cecdf33be15909a6282d77bf", - // "db_ticker": "POLY", - // "db_name": "POLYPool", - // "pool_pic": "https://a.adapools.org/proxy/?c=ec041e765bc61ecd3a715692bcf99f8e&a=https://polypool.io/images/PP-BlueLogo_icon.png", - // "fullname": " [POLY] POLYPool", - // "pledge": "1200000000000", - // "pledge_real": "1200000000000", - // "total_stake": "6038551771230", - // "total_size": 0.019408774370836, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 148.95838140164, - // "handles": { - // "tw": "Max_PolyPool", - // "tg": "polypool", - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "https://polypool.io/images/PP-BlueLogo_icon.png" - // }, - // "last_rewards": "0", - // "position": 115 - // }, - // "114": { - // "id": "c73186434c6fc6676bd67304d34518fc6fd7d5eaddaf78641b1e7dcf", - // "db_ticker": "ADAGO", - // "db_name": "ADAGO POOL", - // "pool_pic": null, - // "fullname": " [ADAGO] ADAGO POOL", - // "pledge": "500000000000", - // "pledge_real": "500002623678", - // "total_stake": "22505762779091", - // "total_size": 0.072336760264946, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 148.83867897637, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 116 - // }, - // "115": { - // "id": "32de28d12fdc3465d06783aeb6a8d826c0665aaad9d36a00e99b8f79", - // "db_ticker": "AYE", - // "db_name": "AYE", - // "pool_pic": null, - // "fullname": " [AYE] AYE", - // "pledge": "700000000000", - // "pledge_real": "700396426380", - // "total_stake": "3997572762005", - // "total_size": 0.012848774127998, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 147.93494306579, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 117 - // }, - // "116": { - // "id": "153806dbcd134ddee69a8c5204e38ac80448f62342f8c23cfe4b7edf", - // "db_ticker": "OCTAS", - // "db_name": "OctasPool", - // "pool_pic": "https://a.adapools.org/proxy/?c=72610ae632cd0d43c19c3ddae13b0070&a=http://octaluso.dyndns.org/images/octalus_64x64.png", - // "fullname": " [OCTAS] OctasPool", - // "pledge": "450000000000", - // "pledge_real": "450118441985", - // "total_stake": "26292045703376", - // "total_size": 0.084506418448837, - // "tax_fix": "340000000", - // "tax_ratio": "0.015", - // "tax_computed": 2.3148194816101, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923231", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 147.90983105945, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": "http://octaluso.dyndns.org/images/octalus_64x64.png" - // }, - // "last_rewards": "0", - // "position": 118 - // }, - // "117": { - // "id": "de6ae3b38810974103a98d993405cd1767e2f7e85a083879f930dfb9", - // "db_ticker": "RAI", - // "db_name": "Rai Pool", - // "pool_pic": null, - // "fullname": " [RAI] Rai Pool", - // "pledge": "750000000000", - // "pledge_real": "750007447881", - // "total_stake": "926768789996", - // "total_size": 0.0029787682577574, - // "tax_fix": "340000000", - // "tax_ratio": "0.025", - // "tax_computed": 3.3310198558406, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 147.38187921339, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 119 - // }, - // "118": { - // "id": "78380abbe8bb86cddda2c79190294125c594630e9535d32907b99f89", - // "db_ticker": "SPS2", - // "db_name": "StakePool Service No.2", - // "pool_pic": null, - // "fullname": " [SPS2] StakePool Service No.2", - // "pledge": "10000000000", - // "pledge_real": "10052230900", - // "total_stake": "67610584210836", - // "total_size": 0.21731014715822, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 146.80258411986, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 120 - // }, - // "119": { - // "id": "fc4697dcf0d25ae3a2ac21c08f25d173a4793771ba1ee738989b2473", - // "db_ticker": "WALL", - // "db_name": "WALL STREET Staking", - // "pool_pic": null, - // "fullname": " [WALL] WALL STREET Staking", - // "pledge": "1000000000000", - // "pledge_real": "1000596946780", - // "total_stake": "2688832126776", - // "total_size": 0.0086422933919833, - // "tax_fix": "340000000", - // "tax_ratio": "0.001", - // "tax_computed": 0.89240898012991, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 146.52356675007, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 121 - // }, - // "120": { - // "id": "2b0217f1b7d017ca35856ba10eec105acde17a65dfd4ecb75e93c2db", - // "db_ticker": "GIGA", - // "db_name": "GIGA POS Pool", - // "pool_pic": null, - // "fullname": " [GIGA] GIGA POS Pool", - // "pledge": "711886000000", - // "pledge_real": "712496624470", - // "total_stake": "2305580114297", - // "total_size": 0.0074104662719752, - // "tax_fix": "340000000", - // "tax_ratio": "0.023", - // "tax_computed": 3.1277669205455, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 146.10482291097, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 122 - // }, - // "121": { - // "id": "00beef0a9be2f6d897ed24a613cf547bb20cd282a04edfc53d477114", - // "db_ticker": "BCSH", - // "db_name": "Blue Cheese Stakehouse", - // "pool_pic": "https://a.adapools.org/proxy/?c=e1263ccdd41ed5bfa0f1640e14b199f7&a=https://bluecheesestakehouse.com/apple-icon-60x60.png", - // "fullname": " [BCSH] Blue Cheese Stakehouse", - // "pledge": "250495000000", - // "pledge_real": "250495086563", - // "total_stake": "41741870570391", - // "total_size": 0.13416437887926, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 145.98589829991, - // "handles": { - // "tw": "amw7", - // "tg": "blue_cheese_stake_house", - // "fb": "", - // "yt": "andrewwestberg", - // "tc": "", - // "di": "", - // "gh": "AndrewWestberg", - // "icon": "https://bluecheesestakehouse.com/apple-icon-60x60.png" - // }, - // "last_rewards": "0", - // "position": 123 - // }, - // "122": { - // "id": "e6e1f4291b1e6a29c8f7818a6572bdbd50971d1c657725de72466365", - // "db_ticker": "SPRTA", - // "db_name": "Sparta Stake Pool", - // "pool_pic": null, - // "fullname": " [SPRTA] Sparta Stake Pool", - // "pledge": "705000000000", - // "pledge_real": "706955059455", - // "total_stake": "1598654753575", - // "total_size": 0.0051383064324844, - // "tax_fix": "340000000", - // "tax_ratio": "0.015", - // "tax_computed": 2.3148194816101, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 145.91491494422, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 124 - // }, - // "123": { - // "id": "5630759483a1cdc1e5d9b425e8b0fe35b7a833103ca269acb1136827", - // "db_ticker": "CBOT", - // "db_name": "Cardano Robot Stake Pool", - // "pool_pic": null, - // "fullname": " [CBOT] Cardano Robot Stake Pool", - // "pledge": "900000000000", - // "pledge_real": "900690082889", - // "total_stake": "1399784163750", - // "total_size": 0.0044991077383044, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": {}, - // "hist_roa": {}, - // "score": 145.71448796984, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 125 - // }, - // "124": { - // "id": "c1ede3cc9133209466774d4826044e408db13d6fe6df751a73500f16", - // "db_ticker": "ZEN", - // "db_name": "ZENITH", - // "pool_pic": null, - // "fullname": " [ZEN] ZENITH", - // "pledge": "501000000000", - // "pledge_real": "501097624250", - // "total_stake": "19288493070216", - // "total_size": 0.061995992439259, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 145.41440278695, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 126 - // }, - // "125": { - // "id": "06b4d54e25e33f3adfa22098749005f7b610721e3c24d547450267ec", - // "db_ticker": "KTN2", - // "db_name": "KTN2", - // "pool_pic": null, - // "fullname": " [KTN2] KTN2", - // "pledge": "50000000000", - // "pledge_real": "54499445857", - // "total_stake": "62165826603589", - // "total_size": 0.1998099126804, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 145.28097570402, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 127 - // }, - // "126": { - // "id": "71efddeabf5dd8211853a5ed30548391ccb54fa3b55e5828db9afee6", - // "db_ticker": "1PCT7", - // "db_name": "1 Percent Pool #7", - // "pool_pic": null, - // "fullname": " [1PCT7] 1 Percent Pool #7", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "51377472408404", - // "total_size": 0.16513458979841, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 145.1143530502, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 128 - // }, - // "127": { - // "id": "4d639577c4f2907b1db017c7e6e8f1e1c94a3663b558b3db4d4c0315", - // "db_ticker": "POD", - // "db_name": "Pool of Destiny", - // "pool_pic": null, - // "fullname": " [POD] Pool of Destiny", - // "pledge": "649100000000", - // "pledge_real": "649807827515", - // "total_stake": "4306940825088", - // "total_size": 0.013843127602373, - // "tax_fix": "340000000", - // "tax_ratio": "0.009", - // "tax_computed": 1.7051764112223, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 144.88118832602, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 129 - // }, - // "128": { - // "id": "b40683f4baad755ff60f26dc73c3e371ac4c5e422feef2fc1f5f29bf", - // "db_ticker": "QUEEN", - // "db_name": "Queen Ada", - // "pool_pic": null, - // "fullname": " [QUEEN] Queen Ada", - // "pledge": "633333000000", - // "pledge_real": "634834174292", - // "total_stake": "7575752085047", - // "total_size": 0.024349557390334, - // "tax_fix": "340000000", - // "tax_ratio": "0.027", - // "tax_computed": 3.5342792219706, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 144.51542238191, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 130 - // }, - // "129": { - // "id": "56f78c5478524496790461eefd4d9380f71dfb231358736902648dfe", - // "db_ticker": "1PCT3", - // "db_name": "1 Percent Pool #3", - // "pool_pic": null, - // "fullname": " [1PCT3] 1 Percent Pool #3", - // "pledge": "111000000000", - // "pledge_real": "111017420997", - // "total_stake": "50588537019824", - // "total_size": 0.16259883792773, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 144.50747967437, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 131 - // }, - // "130": { - // "id": "8ba11724b0b39f34223d166a752da604269db13562095d6386a14bb3", - // "db_ticker": "8BALL", - // "db_name": "8BALL", - // "pool_pic": null, - // "fullname": " [8BALL] 8BALL", - // "pledge": "700000000000", - // "pledge_real": "704025000000", - // "total_stake": "974880912785", - // "total_size": 0.0031334075439788, - // "tax_fix": "340000000", - // "tax_ratio": "0.028", - // "tax_computed": 3.6359113166941, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491232", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 143.78066374442, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 132 - // }, - // "131": { - // "id": "2e65f9aa580a28d0df07dd2773c09da9604c40127b158919da9db85d", - // "db_ticker": "POP", - // "db_name": "POP", - // "pool_pic": null, - // "fullname": " [POP] POP", - // "pledge": "50000000000", - // "pledge_real": "54497271732", - // "total_stake": "60142526231282", - // "total_size": 0.19330673412066, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 143.72459080225, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 133 - // }, - // "132": { - // "id": "566eb6f2974a521c8105d1d0b08313933d7726515c2e6c38ff447cb0", - // "db_ticker": "ATOM", - // "db_name": "Atom Stake Pool", - // "pool_pic": null, - // "fullname": " [ATOM] Atom Stake Pool", - // "pledge": "672000000000", - // "pledge_real": "674125427817", - // "total_stake": "1348447128429", - // "total_size": 0.004334103119124, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 141.99808669222, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 134 - // }, - // "133": { - // "id": "ee9ef63e4d50a24ecba269de1bfe71c9b36e6f7e4534d2919f1df4c3", - // "db_ticker": "POP3", - // "db_name": "POP3", - // "pool_pic": null, - // "fullname": " [POP3] POP3", - // "pledge": "50000000000", - // "pledge_real": "54499445505", - // "total_stake": "56544930972725", - // "total_size": 0.18174354524753, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 140.95720983413, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 135 - // }, - // "134": { - // "id": "9ffd5ceefaf338459f086690ebca63c2cc81841f1b4429cabf8fef49", - // "db_ticker": "KTN", - // "db_name": "KTN", - // "pool_pic": null, - // "fullname": " [KTN] KTN", - // "pledge": "50000000000", - // "pledge_real": "54499445681", - // "total_stake": "56489095670590", - // "total_size": 0.18156408255149, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 140.91425960172, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 136 - // }, - // "135": { - // "id": "f1b265f1e545da9c6e003c5d703fb5a23283c646cd40b2d619671e7f", - // "db_ticker": "ONYX", - // "db_name": "ONYX Stake Pool #1", - // "pool_pic": null, - // "fullname": " [ONYX] ONYX Stake Pool #1", - // "pledge": "500000000000", - // "pledge_real": "500000000000", - // "total_stake": "11836248036789", - // "total_size": 0.038043404486121, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 140.63135994383, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 138 - // }, - // "136": { - // "id": "e56066e8cf0409ecb3f25aaac5cc97099af29e7a79609c6fe4d61e5d", - // "db_ticker": "SCAR", - // "db_name": "SCARdano", - // "pool_pic": null, - // "fullname": " [SCAR] SCARdano", - // "pledge": "150000000000", - // "pledge_real": "150016437893", - // "total_stake": "43457598751897", - // "total_size": 0.13967897615658, - // "tax_fix": "340000000", - // "tax_ratio": "0.0199", - // "tax_computed": 2.8127375790617, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 140.61618453778, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 139 - // }, - // "137": { - // "id": "00beef8710427e328a29555283c74b202b40bec9a62630a9f03b1e18", - // "db_ticker": "BCSH0", - // "db_name": "Blue Cheese Stakehouse", - // "pool_pic": "https://a.adapools.org/proxy/?c=e1263ccdd41ed5bfa0f1640e14b199f7&a=https://bluecheesestakehouse.com/apple-icon-60x60.png", - // "fullname": " [BCSH0] Blue Cheese Stakehouse", - // "pledge": "250495000000", - // "pledge_real": "250495257564", - // "total_stake": "34899376546424", - // "total_size": 0.11217161841678, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491227", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 140.7224413584, - // "handles": { - // "tw": "amw7", - // "tg": "blue_cheese_stake_house", - // "fb": "", - // "yt": "andrewwestberg", - // "tc": "", - // "di": "", - // "gh": "AndrewWestberg", - // "icon": "https://bluecheesestakehouse.com/apple-icon-60x60.png" - // }, - // "last_rewards": "0", - // "position": 137 - // }, - // "138": { - // "id": "ffcd73fdf73a0a8b8a3318afe9b599654d58b276f2a70cec5bf168c3", - // "db_ticker": "JP4", - // "db_name": "JAPAN4", - // "pool_pic": null, - // "fullname": " [JP4] JAPAN4", - // "pledge": "50000000000", - // "pledge_real": "54499445769", - // "total_stake": "55351012932949", - // "total_size": 0.17790612085685, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 140.03881134199, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 140 - // }, - // "139": { - // "id": "89eba2781e5cd11ccda6be56503702a39e9941e522f04cd5bba22957", - // "db_ticker": "BSP", - // "db_name": "The Brothership Pool", - // "pool_pic": null, - // "fullname": " [BSP] The Brothership Pool", - // "pledge": "368000000000", - // "pledge_real": "375846751747", - // "total_stake": "22389517495036", - // "total_size": 0.07196313119371, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 139.94925952709, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 141 - // }, - // "140": { - // "id": "b9e907a4fab56f0c640d08cafd34f929593a901cae5cd5475d97cc17", - // "db_ticker": "FRD", - // "db_name": "FreeDOM", - // "pool_pic": null, - // "fullname": " [FRD] FreeDOM", - // "pledge": "600000000000", - // "pledge_real": "600497222760", - // "total_stake": "1721527412094", - // "total_size": 0.0055332368389607, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 139.51747228381, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 142 - // }, - // "141": { - // "id": "ab30718787e719f54a703a220ffffb3d794b2769b0e96795824cbe43", - // "db_ticker": "RADAR", - // "db_name": "rADAr Stake Pool", - // "pool_pic": null, - // "fullname": " [RADAR] rADAr Stake Pool", - // "pledge": "633000000000", - // "pledge_real": "633166630293", - // "total_stake": "1052189805885", - // "total_size": 0.0033818894515424, - // "tax_fix": "340000000", - // "tax_ratio": "0.029", - // "tax_computed": 3.7375450192408, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491233", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923236", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 139.27183175452, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 143 - // }, - // "142": { - // "id": "0ec6869e13bb1f39c8be3611e7cc00ba1ec2a22d7e4b197cec9aa2e3", - // "db_ticker": "CALM", - // "db_name": "CALM", - // "pool_pic": null, - // "fullname": " [CALM] CALM", - // "pledge": "200000000000", - // "pledge_real": "200497617694", - // "total_stake": "37112623044796", - // "total_size": 0.1192853111599, - // "tax_fix": "500000000", - // "tax_ratio": "0.015", - // "tax_computed": 2.702807884649, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 139.1786970216, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 144 - // }, - // "143": { - // "id": "32cfd0c41c8ab66ecf56edf3001a96cdabf7515ca5c01508306a216c", - // "db_ticker": "AKIBA", - // "db_name": "Akiba Stake Pool", - // "pool_pic": null, - // "fullname": " [AKIBA] Akiba Stake Pool", - // "pledge": "633330000000", - // "pledge_real": "634405624470", - // "total_stake": "818124052883", - // "total_size": 0.0026295684381498, - // "tax_fix": "340000000", - // "tax_ratio": "0.03", - // "tax_computed": 3.8391803296487, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491229", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923233", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 139.01214586488, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 145 - // }, - // "144": { - // "id": "2f09336a66c36d0df40dc42f2454fe4f4311c23d312e3683be434081", - // "db_ticker": "JAPAN", - // "db_name": "JAPAN", - // "pool_pic": null, - // "fullname": " [JAPAN] JAPAN", - // "pledge": "50000000000", - // "pledge_real": "54499445461", - // "total_stake": "53710325672602", - // "total_size": 0.17263271589892, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 138.77674421865, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 146 - // }, - // "145": { - // "id": "2bfa5943dfb17ecd8e681e7ce568e22ac45340a417bdde358e3f5159", - // "db_ticker": "307", - // "db_name": "307 North America", - // "pool_pic": null, - // "fullname": " [307] 307 North America", - // "pledge": "700000000000", - // "pledge_real": "700079921296", - // "total_stake": "8739656033542", - // "total_size": 0.028090512172454, - // "tax_fix": "340000000", - // "tax_ratio": "0", - // "tax_computed": 0.79082028221428, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 138.72605337995, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 147 - // }, - // "146": { - // "id": "89af15a1c2b8e379aa8ca6d4d9b0134e373122f84f6f45fac2e26c47", - // "db_ticker": "ADAVN", - // "db_name": "ADA Vietnam", - // "pool_pic": "https://a.adapools.org/proxy/?c=c36e4860e86c2b71ac787ce7f39c90cb&a=https://adavn.stakings.club/resources/images/logo.svg", - // "fullname": " [ADAVN] ADA Vietnam", - // "pledge": "500000000000", - // "pledge_real": "500009809473", - // "total_stake": "9984095079979", - // "total_size": 0.032090318348767, - // "tax_fix": "340000000", - // "tax_ratio": "0.02", - // "tax_computed": 2.8228995747506, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491230", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923234", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 138.19050689703, - // "handles": { - // "tw": "adavietnam", - // "tg": "adavn", - // "fb": "adavietnam", - // "yt": null, - // "tc": "", - // "di": "", - // "gh": "adavn", - // "icon": "https://adavn.stakings.club/resources/images/logo.svg" - // }, - // "last_rewards": "0", - // "position": 148 - // }, - // "147": { - // "id": "4690a6bcbfc9eedd4d8595c9d665cd9b8ebe3e6d82ebf0120d7bc7c5", - // "db_ticker": "ONYX", - // "db_name": "ONYX Stake Pool #2", - // "pool_pic": null, - // "fullname": " [ONYX] ONYX Stake Pool #2", - // "pledge": "500000000000", - // "pledge_real": "500000000000", - // "total_stake": "8195018426930", - // "total_size": 0.0263399685287, - // "tax_fix": "340000000", - // "tax_ratio": "0.01", - // "tax_computed": 1.8067795716517, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491231", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923235", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 137.83041409009, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 149 - // }, - // "148": { - // "id": "fb4b7b76ea6d857f442cb9569d186f328fc846bb83222c3150ec3346", - // "db_ticker": "KOPI", - // "db_name": "KOPI Singapore", - // "pool_pic": null, - // "fullname": " [KOPI] KOPI Singapore", - // "pledge": "400000000000", - // "pledge_real": "400497616858", - // "total_stake": "16147273321409", - // "total_size": 0.051899660129205, - // "tax_fix": "340000000", - // "tax_ratio": "0.008", - // "tax_computed": 1.6035748578915, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 137.48407128678, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 151 - // }, - // "149": { - // "id": "b3cc3005f1dccbc88230eb66d6e99c2f1bfa32273044473e17d9e10b", - // "db_ticker": "JP2", - // "db_name": "JAPAN2", - // "pool_pic": null, - // "fullname": " [JP2] JAPAN2", - // "pledge": "50000000000", - // "pledge_real": "54499445505", - // "total_stake": "51942946843492", - // "total_size": 0.16695210600741, - // "tax_fix": "340000000", - // "tax_ratio": "0.05", - // "tax_computed": 5.872224247454, - // "blocks_epoch": "0", - // "roa": "0", - // "hist_bpe": { - // "0": { - // "val": "0", - // "time": "1596491228", - // "e": 208 - // }, - // "1": { - // "val": "0", - // "time": "1596923232", - // "e": 209 - // } - // }, - // "hist_roa": {}, - // "score": 137.41722204241, - // "handles": { - // "tw": null, - // "tg": null, - // "fb": null, - // "yt": null, - // "tc": null, - // "di": null, - // "gh": null, - // "icon": null - // }, - // "last_rewards": "0", - // "position": 152 - // } }, }: ApiPoolsResponse); + +const daedalusSimpleResponse = ([ + { + pool_id: 'pool1qqqqqdk4zhsjuxxd8jyvwncf5eucfskz0xjjj64fdmlgj735lr9', + cost: '340000000', + margin: '2', + pledge: '2500000000000', + saturation: '0.9946577315889965', + non_myopic_member_rewards: 678, + produced_blocks: 2747, + relative_stake: '0.2', + pool_info: null, + }, + { + pool_id: 'pool1ekcsyzwexl7p2kwxxh34hy28l6772vrmff7jwmuxsa6u6fzty9z', + cost: '340000000', + margin: '0', + pledge: '316480000000', + saturation: '0.9836969183695821', + non_myopic_member_rewards: 678, + produced_blocks: 2389, + relative_stake: '0.2', + pool_info: null, + }, + { + pool_id: 'pool1lurfk0k0wwx54hlg8a7zp3jtstu57u59aeq7aketl55hknmmtu0', + cost: '340000000', + margin: '1', + pledge: '1000000000000', + saturation: '0.983778836876522', + non_myopic_member_rewards: 673, + produced_blocks: 1360, + relative_stake: '0.2', + pool_info: null, + }, + { + pool_id: 'pool1z5uqdk7dzdxaae5633fqfcu2eqzy3a3rgtuvy087fdld7yws0xt', + cost: '340000000', + margin: '0.9', + pledge: '470000000000', + saturation: '0.9593221961645276', + non_myopic_member_rewards: 672, + produced_blocks: 1368, + relative_stake: '0.19', + pool_info: null, + }, +]: ApiPoolsDaedalusSimpleResponse); + +export { adapoolsResponse, daedalusSimpleResponse }; diff --git a/src/App.js b/src/App.js index b8bbda5..8f7300a 100644 --- a/src/App.js +++ b/src/App.js @@ -3,8 +3,9 @@ import React from 'react'; import type { Node } from 'react'; import GlobalStyle from './helpers/globalStyles'; -import Home from './containers/Home'; -import type { UrlParams } from './containers/Home'; +import type { UrlParams } from './containers/HomeContainer'; +import HomeContainer from './containers/HomeContainer'; +import { ViewProvider } from './context/provider-context'; const parseIds = (array: ?string): Array => { if (array == null) return []; @@ -19,6 +20,7 @@ const extractParams = (locationSearch: string): UrlParams => { source: params.get('source'), selectedPoolIds: parseIds(params.get('delegated')), lang: params.get('lang'), + // $FlowFixMe totalAda: params.get('totalAda'), } } @@ -28,10 +30,10 @@ function App(): Node { const homeParams = { urlParams: extractParams(location.search) } return ( - <> - + + - + ); } diff --git a/src/assets/spinner.svg b/src/assets/spinner.svg new file mode 100644 index 0000000..25690d7 --- /dev/null +++ b/src/assets/spinner.svg @@ -0,0 +1,14 @@ + + + + 689D1EC6-CFD1-4DB8-8399-D10FD29322A1 + Created with sketchtool. + + + + + + + + + \ No newline at end of file diff --git a/src/assets/stakepool_new.svg b/src/assets/stakepool_new.svg new file mode 100644 index 0000000..eaddb4a --- /dev/null +++ b/src/assets/stakepool_new.svg @@ -0,0 +1,10 @@ + + + icon/stakepool_new + + + + + + + \ No newline at end of file diff --git a/src/assets/stakepool_parameter-changing.svg b/src/assets/stakepool_parameter-changing.svg new file mode 100644 index 0000000..087743b --- /dev/null +++ b/src/assets/stakepool_parameter-changing.svg @@ -0,0 +1,10 @@ + + + icon/parametr changing + + + + + + + \ No newline at end of file diff --git a/src/assets/stakepool_retired.svg b/src/assets/stakepool_retired.svg new file mode 100644 index 0000000..2e8d2e8 --- /dev/null +++ b/src/assets/stakepool_retired.svg @@ -0,0 +1,11 @@ + + + icon/stakepool_retired + + + + + + + + \ No newline at end of file diff --git a/src/assets/stakepool_saturated.svg b/src/assets/stakepool_saturated.svg new file mode 100644 index 0000000..1fc567a --- /dev/null +++ b/src/assets/stakepool_saturated.svg @@ -0,0 +1,10 @@ + + + icon/stakepool_saturated + + + + + + + \ No newline at end of file diff --git a/src/components/AlertsCard.js b/src/components/AlertsCard.js new file mode 100644 index 0000000..141e1f6 --- /dev/null +++ b/src/components/AlertsCard.js @@ -0,0 +1,77 @@ +// @flow +import * as React from 'react'; +import type { Node } from 'react'; +import styled from 'styled-components'; +import stakeSaturatedIcon from '../assets/stakepool_saturated.svg'; +import stakeNewIcon from '../assets/stakepool_new.svg'; +import stakeRetiredIcon from '../assets/stakepool_retired.svg'; +import stakeChangingIcon from '../assets/stakepool_parameter-changing.svg'; + +type Props = {| + +isSaturated: boolean, + +isRetiring: boolean, + +isNew: boolean, + +isChanging: boolean, +|}; +const AlertContainer = styled.div` + @media (max-width: 1125px) { + display: flex; + } +`; +const Wrapper = styled.div` + display: flex; + justify-content: flex-end; + align-items: center; + margin-bottom: 4px; + img { + width: 18px; + height: 18px; + } + @media (max-width: 1125px) { + margin-right: 24px; + } +`; +const Label = styled.p` + color: #242838; + font-family: Rubik; + font-size: 14px; + letter-spacing: 0; + line-height: 22px; + text-align: right; + margin-right: 6px; +`; + +const AlertsCard = ({ isSaturated, isRetiring, isNew, isChanging }: Props): Node => { + const isEmpty = !isSaturated && !isRetiring && !isNew && !isChanging; + return ( + + {isSaturated ? ( + + + stakepool saturated + + ) : null} + {isRetiring ? ( + + + stakepool retired + + ) : null} + {isNew ? ( + + + stakepool new + + ) : null} + {isChanging ? ( + + + stakepool parameters changing + + ) : null} + {isEmpty ?

-

: null} +
+ ); +}; + +export default AlertsCard; diff --git a/src/components/PotentialRewardCard.js b/src/components/PotentialRewardCard.js new file mode 100644 index 0000000..3c83166 --- /dev/null +++ b/src/components/PotentialRewardCard.js @@ -0,0 +1,37 @@ +// @flow +import * as React from 'react'; +import type { Node } from 'react'; +import styled from 'styled-components'; + +const Wrapper = styled.div` + display: flex; + flex-direction: column; + text-align: right; + @media (max-width: 1125px) { + text-align: left; + } +`; +const AdaValueReward = styled.p` + color: #242838; + margin-bottom: 4px; +`; +const PercetangeReward = styled.p` + color: #6b7384; + font-size: 14px; +`; + +type Props = {| + +value: string, + +percentage: string, +|}; + +const PotentialRewardCard = ({ value, percentage }: Props): Node => { + return ( + + {value} ADA + {percentage}% + + ); +}; + +export default PotentialRewardCard; diff --git a/src/components/ProviderSelect.js b/src/components/ProviderSelect.js new file mode 100644 index 0000000..7656ebc --- /dev/null +++ b/src/components/ProviderSelect.js @@ -0,0 +1,47 @@ +// @flow +import React from 'react'; +import styled from 'styled-components'; +import { SelectInput, SelectLabel } from './common/Inputs'; +import { useViewProvider } from '../context/provider-context'; + +const WrapperSelectInput = styled.div` + display: flex; + flex-direction: column; + margin-left: 40px; + @media (max-width: 1125px) { + margin-left: 0; + } +`; + +const selectData = [ + { + label: 'Adapools (Advanced)', + value: 'adapools', + }, + { + label: 'Daedalus Official (Simple)', + value: 'daedalus_simple', + }, +]; + +function ProviderSelect(): React$Node { + const [provider, setProvider] = useViewProvider() + const handleChange = (e) => { + setProvider(e.currentTarget.value); + }; + + return ( + + Provider: + + {selectData.map(({ value, label }) => ( + + ))} + + + ); +} + +export default ProviderSelect; diff --git a/src/components/SaturatedPoolAlert.js b/src/components/SaturatedPoolAlert.js index 66a0aa1..9c06e66 100644 --- a/src/components/SaturatedPoolAlert.js +++ b/src/components/SaturatedPoolAlert.js @@ -4,7 +4,7 @@ import React from 'react'; import type { Node } from 'react'; import styled from 'styled-components'; import Button from './common/Button'; -import type { DelegationProps } from '../containers/Home'; +import type { DelegationProps } from '../containers/HomeContainer'; const Wrapper = styled.div` .section { @@ -33,7 +33,7 @@ const Wrapper = styled.div` `; type Props = {| - delegation: {...DelegationProps, totalAda: ?number}, + delegation: {|...DelegationProps, totalAda: ?number|}, onSuccess: (id: string) => void, close: () => void |} @@ -57,6 +57,7 @@ function SaturatedPoolAlert({ delegation, onSuccess, close }: Props): Node { yourAdaNotEmpty &&

{yourAda} ADA

} + {/* $FlowFixMe: */}

Stakepool Size: {new Intl.NumberFormat().format(poolShare.toFixed(0))} ADA