Merge pull request #2852 from mempool/nymkappa/feature/pools-json-frontend-cleanup
Remove pools.json download from the frontend
This commit is contained in:
commit
c15d5920d8
@ -7,7 +7,6 @@ describe('Liquid', () => {
|
|||||||
cy.intercept('/liquid/api/blocks/').as('blocks');
|
cy.intercept('/liquid/api/blocks/').as('blocks');
|
||||||
cy.intercept('/liquid/api/tx/**/outspends').as('outspends');
|
cy.intercept('/liquid/api/tx/**/outspends').as('outspends');
|
||||||
cy.intercept('/liquid/api/block/**/txs/**').as('block-txs');
|
cy.intercept('/liquid/api/block/**/txs/**').as('block-txs');
|
||||||
cy.intercept('/resources/pools.json').as('pools');
|
|
||||||
|
|
||||||
Cypress.Commands.add('waitForBlockData', () => {
|
Cypress.Commands.add('waitForBlockData', () => {
|
||||||
cy.wait('@socket');
|
cy.wait('@socket');
|
||||||
|
@ -7,7 +7,6 @@ describe('Liquid Testnet', () => {
|
|||||||
cy.intercept('/liquidtestnet/api/blocks/').as('blocks');
|
cy.intercept('/liquidtestnet/api/blocks/').as('blocks');
|
||||||
cy.intercept('/liquidtestnet/api/tx/**/outspends').as('outspends');
|
cy.intercept('/liquidtestnet/api/tx/**/outspends').as('outspends');
|
||||||
cy.intercept('/liquidtestnet/api/block/**/txs/**').as('block-txs');
|
cy.intercept('/liquidtestnet/api/block/**/txs/**').as('block-txs');
|
||||||
cy.intercept('/resources/pools.json').as('pools');
|
|
||||||
|
|
||||||
Cypress.Commands.add('waitForBlockData', () => {
|
Cypress.Commands.add('waitForBlockData', () => {
|
||||||
cy.wait('@socket');
|
cy.wait('@socket');
|
||||||
|
@ -41,7 +41,6 @@ describe('Mainnet', () => {
|
|||||||
// cy.intercept('/api/v1/block/*/summary').as('block-summary');
|
// cy.intercept('/api/v1/block/*/summary').as('block-summary');
|
||||||
// cy.intercept('/api/v1/outspends/*').as('outspends');
|
// cy.intercept('/api/v1/outspends/*').as('outspends');
|
||||||
// cy.intercept('/api/tx/*/outspends').as('tx-outspends');
|
// cy.intercept('/api/tx/*/outspends').as('tx-outspends');
|
||||||
// cy.intercept('/resources/pools.json').as('pools');
|
|
||||||
|
|
||||||
// Search Auto Complete
|
// Search Auto Complete
|
||||||
cy.intercept('/api/address-prefix/1wiz').as('search-1wiz');
|
cy.intercept('/api/address-prefix/1wiz').as('search-1wiz');
|
||||||
|
@ -76,7 +76,7 @@ PROXY_CONFIG = [
|
|||||||
|
|
||||||
if (configContent && configContent.BASE_MODULE == "liquid") {
|
if (configContent && configContent.BASE_MODULE == "liquid") {
|
||||||
PROXY_CONFIG.push({
|
PROXY_CONFIG.push({
|
||||||
context: ['/resources/pools.json',
|
context: [
|
||||||
'/resources/assets.json', '/resources/assets.minimal.json',
|
'/resources/assets.json', '/resources/assets.minimal.json',
|
||||||
'/resources/assets-testnet.json', '/resources/assets-testnet.minimal.json'],
|
'/resources/assets-testnet.json', '/resources/assets-testnet.minimal.json'],
|
||||||
target: "https://liquid.network",
|
target: "https://liquid.network",
|
||||||
@ -85,7 +85,7 @@ if (configContent && configContent.BASE_MODULE == "liquid") {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
PROXY_CONFIG.push({
|
PROXY_CONFIG.push({
|
||||||
context: ['/resources/pools.json', '/resources/assets.json', '/resources/assets.minimal.json', '/resources/worldmap.json'],
|
context: ['/resources/assets.json', '/resources/assets.minimal.json', '/resources/worldmap.json'],
|
||||||
target: "https://mempool.space",
|
target: "https://mempool.space",
|
||||||
secure: false,
|
secure: false,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
|
@ -70,7 +70,6 @@ function downloadMiningPoolLogos() {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
const poolsJsonUrl = 'https://raw.githubusercontent.com/mempool/mining-pools/master/pools.json';
|
|
||||||
let assetsJsonUrl = 'https://raw.githubusercontent.com/mempool/asset_registry_db/master/index.json';
|
let assetsJsonUrl = 'https://raw.githubusercontent.com/mempool/asset_registry_db/master/index.json';
|
||||||
let assetsMinimalJsonUrl = 'https://raw.githubusercontent.com/mempool/asset_registry_db/master/index.minimal.json';
|
let assetsMinimalJsonUrl = 'https://raw.githubusercontent.com/mempool/asset_registry_db/master/index.minimal.json';
|
||||||
|
|
||||||
@ -86,8 +85,6 @@ console.log('Downloading assets');
|
|||||||
download(PATH + 'assets.json', assetsJsonUrl);
|
download(PATH + 'assets.json', assetsJsonUrl);
|
||||||
console.log('Downloading assets minimal');
|
console.log('Downloading assets minimal');
|
||||||
download(PATH + 'assets.minimal.json', assetsMinimalJsonUrl);
|
download(PATH + 'assets.minimal.json', assetsMinimalJsonUrl);
|
||||||
console.log('Downloading mining pools info');
|
|
||||||
download(PATH + 'pools.json', poolsJsonUrl);
|
|
||||||
console.log('Downloading testnet assets');
|
console.log('Downloading testnet assets');
|
||||||
download(PATH + 'assets-testnet.json', testnetAssetsJsonUrl);
|
download(PATH + 'assets-testnet.json', testnetAssetsJsonUrl);
|
||||||
console.log('Downloading testnet assets minimal');
|
console.log('Downloading testnet assets minimal');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user