├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── .DS_Store ├── collection.png ├── collection.json ├── 0.json ├── 1.json ├── 2.json ├── 3.json ├── 4.json ├── 5.json ├── 6.json ├── 7.json ├── 8.json └── 9.json /0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/0.png -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/3.png -------------------------------------------------------------------------------- /4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/4.png -------------------------------------------------------------------------------- /5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/5.png -------------------------------------------------------------------------------- /6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/6.png -------------------------------------------------------------------------------- /7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/7.png -------------------------------------------------------------------------------- /8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/8.png -------------------------------------------------------------------------------- /9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/9.png -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/.DS_Store -------------------------------------------------------------------------------- /collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calyptus-Learn/candy-machine-assets/HEAD/collection.png -------------------------------------------------------------------------------- /collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Numbers Collection", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain.", 5 | "image": "collection.png", 6 | "attributes": [], 7 | "properties": { 8 | "files": [ 9 | { 10 | "uri": "collection.png", 11 | "type": "image/png" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /0.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0001", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 1/10.", 5 | "image": "0.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "0" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "0.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0002", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 2/10.", 5 | "image": "1.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "1" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "1.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0003", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 3/10.", 5 | "image": "2.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "3" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "2.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0004", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 4/10.", 5 | "image": "3.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "4" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "3.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0005", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 5/10.", 5 | "image": "4.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "5" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "4.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0006", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 6/10.", 5 | "image": "5.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "6" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "5.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /6.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0007", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 7/10.", 5 | "image": "6.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "7" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "6.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /7.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0008", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 8/10.", 5 | "image": "7.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "8" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "7.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /8.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0009", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 9/10.", 5 | "image": "8.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "9" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "8.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /9.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Number #0010", 3 | "symbol": "NB", 4 | "description": "Collection of 10 numbers on the blockchain. This is the number 10/10.", 5 | "image": "9.png", 6 | "attributes": [ 7 | { 8 | "trait_type": "Number", 9 | "value": "10" 10 | } 11 | ], 12 | "properties": { 13 | "files": [ 14 | { 15 | "uri": "9.png", 16 | "type": "image/png" 17 | } 18 | ] 19 | } 20 | } --------------------------------------------------------------------------------