Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 577 Bytes

MAINTAINING.md

File metadata and controls

34 lines (31 loc) · 577 Bytes

Maintaining

We don't currently accept contributions for icons as the process for creating them is a bit complicated. This guide is for the maintainers.

Adding a new icon

  • Create the icon and export from Sketch.
  • Add the symbol name of the currency to manifest.json, for example:
[
	{
		"symbol": "$PAC",
		"name": "Paccoin"
	},
	// …
	{
		"symbol": "BTC"
	}
]
  • Then run npm install && npm run manifest and the name will be filled in:
[
	{
		"symbol": "$PAC",
		"name": "Paccoin"
	},
	// …
	{
		"symbol": "BTC",
		"name": "Bitcoin"
	}
]