Y-whois is a collection of Whois resources managed by Yummy Capital, designed to help users identify blockchain addresses of Crypto.org and Cronos Mainnets. The information located in this repository is utilized by Yummy Explorer, a blockchain explorer platform that provides users with an intuitive way to view and analyze blockchain data on the Crypto.org and Cronos Mainnets. By leveraging the resources available in this repository, Yummy Explorer is able to provide users with comprehensive information about the owners and operators of blockchain addresses and make it easier to explore and search for addresses, transactions and other activities taking place on these networks.
Each chain has their own directory: Cronos Mainnet and Crypto.org Mainnet.
There are three directories for each chain:
ibc
– specified for ibc accounts
module.accouns
– specified for module accounts
others
– specified for organizations and individuals
Each directory stores a key-value object, where key
is the address in a particular blockchain network, and value
is Whois
data.
Whois
data has following interface:
interface Whois {
label: string // label to be displayed next to the address or on the address page
link?: string // optional link to an external source (website)
}
Example of Veno.finance:
import { WhoisRecords } from '../../../../interfaces'
export default <WhoisRecords>{
cro1vh0qats69klguljnpfux925rf320whj8gyhn0a: {
label: 'Veno Finance',
link: 'https://veno.finance',
},
}
- Fork this repo to your own github account
- Clone fork and create new branch
git clone [email protected]:YOUR_ACCOUNT/y-whois.git
cd y-whois
git branch <branch_name>
git checkout <branch_name>
- Add your information
- Commit and push to your fork
git add -A
git commit -m “Add <DESCRIPTION>”
git push origin <branch_name>
- From your repository, make pull requesrt (PR)