CryptoKraken / crypto-kraken-services

MIT License
0 stars 1 forks source link

Create an interface for a currency essence #45

Open skubarenko opened 6 years ago

skubarenko commented 6 years ago

The interface should look something like this:

interface Currency {
     id: string;
     name: string;
     symbol: string;
     // ... some blockchain info: address, isToken, decimal etc.
}
skubarenko commented 6 years ago

Make ability to give this interface instead of raw coin 'symbols' (which, in general, are strings) for native packages.