Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Sep 27, 2023
1 parent 8e7d088 commit 943000c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion umbra-js/test/cns.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@ import * as utils from '../src/utils/utils';
import { StaticJsonRpcProvider } from '../src/ethers';

// const ethersProvider = ethers.provider;
const resolution = new Resolution();
const resolution = new Resolution({
sourceConfig: {
uns: {
locations: {
Layer1: {
url: `https://mainnet.infura.io/v3/${String(process.env.INFURA_ID)}`,
network: 'mainnet',
},
Layer2: {
url: `https://polygon-mainnet.infura.io/v3/${String(process.env.INFURA_ID)}`,
network: 'polygon-mainnet',
},
},
},
},
});

// Truth parameters to test against
const name = 'blockdudes.nft';
Expand Down

0 comments on commit 943000c

Please sign in to comment.