diff --git a/frontend/src/routes/remote-nodes/+page.js b/frontend/src/routes/remote-nodes/+page.js index 358fccd..f2ff510 100644 --- a/frontend/src/routes/remote-nodes/+page.js +++ b/frontend/src/routes/remote-nodes/+page.js @@ -6,26 +6,6 @@ export async function load() { title: 'Public Monero Remote Nodes List', description: 'List of public Monero remote nodes that you can use with your favourite Monero wallet. You can filter by country, protocol, or CORS capable nodes.', keywords: 'monero remote nodes,public monero nodes,monero public nodes,monero wallet,tor monero node,monero cors rpc' - }, - /** - * Array containing network fees. - * For now, I use static data to reduce the amount of API calls. - * See the values from `/api/v1/fees` - * @type {{ nettype: string, estimate_fee: number }[]} - */ - netFees: [ - { - nettype: 'mainnet', - estimate_fee: 20000 - }, - { - nettype: 'stagenet', - estimate_fee: 56000 - }, - { - nettype: 'testnet', - estimate_fee: 20000 - } - ] + } }; } diff --git a/frontend/src/routes/remote-nodes/+page.svelte b/frontend/src/routes/remote-nodes/+page.svelte index 6aa1db6..1bc3b68 100644 --- a/frontend/src/routes/remote-nodes/+page.svelte +++ b/frontend/src/routes/remote-nodes/+page.svelte @@ -1,7 +1,7 @@