LeaderBoard

Displays the top performing portfolios

Leaderboard

RankUsernameETHUSDBTCUSDXRPUSDEOSUSD
1John Mitchel D.1.234%3.245%2.65%-0.34743%
2Liam-1.234%3.245%-2.65%0.34743%
3Tony Starks10.234%30.245%-15.65%34.743%

Usage

// 
<script>
import { LeaderBoard } from '@magnito2/crypttops-library';

export default {
    
}
</script>
<template>
    <div>
        <LeaderBoard
            :pairs="pairs"
            :data="data"
        >
    </div>
</template>

Source Code

<script>

export default {
    name: 'LeaderBoard',
    props: {
      pairs: Array, 
      data: Array, 
    },
}
</script>

Props

data : An array of Dictionaries containing information to be rendered in the following format

// Format of data array
[
        {
          name: 'John Mitchel D.',
          pairs: [1.234, 3.245, 2.650, -0.34743]
        },
        {
          name: 'Liam',
          pairs: [-1.234, 3.245, -2.650, 0.34743]
        },
        {
          name: 'Tony Starks',
          pairs: [10.234, 30.245, -15.650, 34.743]
        },
]

pairs : The names of crypto pairs to be displayed

// Format of pairs array
['ETHUSD','BTCUSD', 'XRPUSD', 'EOSUSD']
Last Updated:
Contributors: Magnus, magnito2