fix: dont use hash imports
This commit is contained in:
parent
61c9ef880a
commit
8e368e4e0c
|
@ -8,8 +8,8 @@ import {
|
||||||
getS5DownloadCid,
|
getS5DownloadCid,
|
||||||
getS5MetadataCid,
|
getS5MetadataCid,
|
||||||
} from "../generated/index.js";
|
} from "../generated/index.js";
|
||||||
import { addUrlQuery } from "#utils/url.js";
|
import { addUrlQuery } from "../utils/url.js";
|
||||||
import { customInstance } from "#axios.js";
|
import { customInstance } from "../axios.js";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Custom download options.
|
* Custom download options.
|
||||||
|
|
|
@ -19,8 +19,8 @@ import { throwValidationError } from "../utils/validation.js";
|
||||||
import { base64url } from "multiformats/bases/base64";
|
import { base64url } from "multiformats/bases/base64";
|
||||||
import { concatBytes } from "@noble/hashes/utils";
|
import { concatBytes } from "@noble/hashes/utils";
|
||||||
import { CID_HASH_TYPES } from "@lumeweb/libs5/lib/constants.js";
|
import { CID_HASH_TYPES } from "@lumeweb/libs5/lib/constants.js";
|
||||||
import { CustomClientOptions, optionsToConfig } from "#utils/options.js";
|
import { CustomClientOptions, optionsToConfig } from "../utils/options.js";
|
||||||
import { buildRequestUrl } from "#request.js";
|
import { buildRequestUrl } from "../request.js";
|
||||||
import {
|
import {
|
||||||
getS5Registry,
|
getS5Registry,
|
||||||
postS5Registry,
|
postS5Registry,
|
||||||
|
|
Loading…
Reference in New Issue