@eqtylab/explorer 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.api +6 -0
- package/.env.iframe +2 -0
- package/.env.manifest +2 -0
- package/.envrc +1 -0
- package/.eslintrc.cjs +17 -0
- package/.github/workflows/ci.yml +46 -0
- package/.github/workflows/publish.yml +44 -0
- package/.husky/pre-push +2 -0
- package/.prettierignore +2 -0
- package/.prettierrc.json +13 -0
- package/LICENSE +201 -0
- package/README.md +84 -0
- package/flake.lock +61 -0
- package/flake.nix +23 -0
- package/index.html +13 -0
- package/package.json +93 -0
- package/postcss.config.js +5 -0
- package/public/logos/eci.svg +23 -0
- package/public/logos/eqty.svg +3 -0
- package/public/manifests/B-200-merged.json +773 -0
- package/public/manifests/amd-sev.json +426 -0
- package/public/manifests/anchors.json +609 -0
- package/public/manifests/association-no-metadata.json +1393 -0
- package/public/manifests/association.json +1402 -0
- package/public/manifests/eqty-docker.json +562 -0
- package/public/manifests/governance.json +1324 -0
- package/public/manifests/intel-tdx-with-nvidia.json +441 -0
- package/public/manifests/intel-tdx.json +404 -0
- package/public/manifests/iroh-collections.json +1285 -0
- package/public/manifests/model-signing.json +1536 -0
- package/public/manifests/multiple-registrations.json +129 -0
- package/public/manifests/no-vcs.json +114 -0
- package/public/manifests/storage.json +294 -0
- package/public/manifests/sub-graphs.json +1 -0
- package/src/animations/variants.ts +52 -0
- package/src/app/apiClient/integrityService/fetchAttributes.ts +29 -0
- package/src/app/apiClient/integrityService/fetchManifest.ts +28 -0
- package/src/app/apiClient/integrityService/types.ts +12 -0
- package/src/app/components/integrityService/IntegrityService.tsx +105 -0
- package/src/app/components/integrityService/components/AuthButton.tsx +26 -0
- package/src/app/components/integrityService/components/FiltersModal.tsx +214 -0
- package/src/app/components/integrityService/components/FiltersToggle.tsx +28 -0
- package/src/app/components/manifestViewer/ManifestViewer.tsx +90 -0
- package/src/app/components/manifestViewer/components/ManifestButtons.tsx +215 -0
- package/src/app/config.json +23 -0
- package/src/app/config.ts +28 -0
- package/src/app/pages/index.tsx +34 -0
- package/src/app/stores/manifestStore.ts +19 -0
- package/src/app/utils/appMode.ts +37 -0
- package/src/assets/fonts/TWKLausanne-300.woff +0 -0
- package/src/assets/fonts/TWKLausanne-300.woff2 +0 -0
- package/src/assets/fonts/TWKLausanne-400.woff +0 -0
- package/src/assets/fonts/TWKLausanne-400.woff2 +0 -0
- package/src/assets/fonts/TWKLausanne-500.woff +0 -0
- package/src/assets/fonts/TWKLausanne-500.woff2 +0 -0
- package/src/assets/fonts/TWKLausanne-600.woff +0 -0
- package/src/assets/fonts/TWKLausanne-600.woff2 +0 -0
- package/src/assets/vectors/eqtylab.svg +6 -0
- package/src/components/app-header.tsx +61 -0
- package/src/components/dark-mode-switch.tsx +16 -0
- package/src/components/ui/accordion.tsx +47 -0
- package/src/components/ui/certificate-chain.tsx +60 -0
- package/src/components/ui/certificate-code.tsx +39 -0
- package/src/components/ui/details.tsx +20 -0
- package/src/components/ui/display-code.tsx +47 -0
- package/src/components/ui/panel-label.tsx +12 -0
- package/src/components/ui/verify-state-badge.tsx +32 -0
- package/src/explorer-component/LineageExplorer.tsx +89 -0
- package/src/explorer-component/components/CustomEdge.tsx +28 -0
- package/src/explorer-component/components/LineageFlow.tsx +220 -0
- package/src/explorer-component/components/NodeIconLoader.tsx +26 -0
- package/src/explorer-component/components/nodes/ComputationNode.tsx +56 -0
- package/src/explorer-component/components/nodes/CustomNode.tsx +112 -0
- package/src/explorer-component/components/nodes/index.ts +4 -0
- package/src/explorer-component/components/nodes/nodes.tsx +144 -0
- package/src/explorer-component/components/nodes/types.ts +167 -0
- package/src/explorer-component/components/sidebar/SectionList.tsx +54 -0
- package/src/explorer-component/components/sidebar/SectionTitle.tsx +10 -0
- package/src/explorer-component/components/sidebar/Sidebar.tsx +70 -0
- package/src/explorer-component/components/sidebar/SidebarWrapper.tsx +76 -0
- package/src/explorer-component/components/sidebar/sections/CustomSection.tsx +238 -0
- package/src/explorer-component/components/sidebar/sections/FileViewer.tsx +229 -0
- package/src/explorer-component/components/sidebar/sections/GovernanceSection.tsx +52 -0
- package/src/explorer-component/components/sidebar/sections/RegistrationSection.tsx +254 -0
- package/src/explorer-component/components/sidebar/sections/SigstoreSection.tsx +37 -0
- package/src/explorer-component/components/sidebar/sections/StorageSection.tsx +73 -0
- package/src/explorer-component/components/sidebar/sections/custom/IrohCollectionsView.tsx +139 -0
- package/src/explorer-component/components/sidebar/sections/registration/VerificationIcon.tsx +108 -0
- package/src/explorer-component/components/sidebar/sections/registration/actor/ActorBadge.tsx +62 -0
- package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AMDLogo.tsx +40 -0
- package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AzureLogo.tsx +65 -0
- package/src/explorer-component/components/sidebar/sections/registration/actor/svg/IntelLogo.tsx +24 -0
- package/src/explorer-component/components/sidebar/sections/registration/actor/svg/NvidiaLogo.tsx +27 -0
- package/src/explorer-component/components/sidebar/sections/registration/verifierClient.ts +13 -0
- package/src/explorer-component/icons/AttributionIcon.svg +6 -0
- package/src/explorer-component/icons/BenchmarkIcon.svg +6 -0
- package/src/explorer-component/icons/BenchmarkResultIcon.svg +6 -0
- package/src/explorer-component/icons/CertificateIcon.svg +6 -0
- package/src/explorer-component/icons/CodeIcon.svg +6 -0
- package/src/explorer-component/icons/ComputationIcon.svg +6 -0
- package/src/explorer-component/icons/DataIcon.svg +6 -0
- package/src/explorer-component/icons/DatabaseIcon.svg +6 -0
- package/src/explorer-component/icons/DatasetIcon.svg +6 -0
- package/src/explorer-component/icons/DeltaLakeIcon.svg +7 -0
- package/src/explorer-component/icons/DocumentIcon.svg +6 -0
- package/src/explorer-component/icons/MediaIcon.svg +6 -0
- package/src/explorer-component/icons/ModelIcon.svg +6 -0
- package/src/explorer-component/icons/TeamIcon.svg +3 -0
- package/src/explorer-component/icons/TokenIcon.svg +6 -0
- package/src/explorer-component/icons/UnknownIcon.svg +6 -0
- package/src/explorer-component/icons/index.ts +35 -0
- package/src/explorer-component/index.ts +5 -0
- package/src/explorer-component/integrityTypes/AnchorTypes.ts +31 -0
- package/src/explorer-component/integrityTypes/StatementTypes.ts +333 -0
- package/src/explorer-component/integrityTypes/VCTypes.ts +85 -0
- package/src/explorer-component/integrityTypes/types.ts +3 -0
- package/src/explorer-component/utils/config.ts +163 -0
- package/src/explorer-component/utils/formatTimestamp.ts +5 -0
- package/src/explorer-component/utils/generateGraph.ts +271 -0
- package/src/explorer-component/utils/layoutGraph.ts +148 -0
- package/src/explorer-component/utils/resolveIrohBlobs.ts +117 -0
- package/src/explorer-component/utils/statementHelpers.ts +252 -0
- package/src/explorer-component/utils/stripPrefix.ts +4 -0
- package/src/hooks/use-mobile.tsx +19 -0
- package/src/index.ts +3 -0
- package/src/lib/resource-types.ts +31 -0
- package/src/lib/use-escape-key.tsx +16 -0
- package/src/lib/utils.ts +19 -0
- package/src/main.css +82 -0
- package/src/main.tsx +39 -0
- package/src/v-comp-viewer/components/container-did-details.tsx +53 -0
- package/src/v-comp-viewer/components/system-did-details.tsx +356 -0
- package/src/v-comp-viewer/useVComp.ts +196 -0
- package/src/v-comp-viewer/utils.tsx +824 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.json +33 -0
- package/tsconfig.node.json +10 -0
- package/vercel.json +13 -0
- package/vite.app.config.ts +48 -0
- package/vite.lib.config.ts +61 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
const AMDLogo = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg width="51" height="12" viewBox="0 0 51 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<g id="AMD Logo 2" clipPath="url(#clip0_699_20724)">
|
|
5
|
+
<path
|
|
6
|
+
id="Vector"
|
|
7
|
+
d="M11.8341 11.2042H9.02857L8.17503 9.14416H3.52196L2.74405 11.2042H-0.000244141L4.19183 0.803223H7.19544L11.8341 11.2042ZM5.75126 3.28101L4.20984 7.33263H7.41152L5.75126 3.28101Z"
|
|
8
|
+
className="fill-text-primary"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
id="Vector_2"
|
|
12
|
+
d="M21.9537 0.803223H24.2118V11.2042H21.6188V4.72159L18.8133 7.9845H18.4171L15.6116 4.70718V11.1898H13.0186V0.803223H15.2767L18.6152 4.67117L21.9537 0.803223Z"
|
|
13
|
+
className="fill-text-primary"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
id="Vector_3"
|
|
17
|
+
d="M30.7813 0.803223C34.5772 0.803223 36.5436 3.16577 36.5436 6.01811C36.5436 9.0073 34.6528 11.2042 30.504 11.2042H26.1895V0.803223H30.7813ZM28.7825 9.29902H30.4752C33.0826 9.29902 33.8605 7.53071 33.8605 6.0037C33.8605 4.20298 32.8989 2.70838 30.4464 2.70838H28.7825V9.29902Z"
|
|
18
|
+
className="fill-text-primary"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
id="Vector_4"
|
|
22
|
+
d="M47.0487 3.27011H41.6862L38.4197 0H50.3188V11.9028L47.0487 8.63265V3.27011Z"
|
|
23
|
+
className="fill-text-primary"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
id="Vector_5"
|
|
27
|
+
d="M41.6821 8.63647V3.92578L38.3184 7.28953V12.0038H43.029L46.3928 8.63647H41.6821Z"
|
|
28
|
+
className="fill-text-primary"
|
|
29
|
+
/>
|
|
30
|
+
</g>
|
|
31
|
+
<defs>
|
|
32
|
+
<clipPath id="clip0_699_20724">
|
|
33
|
+
<rect width="50.3193" height="12" className="fill-text-primary" />
|
|
34
|
+
</clipPath>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|
|
37
|
+
);
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export default AMDLogo;
|
package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AzureLogo.tsx
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
const AzureLogo = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg width="15" height="15" viewBox="0 0 96 96" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient
|
|
6
|
+
id="e399c19f-b68f-429d-b176-18c2117ff73c"
|
|
7
|
+
x1="-1032.172"
|
|
8
|
+
x2="-1059.213"
|
|
9
|
+
y1="145.312"
|
|
10
|
+
y2="65.426"
|
|
11
|
+
gradientTransform="matrix(1 0 0 -1 1075 158)"
|
|
12
|
+
gradientUnits="userSpaceOnUse"
|
|
13
|
+
>
|
|
14
|
+
<stop offset="0" stop-color="#114a8b" />
|
|
15
|
+
<stop offset="1" stop-color="#0669bc" />
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient
|
|
18
|
+
id="ac2a6fc2-ca48-4327-9a3c-d4dcc3256e15"
|
|
19
|
+
x1="-1023.725"
|
|
20
|
+
x2="-1029.98"
|
|
21
|
+
y1="108.083"
|
|
22
|
+
y2="105.968"
|
|
23
|
+
gradientTransform="matrix(1 0 0 -1 1075 158)"
|
|
24
|
+
gradientUnits="userSpaceOnUse"
|
|
25
|
+
>
|
|
26
|
+
<stop offset="0" stop-opacity=".3" />
|
|
27
|
+
<stop offset=".071" stop-opacity=".2" />
|
|
28
|
+
<stop offset=".321" stop-opacity=".1" />
|
|
29
|
+
<stop offset=".623" stop-opacity=".05" />
|
|
30
|
+
<stop offset="1" stop-opacity="0" />
|
|
31
|
+
</linearGradient>
|
|
32
|
+
<linearGradient
|
|
33
|
+
id="a7fee970-a784-4bb1-af8d-63d18e5f7db9"
|
|
34
|
+
x1="-1027.165"
|
|
35
|
+
x2="-997.482"
|
|
36
|
+
y1="147.642"
|
|
37
|
+
y2="68.561"
|
|
38
|
+
gradientTransform="matrix(1 0 0 -1 1075 158)"
|
|
39
|
+
gradientUnits="userSpaceOnUse"
|
|
40
|
+
>
|
|
41
|
+
<stop offset="0" stop-color="#3ccbf4" />
|
|
42
|
+
<stop offset="1" stop-color="#2892df" />
|
|
43
|
+
</linearGradient>
|
|
44
|
+
</defs>
|
|
45
|
+
<path
|
|
46
|
+
fill="url(#e399c19f-b68f-429d-b176-18c2117ff73c)"
|
|
47
|
+
d="M33.338 6.544h26.038l-27.03 80.087a4.152 4.152 0 0 1-3.933 2.824H8.149a4.145 4.145 0 0 1-3.928-5.47L29.404 9.368a4.152 4.152 0 0 1 3.934-2.825z"
|
|
48
|
+
/>
|
|
49
|
+
<path
|
|
50
|
+
fill="#0078d4"
|
|
51
|
+
d="M71.175 60.261h-41.29a1.911 1.911 0 0 0-1.305 3.309l26.532 24.764a4.171 4.171 0 0 0 2.846 1.121h23.38z"
|
|
52
|
+
/>
|
|
53
|
+
<path
|
|
54
|
+
fill="url(#ac2a6fc2-ca48-4327-9a3c-d4dcc3256e15)"
|
|
55
|
+
d="M33.338 6.544a4.118 4.118 0 0 0-3.943 2.879L4.252 83.917a4.14 4.14 0 0 0 3.908 5.538h20.787a4.443 4.443 0 0 0 3.41-2.9l5.014-14.777 17.91 16.705a4.237 4.237 0 0 0 2.666.972H81.24L71.024 60.261l-29.781.007L59.47 6.544z"
|
|
56
|
+
/>
|
|
57
|
+
<path
|
|
58
|
+
fill="url(#a7fee970-a784-4bb1-af8d-63d18e5f7db9)"
|
|
59
|
+
d="M66.595 9.364a4.145 4.145 0 0 0-3.928-2.82H33.648a4.146 4.146 0 0 1 3.928 2.82l25.184 74.62a4.146 4.146 0 0 1-3.928 5.472h29.02a4.146 4.146 0 0 0 3.927-5.472z"
|
|
60
|
+
/>
|
|
61
|
+
</svg>
|
|
62
|
+
);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export default AzureLogo;
|
package/src/explorer-component/components/sidebar/sections/registration/actor/svg/IntelLogo.tsx
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const IntelLogo = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg width="38" height="15" viewBox="0 0 38 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<g clipPath="url(#clip0_821_3613)">
|
|
5
|
+
<path d="M3.15222 0.500488H0.45166V3.20414H3.15222V0.500488Z" fill="#0068B5" />
|
|
6
|
+
<path
|
|
7
|
+
d="M3.08496 14.5863V4.84933H0.528564V14.5863H3.08496ZM20.0764 14.6826V12.2964C19.7016 12.2964 19.3844 12.2772 19.1538 12.2387C18.8847 12.2002 18.6828 12.104 18.5483 11.9693C18.4137 11.8346 18.3272 11.6422 18.2792 11.392C18.2408 11.1515 18.2215 10.8339 18.2215 10.4491V7.04305H20.0764V4.84933H18.2215V1.04882H15.6555V10.4683C15.6555 11.2669 15.7228 11.9404 15.8573 12.4792C15.9919 13.0084 16.2225 13.4414 16.5397 13.7685C16.8568 14.0956 17.2797 14.3266 17.7891 14.4709C18.308 14.6152 18.9615 14.6826 19.74 14.6826H20.0764ZM34.7612 14.5863V0.29834H32.1952V14.5863H34.7612ZM13.1856 5.80187C12.4744 5.03214 11.4749 4.64728 10.2064 4.64728C9.59129 4.64728 9.03388 4.77236 8.52452 5.02252C8.02477 5.27268 7.5923 5.61906 7.25593 6.06165L7.11177 6.24446V6.08089V4.84933H4.5842V14.5863H7.13099V9.40033V9.75633C7.13099 9.6986 7.13099 9.64087 7.13099 9.58314C7.15982 8.66909 7.38087 7.99558 7.80373 7.56261C8.25542 7.10078 8.80322 6.86986 9.42791 6.86986C10.1679 6.86986 10.7349 7.10078 11.1097 7.54337C11.4749 7.98596 11.6672 8.61136 11.6672 9.40995V9.42919V14.5767H14.2524V9.05395C14.262 7.66845 13.8968 6.57159 13.1856 5.80187ZM30.869 9.6986C30.869 8.99622 30.744 8.34196 30.5038 7.72618C30.2539 7.12002 29.9079 6.58121 29.4755 6.11938C29.0334 5.65754 28.5048 5.30155 27.8897 5.04177C27.2746 4.78198 26.5923 4.6569 25.8523 4.6569C25.1507 4.6569 24.4876 4.79161 23.8725 5.05139C23.2574 5.32079 22.7193 5.67679 22.2676 6.129C21.8159 6.58121 21.4507 7.12002 21.1912 7.7358C20.9221 8.35158 20.7972 9.01547 20.7972 9.71784C20.7972 10.4202 20.9221 11.0841 21.172 11.6999C21.4218 12.3157 21.7774 12.8545 22.2195 13.3067C22.6616 13.7589 23.2094 14.1245 23.8437 14.3843C24.478 14.6537 25.1795 14.7884 25.9292 14.7884C28.1011 14.7884 29.4466 13.7974 30.2539 12.8737L28.4087 11.469C28.0243 11.9308 27.1017 12.5562 25.9484 12.5562C25.2276 12.5562 24.6318 12.3926 24.1801 12.0559C23.7284 11.7287 23.4208 11.2669 23.2574 10.6992L23.2286 10.6126H30.869V9.6986ZM23.2478 8.80379C23.2478 8.0918 24.0647 6.85062 25.8235 6.841C27.5822 6.841 28.4087 8.08218 28.4087 8.79417L23.2478 8.80379Z"
|
|
8
|
+
className="fill-text-primary"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M37.6828 13.3161C37.6347 13.2006 37.5674 13.1044 37.4809 13.0178C37.3944 12.9312 37.2983 12.8639 37.183 12.8157C37.0677 12.7676 36.9427 12.7388 36.8178 12.7388C36.6833 12.7388 36.5679 12.7676 36.4526 12.8157C36.3373 12.8639 36.2412 12.9312 36.1547 13.0178C36.0682 13.1044 36.0009 13.2006 35.9529 13.3161C35.9048 13.4315 35.876 13.5566 35.876 13.6817C35.876 13.8164 35.9048 13.9318 35.9529 14.0473C36.0009 14.1628 36.0682 14.259 36.1547 14.3456C36.2412 14.4322 36.3373 14.4995 36.4526 14.5476C36.5679 14.5957 36.6929 14.6246 36.8178 14.6246C36.9524 14.6246 37.0677 14.5957 37.183 14.5476C37.2983 14.4995 37.3944 14.4322 37.4809 14.3456C37.5674 14.259 37.6347 14.1628 37.6828 14.0473C37.7308 13.9318 37.7596 13.8068 37.7596 13.6817C37.7596 13.5566 37.7308 13.4315 37.6828 13.3161ZM37.529 13.9896C37.4905 14.0858 37.4329 14.1724 37.3656 14.2397C37.2983 14.3071 37.2118 14.3648 37.1157 14.4033C37.0196 14.4418 36.9235 14.461 36.8082 14.461C36.7025 14.461 36.5968 14.4418 36.5007 14.4033C36.4046 14.3648 36.3181 14.3071 36.2508 14.2397C36.1835 14.1724 36.1259 14.0858 36.0874 13.9896C36.049 13.8934 36.0297 13.7971 36.0297 13.6817C36.0297 13.5758 36.049 13.47 36.0874 13.3738C36.1259 13.2776 36.1835 13.191 36.2508 13.1236C36.3181 13.0563 36.4046 12.9986 36.5007 12.9601C36.5968 12.9216 36.6929 12.9023 36.8082 12.9023C36.9139 12.9023 37.0196 12.9216 37.1157 12.9601C37.2118 12.9986 37.2983 13.0563 37.3656 13.1236C37.4329 13.191 37.4905 13.2776 37.529 13.3738C37.5674 13.47 37.5867 13.5662 37.5867 13.6817C37.5963 13.7971 37.5674 13.8934 37.529 13.9896ZM36.9908 13.7587C37.0677 13.749 37.1253 13.7202 37.1734 13.6721C37.2214 13.624 37.2503 13.5566 37.2503 13.4604C37.2503 13.3545 37.2215 13.2776 37.1542 13.2198C37.0965 13.1621 36.9908 13.1333 36.8659 13.1333H36.443V14.2205H36.6448V13.7779H36.789L37.0581 14.2205H37.2695L36.9908 13.7587ZM36.8851 13.6047C36.8562 13.6047 36.8274 13.6047 36.789 13.6047H36.6448V13.2968H36.789C36.8178 13.2968 36.8466 13.2968 36.8851 13.2968C36.9139 13.2968 36.9427 13.3064 36.9716 13.3161C37.0004 13.3257 37.0196 13.3449 37.0292 13.3642C37.0388 13.3834 37.0485 13.4123 37.0485 13.4508C37.0485 13.4893 37.0388 13.5181 37.0292 13.5374C37.01 13.5566 36.9908 13.5758 36.9716 13.5855C36.9427 13.5951 36.9139 13.6047 36.8851 13.6047Z"
|
|
12
|
+
className="fill-text-primary"
|
|
13
|
+
/>
|
|
14
|
+
</g>
|
|
15
|
+
<defs>
|
|
16
|
+
<clipPath id="clip0_821_3613">
|
|
17
|
+
<rect width="38" height="15" className="fill-text-primary" />
|
|
18
|
+
</clipPath>
|
|
19
|
+
</defs>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default IntelLogo;
|
package/src/explorer-component/components/sidebar/sections/registration/actor/svg/NvidiaLogo.tsx
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
const NvidiaLogo = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg width="60" height="24" viewBox="0 0 60 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<g clipPath="url(#clip0_699_20709)">
|
|
5
|
+
<path
|
|
6
|
+
d="M59.2249 15.3394V15.1732H59.3296C59.385 15.1732 59.465 15.1793 59.465 15.247C59.465 15.3148 59.4219 15.3394 59.3542 15.3394H59.2249ZM59.2249 15.4563H59.2988L59.465 15.7457H59.6435L59.4588 15.444C59.5512 15.4502 59.625 15.3825 59.6312 15.2901V15.2655C59.6312 15.1055 59.5204 15.0562 59.3357 15.0562H59.071V15.7457H59.2249V15.4563ZM60.0005 15.4009C60.0005 14.9947 59.6866 14.7607 59.3357 14.7607C58.9848 14.7607 58.6709 14.9947 58.6709 15.4009C58.6709 15.8072 58.9848 16.0411 59.3357 16.0411C59.6866 16.0411 60.0005 15.8072 60.0005 15.4009ZM59.8036 15.4009C59.8159 15.6595 59.6127 15.8811 59.3542 15.8934H59.3357C59.0649 15.9057 58.8371 15.6903 58.8248 15.4194C58.8125 15.1486 59.0279 14.9208 59.2988 14.9085C59.5696 14.8962 59.7974 15.1116 59.8097 15.3825C59.8036 15.3886 59.8036 15.3948 59.8036 15.4009Z"
|
|
7
|
+
className="fill-text-primary"
|
|
8
|
+
/>
|
|
9
|
+
<path
|
|
10
|
+
d="M35.5919 8.56212V15.8259H37.6418V8.56212H35.5919ZM19.4639 8.5498V15.8197H21.5322V10.1749L23.145 10.1811C23.6744 10.1811 24.0437 10.3103 24.2961 10.5812C24.6224 10.9259 24.7516 11.4861 24.7516 12.5018V15.8197H26.7584V11.8062C26.7584 8.93762 24.9302 8.5498 23.145 8.5498H19.4639ZM38.8975 8.56212V15.8259H42.2216C43.9945 15.8259 44.5731 15.5304 45.1949 14.8717C45.6381 14.4101 45.9212 13.3882 45.9212 12.274C45.9212 11.2522 45.6812 10.3411 45.2564 9.7748C44.5054 8.7591 43.4097 8.56212 41.7723 8.56212H38.8975ZM40.9289 10.138H41.8092C43.0896 10.138 43.9145 10.7105 43.9145 12.2002C43.9145 13.6898 43.0896 14.2685 41.8092 14.2685H40.9289V10.138ZM32.6372 8.56212L30.9259 14.3177L29.2884 8.56212H27.0724L29.4115 15.8259H32.3663L34.7301 8.56212H32.6372ZM46.8815 15.8259H48.9314V8.56212H46.8815V15.8259ZM52.631 8.56212L49.7686 15.8197H51.7877L52.2432 14.5332H55.6288L56.0597 15.8136H58.2573L55.3703 8.56212H52.631ZM53.9606 9.8856L55.2041 13.2836H52.6802L53.9606 9.8856Z"
|
|
11
|
+
className="fill-text-primary"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M6.23577 9.76872V8.77149C6.33426 8.76533 6.43275 8.75917 6.53124 8.75917C9.26439 8.67299 11.0557 11.1107 11.0557 11.1107C11.0557 11.1107 9.12281 13.7946 7.04832 13.7946C6.77131 13.7946 6.50046 13.7515 6.24192 13.6653V10.6367C7.30686 10.7659 7.52232 11.2338 8.15636 12.2987L9.57833 11.1045C9.57833 11.1045 8.53801 9.74409 6.78978 9.74409C6.60511 9.73794 6.42044 9.75025 6.23577 9.76872ZM6.23577 6.46924V7.95893L6.53124 7.94046C10.3293 7.81119 12.8101 11.0553 12.8101 11.0553C12.8101 11.0553 9.96614 14.5148 7.00523 14.5148C6.74669 14.5148 6.49431 14.4902 6.24192 14.4471V15.3704C6.45122 15.3951 6.66667 15.4135 6.87596 15.4135C9.63373 15.4135 11.6282 14.0039 13.5611 12.3418C13.8812 12.6004 15.1924 13.2221 15.4632 13.4929C13.6288 15.0319 9.35057 16.2692 6.92521 16.2692C6.69129 16.2692 6.46968 16.2569 6.24808 16.2322V17.5311H16.7251V6.46924H6.23577ZM6.23577 13.6653V14.4532C3.68729 13.9977 2.97938 11.3446 2.97938 11.3446C2.97938 11.3446 4.20437 9.99032 6.23577 9.76872V10.6305H6.22961C5.16467 10.5012 4.32749 11.4985 4.32749 11.4985C4.32749 11.4985 4.80148 13.179 6.23577 13.6653ZM1.7113 11.2338C1.7113 11.2338 3.21945 9.0054 6.24192 8.77149V7.95893C2.8932 8.22978 0 11.0614 0 11.0614C0 11.0614 1.63743 15.8013 6.23577 16.2322V15.3704C2.86242 14.9518 1.7113 11.2338 1.7113 11.2338Z"
|
|
15
|
+
fill="#76B900"
|
|
16
|
+
/>
|
|
17
|
+
</g>
|
|
18
|
+
<defs>
|
|
19
|
+
<clipPath id="clip0_699_20709">
|
|
20
|
+
<rect width="60" height="24" className="fill-text-primary" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
</defs>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export default NvidiaLogo;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
let verifier: typeof import("@eqtylab/integrity-js");
|
|
2
|
+
|
|
3
|
+
export const initVerifier = async () => {
|
|
4
|
+
if (!verifier) {
|
|
5
|
+
verifier = await import("@eqtylab/integrity-js");
|
|
6
|
+
}
|
|
7
|
+
return verifier;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const getVerifier = () => {
|
|
11
|
+
if (!verifier) throw new Error("Verifier not initialized");
|
|
12
|
+
return verifier;
|
|
13
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M3.90834 11.2583L4.75417 12.6875C4.83195 12.8139 4.93889 12.899 5.075 12.9427C5.21111 12.9865 5.34722 12.9792 5.48334 12.9208L7 12.2792L8.51667 12.9208C8.65278 12.9792 8.78889 12.9865 8.925 12.9427C9.06111 12.899 9.16806 12.8139 9.24584 12.6875L10.0917 11.2583L11.6958 10.9083C11.8417 10.8792 11.9583 10.8038 12.0458 10.6823C12.1333 10.5608 12.1674 10.4271 12.1479 10.2812L11.9875 8.63333L13.0813 7.37916C13.1785 7.27221 13.2271 7.14583 13.2271 6.99999C13.2271 6.85416 13.1785 6.72777 13.0813 6.62083L11.9875 5.36666L12.1479 3.71874C12.1674 3.57291 12.1333 3.43923 12.0458 3.3177C11.9583 3.19617 11.8417 3.12083 11.6958 3.09166L10.0917 2.74166L9.24584 1.31249C9.16806 1.1861 9.06111 1.10103 8.925 1.05728C8.78889 1.01353 8.65278 1.02083 8.51667 1.07916L7 1.72083L5.48334 1.07916C5.34722 1.02083 5.21111 1.01353 5.075 1.05728C4.93889 1.10103 4.83195 1.1861 4.75417 1.31249L3.90834 2.74166L2.30417 3.09166C2.15834 3.12083 2.04167 3.19617 1.95417 3.3177C1.86667 3.43923 1.83264 3.57291 1.85209 3.71874L2.0125 5.36666L0.918752 6.62083C0.82153 6.72777 0.772919 6.85416 0.772919 6.99999C0.772919 7.14583 0.82153 7.27221 0.918752 7.37916L2.0125 8.63333L1.85209 10.2812C1.83264 10.4271 1.86667 10.5608 1.95417 10.6823C2.04167 10.8038 2.15834 10.8792 2.30417 10.9083L3.90834 11.2583Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M7.47254 9.26664C7.75031 9.54442 8.10031 9.67498 8.52254 9.65831C8.94476 9.64164 9.25031 9.48887 9.4392 9.19998L12.2559 4.98331C12.3559 4.82775 12.342 4.68609 12.2142 4.55831C12.0864 4.43053 11.9448 4.41664 11.7892 4.51664L7.57254 7.33331C7.28365 7.53331 7.12531 7.83609 7.09754 8.24164C7.06976 8.6472 7.19476 8.98887 7.47254 9.26664ZM3.90587 12.2666C3.66142 12.2666 3.43642 12.2139 3.23087 12.1083C3.02531 12.0028 2.86142 11.8444 2.7392 11.6333C2.45031 11.1111 2.22809 10.5694 2.07254 10.0083C1.91698 9.4472 1.8392 8.86664 1.8392 8.26664C1.8392 7.34442 2.0142 6.47775 2.3642 5.66664C2.7142 4.85553 3.1892 4.14998 3.7892 3.54998C4.3892 2.94998 5.09476 2.47498 5.90587 2.12498C6.71698 1.77498 7.58365 1.59998 8.50587 1.59998C9.41698 1.59998 10.2725 1.7722 11.0725 2.11664C11.8725 2.46109 12.5725 2.93053 13.1725 3.52498C13.7725 4.11942 14.2503 4.81386 14.6059 5.60831C14.9614 6.40275 15.1448 7.25553 15.1559 8.16664C15.167 8.77775 15.0975 9.37498 14.9475 9.95831C14.7975 10.5416 14.567 11.1 14.2559 11.6333C14.1336 11.8444 13.9698 12.0028 13.7642 12.1083C13.5586 12.2139 13.3336 12.2666 13.0892 12.2666H3.90587Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M5.68451 8.71817C5.91785 8.9515 6.21185 9.06117 6.56652 9.04717C6.92118 9.03317 7.17785 8.90483 7.33652 8.66217L9.70252 5.12017C9.78652 4.9895 9.77485 4.8705 9.66752 4.76317C9.56018 4.65583 9.44118 4.64417 9.31052 4.72817L5.76852 7.09417C5.52585 7.26217 5.39285 7.5165 5.36952 7.85717C5.34618 8.19783 5.45118 8.48483 5.68451 8.71817ZM2.68851 11.2382C2.48318 11.2382 2.29418 11.1938 2.12151 11.1052C1.94885 11.0165 1.81118 10.8835 1.70851 10.7062C1.46585 10.2675 1.27918 9.8125 1.14851 9.34117C1.01785 8.86983 0.952515 8.38217 0.952515 7.87817C0.952515 7.1035 1.09951 6.3755 1.39351 5.69417C1.68751 5.01283 2.08651 4.42017 2.59051 3.91617C3.09451 3.41217 3.68718 3.01317 4.36852 2.71917C5.04985 2.42517 5.77785 2.27817 6.55252 2.27817C7.31785 2.27817 8.03652 2.42283 8.70852 2.71217C9.38052 3.0015 9.96852 3.39583 10.4725 3.89517C10.9765 4.3945 11.3778 4.97783 11.6765 5.64517C11.9752 6.3125 12.1292 7.02883 12.1385 7.79417C12.1478 8.3075 12.0895 8.80917 11.9635 9.29917C11.8375 9.78917 11.6438 10.2582 11.3825 10.7062C11.2798 10.8835 11.1422 11.0165 10.9695 11.1052C10.7968 11.1938 10.6078 11.2382 10.4025 11.2382H2.68851Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M6.99999 7.58333C6.51388 7.58333 6.10069 7.41319 5.76041 7.07291C5.42013 6.73264 5.24999 6.31944 5.24999 5.83333C5.24999 5.34722 5.42013 4.93403 5.76041 4.59375C6.10069 4.25347 6.51388 4.08333 6.99999 4.08333C7.48611 4.08333 7.8993 4.25347 8.23958 4.59375C8.57986 4.93403 8.74999 5.34722 8.74999 5.83333C8.74999 6.31944 8.57986 6.73264 8.23958 7.07291C7.8993 7.41319 7.48611 7.58333 6.99999 7.58333ZM6.99999 12.25L4.27291 13.1542C4.07847 13.2222 3.90104 13.1979 3.74062 13.0812C3.5802 12.9646 3.49999 12.809 3.49999 12.6146V8.91041C3.13055 8.50208 2.84374 8.03541 2.63958 7.51041C2.43541 6.98541 2.33333 6.42639 2.33333 5.83333C2.33333 4.53055 2.78541 3.42708 3.68958 2.52291C4.59374 1.61875 5.69722 1.16666 6.99999 1.16666C8.30277 1.16666 9.40624 1.61875 10.3104 2.52291C11.2146 3.42708 11.6667 4.53055 11.6667 5.83333C11.6667 6.42639 11.5646 6.98541 11.3604 7.51041C11.1562 8.03541 10.8694 8.50208 10.5 8.91041V12.6146C10.5 12.809 10.4198 12.9646 10.2594 13.0812C10.099 13.1979 9.92152 13.2222 9.72708 13.1542L6.99999 12.25ZM6.99999 9.33333C7.97222 9.33333 8.79861 8.99305 9.47916 8.3125C10.1597 7.63194 10.5 6.80555 10.5 5.83333C10.5 4.86111 10.1597 4.03472 9.47916 3.35416C8.79861 2.67361 7.97222 2.33333 6.99999 2.33333C6.02777 2.33333 5.20138 2.67361 4.52083 3.35416C3.84027 4.03472 3.49999 4.86111 3.49999 5.83333C3.49999 6.80555 3.84027 7.63194 4.52083 8.3125C5.20138 8.99305 6.02777 9.33333 6.99999 9.33333Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M2.81458 7.01458L5.075 9.275C5.18194 9.38194 5.23541 9.51806 5.23541 9.68333C5.23541 9.84861 5.18194 9.98472 5.075 10.0917C4.96805 10.1986 4.83194 10.2521 4.66666 10.2521C4.50139 10.2521 4.36528 10.1986 4.25833 10.0917L1.575 7.40833C1.51666 7.35 1.47535 7.28681 1.45104 7.21875C1.42673 7.15069 1.41458 7.07778 1.41458 7C1.41458 6.92222 1.42673 6.84931 1.45104 6.78125C1.47535 6.71319 1.51666 6.65 1.575 6.59167L4.25833 3.90833C4.375 3.79167 4.51354 3.73333 4.67396 3.73333C4.83437 3.73333 4.97291 3.79167 5.08958 3.90833C5.20625 4.025 5.26458 4.16354 5.26458 4.32396C5.26458 4.48438 5.20625 4.62292 5.08958 4.73958L2.81458 7.01458ZM11.1854 6.98542L8.925 4.725C8.81805 4.61806 8.76458 4.48194 8.76458 4.31667C8.76458 4.15139 8.81805 4.01528 8.925 3.90833C9.03194 3.80139 9.16805 3.74792 9.33333 3.74792C9.49861 3.74792 9.63472 3.80139 9.74166 3.90833L12.425 6.59167C12.4833 6.65 12.5247 6.71319 12.549 6.78125C12.5733 6.84931 12.5854 6.92222 12.5854 7C12.5854 7.07778 12.5733 7.15069 12.549 7.21875C12.5247 7.28681 12.4833 7.35 12.425 7.40833L9.74166 10.0917C9.625 10.2083 9.48889 10.2642 9.33333 10.2594C9.17778 10.2545 9.04166 10.1938 8.925 10.0771C8.80833 9.96042 8.75 9.82188 8.75 9.66146C8.75 9.50104 8.80833 9.3625 8.925 9.24583L11.1854 6.98542Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11">
|
|
2
|
+
<path
|
|
3
|
+
d="M3.75 6.66667V4.33333C3.75 4.16806 3.8059 4.02951 3.91771 3.91771C4.02951 3.8059 4.16806 3.75 4.33333 3.75H6.66667C6.83194 3.75 6.97049 3.8059 7.08229 3.91771C7.1941 4.02951 7.25 4.16806 7.25 4.33333V6.66667C7.25 6.83194 7.1941 6.97049 7.08229 7.08229C6.97049 7.1941 6.83194 7.25 6.66667 7.25H4.33333C4.16806 7.25 4.02951 7.1941 3.91771 7.08229C3.8059 6.97049 3.75 6.83194 3.75 6.66667ZM3.75 10.1667V9.58333H2.58333C2.2625 9.58333 1.98785 9.4691 1.75937 9.24063C1.5309 9.01215 1.41667 8.7375 1.41667 8.41667V7.25H0.833333C0.668056 7.25 0.529514 7.1941 0.417708 7.08229C0.305903 6.97049 0.25 6.83194 0.25 6.66667C0.25 6.50139 0.305903 6.36285 0.417708 6.25104C0.529514 6.13924 0.668056 6.08333 0.833333 6.08333H1.41667V4.91667H0.833333C0.668056 4.91667 0.529514 4.86076 0.417708 4.74896C0.305903 4.63715 0.25 4.49861 0.25 4.33333C0.25 4.16806 0.305903 4.02951 0.417708 3.91771C0.529514 3.8059 0.668056 3.75 0.833333 3.75H1.41667V2.58333C1.41667 2.2625 1.5309 1.98785 1.75937 1.75937C1.98785 1.5309 2.2625 1.41667 2.58333 1.41667H3.75V0.833333C3.75 0.668056 3.8059 0.529514 3.91771 0.417708C4.02951 0.305903 4.16806 0.25 4.33333 0.25C4.49861 0.25 4.63715 0.305903 4.74896 0.417708C4.86076 0.529514 4.91667 0.668056 4.91667 0.833333V1.41667H6.08333V0.833333C6.08333 0.668056 6.13924 0.529514 6.25104 0.417708C6.36285 0.305903 6.50139 0.25 6.66667 0.25C6.83194 0.25 6.97049 0.305903 7.08229 0.417708C7.1941 0.529514 7.25 0.668056 7.25 0.833333V1.41667H8.41667C8.7375 1.41667 9.01215 1.5309 9.24063 1.75937C9.4691 1.98785 9.58333 2.2625 9.58333 2.58333V3.75H10.1667C10.3319 3.75 10.4705 3.8059 10.5823 3.91771C10.6941 4.02951 10.75 4.16806 10.75 4.33333C10.75 4.49861 10.6941 4.63715 10.5823 4.74896C10.4705 4.86076 10.3319 4.91667 10.1667 4.91667H9.58333V6.08333H10.1667C10.3319 6.08333 10.4705 6.13924 10.5823 6.25104C10.6941 6.36285 10.75 6.50139 10.75 6.66667C10.75 6.83194 10.6941 6.97049 10.5823 7.08229C10.4705 7.1941 10.3319 7.25 10.1667 7.25H9.58333V8.41667C9.58333 8.7375 9.4691 9.01215 9.24063 9.24063C9.01215 9.4691 8.7375 9.58333 8.41667 9.58333H7.25V10.1667C7.25 10.3319 7.1941 10.4705 7.08229 10.5823C6.97049 10.6941 6.83194 10.75 6.66667 10.75C6.50139 10.75 6.36285 10.6941 6.25104 10.5823C6.13924 10.4705 6.08333 10.3319 6.08333 10.1667V9.58333H4.91667V10.1667C4.91667 10.3319 4.86076 10.4705 4.74896 10.5823C4.63715 10.6941 4.49861 10.75 4.33333 10.75C4.16806 10.75 4.02951 10.6941 3.91771 10.5823C3.8059 10.4705 3.75 10.3319 3.75 10.1667ZM8.41667 8.41667V2.58333H2.58333V8.41667H8.41667Z"
|
|
4
|
+
fill="black"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M7 6.41667C8.45833 6.41667 9.69792 6.18819 10.7188 5.73125C11.7396 5.27431 12.25 4.725 12.25 4.08333C12.25 3.44167 11.7396 2.89236 10.7188 2.43542C9.69792 1.97847 8.45833 1.75 7 1.75C5.54167 1.75 4.30208 1.97847 3.28125 2.43542C2.26042 2.89236 1.75 3.44167 1.75 4.08333C1.75 4.725 2.26042 5.27431 3.28125 5.73125C4.30208 6.18819 5.54167 6.41667 7 6.41667ZM7 7.875C7.39861 7.875 7.89688 7.83368 8.49479 7.75104C9.09271 7.6684 9.66875 7.53472 10.2229 7.35C10.7771 7.16528 11.2535 6.92465 11.6521 6.62813C12.0507 6.3316 12.25 5.96944 12.25 5.54167V7C12.25 7.42778 12.0507 7.78993 11.6521 8.08646C11.2535 8.38299 10.7771 8.62361 10.2229 8.80833C9.66875 8.99306 9.09271 9.12674 8.49479 9.20938C7.89688 9.29201 7.39861 9.33333 7 9.33333C6.60139 9.33333 6.10313 9.29201 5.50521 9.20938C4.90729 9.12674 4.33125 8.99306 3.77708 8.80833C3.22292 8.62361 2.74653 8.38299 2.34792 8.08646C1.94931 7.78993 1.75 7.42778 1.75 7V5.54167C1.75 5.96944 1.94931 6.3316 2.34792 6.62813C2.74653 6.92465 3.22292 7.16528 3.77708 7.35C4.33125 7.53472 4.90729 7.6684 5.50521 7.75104C6.10313 7.83368 6.60139 7.875 7 7.875ZM7 10.7917C7.39861 10.7917 7.89688 10.7503 8.49479 10.6677C9.09271 10.5851 9.66875 10.4514 10.2229 10.2667C10.7771 10.0819 11.2535 9.84132 11.6521 9.54479C12.0507 9.24826 12.25 8.88611 12.25 8.45833V9.91667C12.25 10.3444 12.0507 10.7066 11.6521 11.0031C11.2535 11.2997 10.7771 11.5403 10.2229 11.725C9.66875 11.9097 9.09271 12.0434 8.49479 12.126C7.89688 12.2087 7.39861 12.25 7 12.25C6.60139 12.25 6.10313 12.2087 5.50521 12.126C4.90729 12.0434 4.33125 11.9097 3.77708 11.725C3.22292 11.5403 2.74653 11.2997 2.34792 11.0031C1.94931 10.7066 1.75 10.3444 1.75 9.91667V8.45833C1.75 8.88611 1.94931 9.24826 2.34792 9.54479C2.74653 9.84132 3.22292 10.0819 3.77708 10.2667C4.33125 10.4514 4.90729 10.5851 5.50521 10.6677C6.10313 10.7503 6.60139 10.7917 7 10.7917Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M7 6.41667C8.45833 6.41667 9.69792 6.18819 10.7188 5.73125C11.7396 5.27431 12.25 4.725 12.25 4.08333C12.25 3.44167 11.7396 2.89236 10.7188 2.43542C9.69792 1.97847 8.45833 1.75 7 1.75C5.54167 1.75 4.30208 1.97847 3.28125 2.43542C2.26042 2.89236 1.75 3.44167 1.75 4.08333C1.75 4.725 2.26042 5.27431 3.28125 5.73125C4.30208 6.18819 5.54167 6.41667 7 6.41667ZM7 7.875C7.39861 7.875 7.89687 7.83368 8.49479 7.75104C9.09271 7.6684 9.66875 7.53472 10.2229 7.35C10.7771 7.16528 11.2535 6.92465 11.6521 6.62813C12.0507 6.3316 12.25 5.96944 12.25 5.54167V7C12.25 7.42778 12.0507 7.78993 11.6521 8.08646C11.2535 8.38299 10.7771 8.62361 10.2229 8.80833C9.66875 8.99306 9.09271 9.12674 8.49479 9.20937C7.89687 9.29201 7.39861 9.33333 7 9.33333C6.60139 9.33333 6.10313 9.29201 5.50521 9.20937C4.90729 9.12674 4.33125 8.99306 3.77708 8.80833C3.22292 8.62361 2.74653 8.38299 2.34792 8.08646C1.94931 7.78993 1.75 7.42778 1.75 7V5.54167C1.75 5.96944 1.94931 6.3316 2.34792 6.62813C2.74653 6.92465 3.22292 7.16528 3.77708 7.35C4.33125 7.53472 4.90729 7.6684 5.50521 7.75104C6.10313 7.83368 6.60139 7.875 7 7.875ZM7 10.7917C7.39861 10.7917 7.89687 10.7503 8.49479 10.6677C9.09271 10.5851 9.66875 10.4514 10.2229 10.2667C10.7771 10.0819 11.2535 9.84132 11.6521 9.54479C12.0507 9.24826 12.25 8.88611 12.25 8.45833V9.91667C12.25 10.3444 12.0507 10.7066 11.6521 11.0031C11.2535 11.2997 10.7771 11.5403 10.2229 11.725C9.66875 11.9097 9.09271 12.0434 8.49479 12.126C7.89687 12.2087 7.39861 12.25 7 12.25C6.60139 12.25 6.10313 12.2087 5.50521 12.126C4.90729 12.0434 4.33125 11.9097 3.77708 11.725C3.22292 11.5403 2.74653 11.2997 2.34792 11.0031C1.94931 10.7066 1.75 10.3444 1.75 9.91667V8.45833C1.75 8.88611 1.94931 9.24826 2.34792 9.54479C2.74653 9.84132 3.22292 10.0819 3.77708 10.2667C4.33125 10.4514 4.90729 10.5851 5.50521 10.6677C6.10313 10.7503 6.60139 10.7917 7 10.7917Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M4.66667 9.91667H5.83333C5.99861 9.91667 6.13715 9.86076 6.24896 9.74896C6.36076 9.63715 6.41667 9.49861 6.41667 9.33333V8.16667C6.41667 8.00139 6.36076 7.86285 6.24896 7.75104C6.13715 7.63924 5.99861 7.58333 5.83333 7.58333H4.66667C4.50139 7.58333 4.36285 7.63924 4.25104 7.75104C4.13924 7.86285 4.08333 8.00139 4.08333 8.16667V9.33333C4.08333 9.49861 4.13924 9.63715 4.25104 9.74896C4.36285 9.86076 4.50139 9.91667 4.66667 9.91667ZM8.16667 9.91667H9.33333C9.49861 9.91667 9.63715 9.86076 9.74896 9.74896C9.86076 9.63715 9.91667 9.49861 9.91667 9.33333V8.16667C9.91667 8.00139 9.86076 7.86285 9.74896 7.75104C9.63715 7.63924 9.49861 7.58333 9.33333 7.58333H8.16667C8.00139 7.58333 7.86285 7.63924 7.75104 7.75104C7.63924 7.86285 7.58333 8.00139 7.58333 8.16667V9.33333C7.58333 9.49861 7.63924 9.63715 7.75104 9.74896C7.86285 9.86076 8.00139 9.91667 8.16667 9.91667ZM4.66667 6.41667H5.83333C5.99861 6.41667 6.13715 6.36076 6.24896 6.24896C6.36076 6.13715 6.41667 5.99861 6.41667 5.83333V4.66667C6.41667 4.50139 6.36076 4.36285 6.24896 4.25104C6.13715 4.13924 5.99861 4.08333 5.83333 4.08333H4.66667C4.50139 4.08333 4.36285 4.13924 4.25104 4.25104C4.13924 4.36285 4.08333 4.50139 4.08333 4.66667V5.83333C4.08333 5.99861 4.13924 6.13715 4.25104 6.24896C4.36285 6.36076 4.50139 6.41667 4.66667 6.41667ZM8.16667 6.41667H9.33333C9.49861 6.41667 9.63715 6.36076 9.74896 6.24896C9.86076 6.13715 9.91667 5.99861 9.91667 5.83333V4.66667C9.91667 4.50139 9.86076 4.36285 9.74896 4.25104C9.63715 4.13924 9.49861 4.08333 9.33333 4.08333H8.16667C8.00139 4.08333 7.86285 4.13924 7.75104 4.25104C7.63924 4.36285 7.58333 4.50139 7.58333 4.66667V5.83333C7.58333 5.99861 7.63924 6.13715 7.75104 6.24896C7.86285 6.36076 8.00139 6.41667 8.16667 6.41667ZM2.91667 12.25C2.59583 12.25 2.32118 12.1358 2.09271 11.9073C1.86424 11.6788 1.75 11.4042 1.75 11.0833V2.91667C1.75 2.59583 1.86424 2.32118 2.09271 2.09271C2.32118 1.86424 2.59583 1.75 2.91667 1.75H11.0833C11.4042 1.75 11.6788 1.86424 11.9073 2.09271C12.1358 2.32118 12.25 2.59583 12.25 2.91667V11.0833C12.25 11.4042 12.1358 11.6788 11.9073 11.9073C11.6788 12.1358 11.4042 12.25 11.0833 12.25H2.91667Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34.9 33.81" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
id="Glpyh"
|
|
4
|
+
fill="#fff"
|
|
5
|
+
d="m34.56,27.85L18.54.46c-.36-.61-1.24-.61-1.6,0L3.32,23.74c-.24.41.19.88.62.68.18-.08.38-.17.6-.25h0s.37-.14,1-.33c.69-.21,1.45-.41,2.14-.58,1.92-.44,4.44-.81,6.72-.43,2.09.35,3.55.91,4.61,1.46.49.25.95-.38.55-.76-1.52-1.48-3.86-3.26-7.42-4.01-.16-.03-.23-.21-.15-.35l5.36-9.16c.18-.3.61-.3.79,0l10.24,17.5c.22.37.03.84-.37.98-.8.27-1.76.47-2.83.47-.68,0-1.37-.08-2.06-.24,0,0-1.98-.31-4.64-1.9-2.65-1.58-7.76-3.6-13.5-.33C2.53,28.05.9,30.19.04,31.54c-.13.21.1.46.32.35,1.97-1.05,7.29-3.54,12.07-2.65,2.85.53,6.1,2.68,9.48,3.91,5.59,2.07,11.08-1.4,11.09-1.41.58-.38.92-.67.98-.72l.07-.06c.89-.78,1.11-2.09.51-3.11"
|
|
6
|
+
/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M3.49999 12.8333C3.17916 12.8333 2.90451 12.7191 2.67604 12.4906C2.44756 12.2622 2.33333 11.9875 2.33333 11.6667V2.33333C2.33333 2.0125 2.44756 1.73785 2.67604 1.50938C2.90451 1.2809 3.17916 1.16667 3.49999 1.16667H7.68541C7.84097 1.16667 7.98923 1.19583 8.1302 1.25417C8.27117 1.3125 8.39513 1.39514 8.50208 1.50208L11.3312 4.33125C11.4382 4.4382 11.5208 4.56215 11.5792 4.70313C11.6375 4.8441 11.6667 4.99236 11.6667 5.14792V11.6667C11.6667 11.9875 11.5524 12.2622 11.324 12.4906C11.0955 12.7191 10.8208 12.8333 10.5 12.8333H3.49999ZM7.58333 4.66667C7.58333 4.83195 7.63923 4.97049 7.75104 5.08229C7.86284 5.1941 8.00138 5.25 8.16666 5.25H10.5L7.58333 2.33333V4.66667Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M6.21251 9.1875L9.05626 7.36458C9.19237 7.27708 9.26042 7.15555 9.26042 7C9.26042 6.84444 9.19237 6.72291 9.05626 6.63541L6.21251 4.8125C6.06667 4.71528 5.91841 4.70798 5.76771 4.79062C5.61702 4.87326 5.54167 5.00208 5.54167 5.17708V8.82291C5.54167 8.99791 5.61702 9.12673 5.76771 9.20937C5.91841 9.29201 6.06667 9.28472 6.21251 9.1875ZM7.00001 12.8333C6.19306 12.8333 5.43473 12.6802 4.72501 12.374C4.01528 12.0677 3.39792 11.6521 2.87292 11.1271C2.34792 10.6021 1.9323 9.98472 1.62605 9.275C1.3198 8.56528 1.16667 7.80694 1.16667 7C1.16667 6.19305 1.3198 5.43472 1.62605 4.725C1.9323 4.01528 2.34792 3.39791 2.87292 2.87291C3.39792 2.34791 4.01528 1.93229 4.72501 1.62604C5.43473 1.31979 6.19306 1.16666 7.00001 1.16666C7.80695 1.16666 8.56528 1.31979 9.27501 1.62604C9.98473 1.93229 10.6021 2.34791 11.1271 2.87291C11.6521 3.39791 12.0677 4.01528 12.374 4.725C12.6802 5.43472 12.8333 6.19305 12.8333 7C12.8333 7.80694 12.6802 8.56528 12.374 9.275C12.0677 9.98472 11.6521 10.6021 11.1271 11.1271C10.6021 11.6521 9.98473 12.0677 9.27501 12.374C8.56528 12.6802 7.80695 12.8333 7.00001 12.8333Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M6.41667 12.6729L2.33333 10.325C2.14861 10.2181 2.00521 10.0771 1.90313 9.90208C1.80104 9.72708 1.75 9.53264 1.75 9.31875V4.68125C1.75 4.46736 1.80104 4.27291 1.90313 4.09791C2.00521 3.92291 2.14861 3.78194 2.33333 3.675L6.41667 1.32708C6.60139 1.22014 6.79583 1.16666 7 1.16666C7.20417 1.16666 7.39861 1.22014 7.58333 1.32708L11.6667 3.675C11.8514 3.78194 11.9948 3.92291 12.0969 4.09791C12.199 4.27291 12.25 4.46736 12.25 4.68125V9.31875C12.25 9.53264 12.199 9.72708 12.0969 9.90208C11.9948 10.0771 11.8514 10.2181 11.6667 10.325L7.58333 12.6729C7.39861 12.7799 7.20417 12.8333 7 12.8333C6.79583 12.8333 6.60139 12.7799 6.41667 12.6729ZM6.41667 7.33541V11.3312L7 11.6667L7.58333 11.3312V7.33541L11.0833 5.30833V4.69583L10.4563 4.33125L7 6.32916L3.54375 4.33125L2.91667 4.69583V5.30833L6.41667 7.33541Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
|
|
2
|
+
<path d="M38-160v-94q0-35 18-63.5t50-42.5q73-32 131.5-46T358-420q62 0 120 14t131 46q32 14 50.5 42.5T678-254v94H38Zm700 0v-94q0-63-32-103.5T622-423q69 8 130 23.5t99 35.5q33 19 52 47t19 63v94H738ZM358-481q-66 0-108-42t-42-108q0-66 42-108t108-42q66 0 108 42t42 108q0 66-42 108t-108 42Zm360-150q0 66-42 108t-108 42q-11 0-24.5-1.5T519-488q24-25 36.5-61.5T568-631q0-45-12.5-79.5T519-774q11-3 24.5-5t24.5-2q66 0 108 42t42 108ZM98-220h520v-34q0-16-9.5-31T585-306q-72-32-121-43t-106-11q-57 0-106.5 11T130-306q-14 6-23 21t-9 31v34Zm260-321q39 0 64.5-25.5T448-631q0-39-25.5-64.5T358-721q-39 0-64.5 25.5T268-631q0 39 25.5 64.5T358-541Zm0 321Zm0-411Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M5.31407 5.89587C5.52796 5.67226 5.77831 5.49483 6.06511 5.36358C6.35192 5.23233 6.66546 5.1667 7.00574 5.1667C7.34602 5.1667 7.65956 5.23233 7.94636 5.36358C8.23317 5.49483 8.48352 5.67226 8.6974 5.89587L11.6432 4.24795L7.57449 1.98753C7.39949 1.88059 7.2099 1.82712 7.00574 1.82712C6.80157 1.82712 6.61199 1.88059 6.43699 1.98753L2.36824 4.24795L5.31407 5.89587ZM6.4224 13.0125V9.76045C5.91685 9.62434 5.49879 9.34969 5.16824 8.93649C4.83768 8.5233 4.6724 8.04448 4.6724 7.50003C4.6724 7.39309 4.67727 7.29101 4.68699 7.19378C4.69671 7.09656 4.71615 7.0042 4.74532 6.9167L1.75574 5.23962V9.73129C1.75574 9.94517 1.80921 10.142 1.91615 10.3219C2.0231 10.5018 2.16893 10.6452 2.35365 10.7521L6.4224 13.0125ZM7.00574 8.6667C7.32657 8.6667 7.60122 8.55247 7.8297 8.32399C8.05817 8.09552 8.1724 7.82087 8.1724 7.50003C8.1724 7.1792 8.05817 6.90455 7.8297 6.67608C7.60122 6.4476 7.32657 6.33337 7.00574 6.33337C6.6849 6.33337 6.41025 6.4476 6.18178 6.67608C5.95331 6.90455 5.83907 7.1792 5.83907 7.50003C5.83907 7.82087 5.95331 8.09552 6.18178 8.32399C6.41025 8.55247 6.6849 8.6667 7.00574 8.6667ZM7.58907 13.0125L11.6578 10.7521C11.8425 10.6452 11.9884 10.5018 12.0953 10.3219C12.2023 10.142 12.2557 9.94517 12.2557 9.73129V5.23962L9.26615 6.9167C9.29532 7.01392 9.31477 7.10872 9.32449 7.20108C9.33421 7.29344 9.33907 7.39309 9.33907 7.50003C9.33907 8.04448 9.17379 8.5233 8.84324 8.93649C8.51268 9.34969 8.09463 9.62434 7.58907 9.76045V13.0125Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M4.66667 9.91667H5.83333C5.99861 9.91667 6.13715 9.86076 6.24896 9.74896C6.36076 9.63715 6.41667 9.49861 6.41667 9.33333V8.16667C6.41667 8.00139 6.36076 7.86285 6.24896 7.75104C6.13715 7.63924 5.99861 7.58333 5.83333 7.58333H4.66667C4.50139 7.58333 4.36285 7.63924 4.25104 7.75104C4.13924 7.86285 4.08333 8.00139 4.08333 8.16667V9.33333C4.08333 9.49861 4.13924 9.63715 4.25104 9.74896C4.36285 9.86076 4.50139 9.91667 4.66667 9.91667ZM8.16667 9.91667H9.33333C9.49861 9.91667 9.63715 9.86076 9.74896 9.74896C9.86076 9.63715 9.91667 9.49861 9.91667 9.33333V8.16667C9.91667 8.00139 9.86076 7.86285 9.74896 7.75104C9.63715 7.63924 9.49861 7.58333 9.33333 7.58333H8.16667C8.00139 7.58333 7.86285 7.63924 7.75104 7.75104C7.63924 7.86285 7.58333 8.00139 7.58333 8.16667V9.33333C7.58333 9.49861 7.63924 9.63715 7.75104 9.74896C7.86285 9.86076 8.00139 9.91667 8.16667 9.91667ZM4.66667 6.41667H5.83333C5.99861 6.41667 6.13715 6.36076 6.24896 6.24896C6.36076 6.13715 6.41667 5.99861 6.41667 5.83333V4.66667C6.41667 4.50139 6.36076 4.36285 6.24896 4.25104C6.13715 4.13924 5.99861 4.08333 5.83333 4.08333H4.66667C4.50139 4.08333 4.36285 4.13924 4.25104 4.25104C4.13924 4.36285 4.08333 4.50139 4.08333 4.66667V5.83333C4.08333 5.99861 4.13924 6.13715 4.25104 6.24896C4.36285 6.36076 4.50139 6.41667 4.66667 6.41667ZM8.16667 6.41667H9.33333C9.49861 6.41667 9.63715 6.36076 9.74896 6.24896C9.86076 6.13715 9.91667 5.99861 9.91667 5.83333V4.66667C9.91667 4.50139 9.86076 4.36285 9.74896 4.25104C9.63715 4.13924 9.49861 4.08333 9.33333 4.08333H8.16667C8.00139 4.08333 7.86285 4.13924 7.75104 4.25104C7.63924 4.36285 7.58333 4.50139 7.58333 4.66667V5.83333C7.58333 5.99861 7.63924 6.13715 7.75104 6.24896C7.86285 6.36076 8.00139 6.41667 8.16667 6.41667ZM2.91667 12.25C2.59583 12.25 2.32118 12.1358 2.09271 11.9073C1.86424 11.6788 1.75 11.4042 1.75 11.0833V2.91667C1.75 2.59583 1.86424 2.32118 2.09271 2.09271C2.32118 1.86424 2.59583 1.75 2.91667 1.75H11.0833C11.4042 1.75 11.6788 1.86424 11.9073 2.09271C12.1358 2.32118 12.25 2.59583 12.25 2.91667V11.0833C12.25 11.4042 12.1358 11.6788 11.9073 11.9073C11.6788 12.1358 11.4042 12.25 11.0833 12.25H2.91667Z"
|
|
4
|
+
fill="white"
|
|
5
|
+
/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import AttributionIconUrl from "./AttributionIcon.svg?url";
|
|
2
|
+
import BenchmarkIconUrl from "./BenchmarkIcon.svg?url";
|
|
3
|
+
import BenchmarkResultIconUrl from "./BenchmarkResultIcon.svg?url";
|
|
4
|
+
import CertificateIconUrl from "./CertificateIcon.svg?url";
|
|
5
|
+
import CodeIconUrl from "./CodeIcon.svg?url";
|
|
6
|
+
import ComputationIconUrl from "./ComputationIcon.svg?url";
|
|
7
|
+
import DatabaseIconUrl from "./DatabaseIcon.svg?url";
|
|
8
|
+
import DataIconUrl from "./DataIcon.svg?url";
|
|
9
|
+
import DatasetIconUrl from "./DatasetIcon.svg?url";
|
|
10
|
+
import DeltaLakeIconUrl from "./DeltaLakeIcon.svg?url";
|
|
11
|
+
import DocumentIconUrl from "./DocumentIcon.svg?url";
|
|
12
|
+
import MediaIconUrl from "./MediaIcon.svg?url";
|
|
13
|
+
import ModelIconUrl from "./ModelIcon.svg?url";
|
|
14
|
+
import TeamIconUrl from "./TeamIcon.svg?url";
|
|
15
|
+
import TokenIconUrl from "./TokenIcon.svg?url";
|
|
16
|
+
import UnknownIconUrl from "./UnknownIcon.svg?url";
|
|
17
|
+
|
|
18
|
+
export const BuiltInIcons: Record<string, string> = {
|
|
19
|
+
AttributionIcon: AttributionIconUrl,
|
|
20
|
+
BenchmarkIcon: BenchmarkIconUrl,
|
|
21
|
+
BenchmarkResultIcon: BenchmarkResultIconUrl,
|
|
22
|
+
CertificateIcon: CertificateIconUrl,
|
|
23
|
+
ComputationIcon: ComputationIconUrl,
|
|
24
|
+
CodeIcon: CodeIconUrl,
|
|
25
|
+
DatabaseIcon: DatabaseIconUrl,
|
|
26
|
+
DataIcon: DataIconUrl,
|
|
27
|
+
DatasetIcon: DatasetIconUrl,
|
|
28
|
+
DeltaLakeIcon: DeltaLakeIconUrl,
|
|
29
|
+
DocumentIcon: DocumentIconUrl,
|
|
30
|
+
MediaIcon: MediaIconUrl,
|
|
31
|
+
ModelIcon: ModelIconUrl,
|
|
32
|
+
TeamIcon: TeamIconUrl,
|
|
33
|
+
TokenIcon: TokenIconUrl,
|
|
34
|
+
UnknownIcon: UnknownIconUrl,
|
|
35
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Statement } from "./StatementTypes";
|
|
2
|
+
|
|
3
|
+
export type CaipIdentifier = string;
|
|
4
|
+
export type StatementId = string;
|
|
5
|
+
|
|
6
|
+
export type Payload = { type: Statement } | { type: "StatementId" };
|
|
7
|
+
|
|
8
|
+
export type Location = ({ type: "Hcs" } & HcsLocation) | ({ type: "Hts" } & HtsLocation);
|
|
9
|
+
|
|
10
|
+
export interface Anchor {
|
|
11
|
+
statements: string[];
|
|
12
|
+
payload: Payload;
|
|
13
|
+
locations: Location[];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface HcsLocation {
|
|
17
|
+
network: CaipIdentifier;
|
|
18
|
+
txId: string;
|
|
19
|
+
txHash: string;
|
|
20
|
+
topicId: string;
|
|
21
|
+
topicSequenceNumber: number;
|
|
22
|
+
urls?: string[];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface HtsLocation {
|
|
26
|
+
network: CaipIdentifier;
|
|
27
|
+
txId: string;
|
|
28
|
+
txHash: string;
|
|
29
|
+
tokenId: string;
|
|
30
|
+
urls?: string[];
|
|
31
|
+
}
|