Skip to content

Commit c897d76

Browse files
feat: add icon for ultra, update schema to match the library (#106)
* add web3icon for ronin and ultra * update schema web3icons's variants to match the lib * update zora web3icon to match lib * bump package.json * revert schema changes for now --------- Co-authored-by: YaroShkvorets <[email protected]>
1 parent 7cbb0cb commit c897d76

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.6.58",
2+
"version": "0.6.59",
33
"private": true,
44
"type": "module",
55
"scripts": {

registry/antelope/ultra.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@
2323
"blockType": "sf.antelope.type.v1.Block",
2424
"bufUrl": "https://buf.build/pinax/firehose-antelope",
2525
"bytesEncoding": "hex"
26-
}
26+
},
27+
"icon": { "web3Icons": { "name": "ultra" } }
2728
}

registry/eip155/ronin.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@
2929
"evmExtendedModel": false,
3030
"bufUrl": "https://buf.build/streamingfast/firehose-ethereum",
3131
"bytesEncoding": "hex"
32-
}
32+
},
33+
"icon": { "web3Icons": { "name": "ronin" } }
3334
}

registry/eip155/zora.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,7 @@
4242
"bufUrl": "https://buf.build/streamingfast/firehose-ethereum",
4343
"bytesEncoding": "hex"
4444
},
45-
"icon": { "web3Icons": { "name": "zora", "variants": ["branded"] } }
45+
"icon": {
46+
"web3Icons": { "name": "zora", "variants": ["branded"] }
47+
}
4648
}

schemas/registry.schema.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,10 @@
223223
},
224224
"variants": {
225225
"type": "array",
226-
"items": { "type": "string", "pattern": "^(mono|branded)$" },
226+
"items": {
227+
"type": "string",
228+
"pattern": "^(mono|branded)$"
229+
},
227230
"uniqueItems": true,
228231
"description": "Variants of the icon, if none specified - all are available"
229232
}

0 commit comments

Comments
 (0)