diff --git a/_tasks/dnt_examples_import_map.json b/_tasks/dnt_examples_import_map.json index 0f236c473..bbe34b49f 100644 --- a/_tasks/dnt_examples_import_map.json +++ b/_tasks/dnt_examples_import_map.json @@ -1,6 +1,5 @@ { "imports": { - "@noble/ed25519": "../deps/ed25519.ts", "asserts": "../deps/std/testing/asserts.ts" } } diff --git a/examples/sign/ed25519.eg.ts b/examples/sign/ed25519.eg.ts index 13ff6597b..812885d26 100644 --- a/examples/sign/ed25519.eg.ts +++ b/examples/sign/ed25519.eg.ts @@ -4,10 +4,10 @@ */ import { MultiAddress, westendDev } from "@capi/westend-dev" -import * as ed from "@noble/ed25519" import { assert } from "asserts" import { createDevUsers, ExtrinsicSender, is, Scope } from "capi" import { signature } from "capi/patterns/signature/polkadot" +import * as ed from "../../deps/ed25519.ts" const { alexa, billy } = await createDevUsers() const scope = new Scope() diff --git a/import_map.json b/import_map.json index fe0a7632a..12f7e883d 100644 --- a/import_map.json +++ b/import_map.json @@ -4,7 +4,6 @@ }, "scopes": { "examples/": { - "@noble/ed25519": "./deps/ed25519.ts", "asserts": "./deps/std/testing/asserts.ts", "capi": "./mod.ts", "capi/patterns/compat/pjs_sender": "./patterns/compat/pjs_sender.ts",