diff --git a/.github/workflows/nova-build-temp.yaml b/.github/workflows/nova-build-temp.yaml index ec5182811..a91552aa9 100644 --- a/.github/workflows/nova-build-temp.yaml +++ b/.github/workflows/nova-build-temp.yaml @@ -6,7 +6,7 @@ on: TARGET_COMMIT: description: "Target Commit Hash for the SDK" required: false - default: "05b7cec884177ba11c8848d0d52c850a8bb496fe" + default: "08318f6e3f92af609b89c571462ea31b32e7c121" environment: type: choice description: "Select the environment to deploy to" diff --git a/client/src/app/components/nova/FeaturesView.tsx b/client/src/app/components/nova/FeaturesView.tsx index f0b8af04b..5754ab37d 100644 --- a/client/src/app/components/nova/FeaturesView.tsx +++ b/client/src/app/components/nova/FeaturesView.tsx @@ -1,5 +1,6 @@ import { BlockIssuerFeature, + Ed25519PublicKeyHashBlockIssuerKey, Feature, FeatureType, IssuerFeature, @@ -9,8 +10,6 @@ import { StakingFeature, TagFeature, } from "@iota/sdk-wasm-nova/web"; -// will this import work ? why isnt it exported from web ? -import { Ed25519BlockIssuerKey } from "@iota/sdk-wasm-nova/web/lib/types/block/output/block-issuer-key"; import classNames from "classnames"; import React, { useState } from "react"; import AddressView from "./address/AddressView"; @@ -75,7 +74,7 @@ const FeatureView: React.FC = ({ feature, isImmutable, isPreEx
Block issuer keys:
{Array.from((feature as BlockIssuerFeature).blockIssuerKeys).map((blockIssuerKey, idx) => (
- {(blockIssuerKey as Ed25519BlockIssuerKey).publicKey} + {(blockIssuerKey as Ed25519PublicKeyHashBlockIssuerKey).pubKeyHash}
))}