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