{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "cryptocurrency-widget-block/cryptocurrency-widget",
	"version": "1.0.0",
	"title": "Cryptocurrency Widget",
	"category": "widgets",
	"description": "Displays Cryptocurrency data in a diffrent widgets.",
	"example": {},
	"keywords": [
		"crypto",   
		"crypto widget",
		"cryptocurrency",
		"block"
	  ],
	"attributes": {		
	"widgettype": {
      "type": "string",
	  "default":"list"
    },
	"selectedCoins": {
      "type": "array"	  
    },
	"showName": {
      "type": "boolean",
	  "default":true
    },   
    "showRank": {
      "type": "boolean",
	  "default":true
    },
	"showPrice": {
      "type": "boolean",
	  "default":true
    },
	"show24hchanges": {
      "type": "boolean",
	  "default":true
    },
	"showVolume": {
		"type": "boolean",
		"default":true
	  },
	  "showMarketcap": {
		"type": "boolean",
		"default":true
	  },
	  "removeStyle": {
		"type": "boolean",
		"default":false
	  },
	  "tickerspeed": {
		"type": "number",
		"default":30
	  },
	"limit": {
      "type": "string",
	  "default":10
    },
	"Textwidget": {
      "type": "string",
	  "default":"[coin-name] has a price of [coin-price] with a marketcap of [coin-marketcap] and ranked number [coin-rank] of all cryptocurrencies"
	}

    
	
	},
	"supports": {
		"color": {
			"background": true,
			"text": true
		},
		"html": false,
		"typography": {
			"fontSize": true
		}
	},
	
	"textdomain": "ccwfg",
	"icon": "file:./logo.svg",
	"editorScript": "file:./index.js",
	"editorStyle": "file:./index.css",
	"style": "file:./style-index.css",
	"render": "file:./render.php"
}