0.0.18 ā€¢ Published 4 months ago

beta-logos v0.0.18

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

Getting started

Installation

yarn add beta-logos

Usage

React

import { ChainLogo, SymbolLogo, ApiProviderLogo } from 'beta-logos';

<div>
    <img src={ChainLogo('43114')} width={50} height={50} alt="43114" />
    <img src={SymbolLogo('BTC')} width={50} height={50} alt="BTC" />
    <img src={ApiProviderLogo('nodary')} width={50} height={50} alt="nodary" />
</div>;

HTML

<template>
    <div>
        <img src={ChainLogo('43114')} width={50} height={50} alt='43114' />
        <img src={SymbolLogo('BTC')} width={50} height={50} alt='BTC' />
        <img src={ApiProviderLogo('nodary')} width={50} height={50} alt='nodary' />
    </div>
</template>

<script>
import { ChainLogo, SymbolLogo, ApiProviderLogo } from 'beta-logos';

export default {
...
methods: {
    getSymbolLogo(symbol) {
      return SymbolLogo(symbol);
    },
    getChainLogo(chainId) {
      return ChainLogo(chainId);
    },
    getApiProviderLogo(apiProvider) {
      return ApiProviderLogo(apiProvider);
    },
}
...
}
</script>

API

ChainLogo

PropTypeDescription
idstringChain id

SymbolLogo

PropTypeDescription
idstringSymbol id

Package update

Run the following command to update the package:

yarn changeset

Then follow the instructions in the terminal:

šŸ¦‹  What kind of change is this for logos? (current version is x.x.x) 
āÆ patch
  minor
  major
šŸ¦‹  Please enter a summary for this change (this will be in the changelogs).
šŸ¦‹    (submit empty line to open external editor)
šŸ¦‹  Summary ā€ŗ  [CHANGES]

After that, you will be asked to confirm the changeset:

šŸ¦‹  Summary ā€ŗ [CHANGES]
šŸ¦‹  
šŸ¦‹  === Summary of changesets ===
šŸ¦‹  patch:  logos
šŸ¦‹  
šŸ¦‹  Is this your desired changeset? (Y/n) ā€ŗ true

If you confirm, the changeset will be created and you will be asked to publish it:

šŸ¦‹  Changeset added! - you can now commit it
šŸ¦‹  
šŸ¦‹  If you want to modify or expand on the changeset summary, you can find it here
šŸ¦‹  info .changeset/[MD_FILE]
āœØ  Done.

Commit the changeset and push it to the repository:

git add .
git commit -m "chore: update logos"
git push

Merge the changeset to the main branch:

git checkout main
git merge [BRANCH_NAME]
git push

To publish the package, merge main to the production branch:

git checkout production
git merge main
git push

Changeset will raise a PR to the production branch. After the PR is merged, the package will be published to npm.

Supported chains and symbols

Visit this page for a list of supported chains and symbols.

0.0.18

4 months ago

0.0.17

5 months ago

0.0.15

5 months ago

0.0.16

5 months ago

0.0.14

5 months ago

0.0.13

5 months ago

0.0.11

5 months ago

0.0.12

5 months ago

0.0.10

5 months ago

0.0.9

5 months ago

0.0.8

5 months ago

0.0.7

5 months ago

0.0.6

6 months ago

0.0.5

6 months ago

0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago