2024-05-04 01:38:08 +07:00
/** @type {import('./$types').PageLoad} */
2024-06-03 17:15:50 +07:00
export async function load ( ) {
2024-05-04 01:38:08 +07:00
return {
meta : {
2024-05-11 21:31:39 +07:00
title : 'Monero Remote Node' ,
2024-05-08 18:43:09 +07:00
description :
2024-05-11 21:31:39 +07:00
'A website that helps you monitor your favourite Monero remote nodes, a device on the internet running the Monero software with copy of the Monero blockchain.' ,
keywords :
'monero,monero,xmr,monero node,xmrnode,cryptocurrency,monero remote node,monero testnet,monero stagenet'
2024-05-08 18:43:09 +07:00
} ,
links : [
{ text : 'moneroworld.com' , uri : 'https://moneroworld.com' } ,
{ text : 'monero.how' , uri : 'https://www.monero.how' } ,
{ text : 'monero.observer' , uri : 'https://www.monero.observer' } ,
{ text : 'sethforprivacy.com' , uri : 'https://sethforprivacy.com' } ,
{ text : 'localmonero.co' , uri : 'https://localmonero.co/knowledge' } ,
{ text : 'revuo-xmr.com' , uri : 'https://revuo-xmr.com/' }
] ,
stagenet : [
2024-07-30 05:16:54 +07:00
{ label : 'P2P' , value : 'stagenet.xmr.ditatompel.com:38080' , key : 'snetP2P' } ,
{ label : 'RPC' , value : 'stagenet.xmr.ditatompel.com:38089' , key : 'snetRPC' } ,
{ label : 'RPC SSL' , value : 'stagenet.xmr.ditatompel.com:443' , key : 'snetSSL' }
2024-05-08 18:43:09 +07:00
] ,
testnet : [
{ label : 'P2P' , value : 'testnet.xmr.ditatompel.com:28080' , key : 'tnetP2P' } ,
{ label : 'RPC' , value : 'testnet.xmr.ditatompel.com:28089' , key : 'tnetRPC' } ,
{ label : 'RPC SSL' , value : 'testnet.xmr.ditatompel.com:443' , key : 'tnetSSL' }
] ,
donation : {
2024-07-30 05:03:06 +07:00
// You change donation address and qr image below if you run your own "instance"
2024-05-08 18:43:09 +07:00
address :
'8BWYe6GzbNKbxe3D8mPkfFMQA2rViaZJFhWShhZTjJCNG6EZHkXRZCKHiuKmwwe4DXDYF8KKcbGkvNYaiRG3sNt7JhnVp7D' ,
qr : '/img/monerotip.png'
2024-05-04 01:38:08 +07:00
}
} ;
}