@dated/delegate-calculator-plugin
Version:
Compare delegate payouts and get an overview of your potential staking rewards directly in the ARK Desktop Wallet
33 lines (28 loc) • 477 B
JavaScript
module.exports = {
register () {
this.routes = [
{
path: '/calculator',
name: 'calculator',
component: 'Calculator'
}
]
this.menuItems = [
{
routeName: 'calculator',
title: 'ARK Delegate Calculator'
}
]
},
getComponentPaths () {
return {
'Calculator': 'pages/index.js'
}
},
getRoutes () {
return this.routes
},
getMenuItems () {
return this.menuItems
}
}