Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 673 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 673 Bytes

Etherium Lists

Curated Ethereum Lists from Javascript Library

Usage

const explorer = new Explorer();

const allList = explorer.list();

// Sort the List by chainID
const sortedList = explorer.list({sortBy: 'chainId'});

// Reverse Sorted
const reverseSortedList = explorer.list({sortBy: '-chainId'});

// Search the chainlist by name
const searchList = explorer.search('eth');

console.log({allList, sortedList, searchList});

Data Source

We are using following data sources in our package.