Skip to content
Snippets Groups Projects
Commit d3a2a945 authored by Mateusz Tyszczak's avatar Mateusz Tyszczak :scroll: Committed by Bartek Wrona
Browse files

Add structuredClone shim for metamask SES support

parent b384bf1e
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ import { TAccountName } from "../../../../hive_apps_operations/index.js";
import { WaxError } from "../../../../errors.js";
import { LevelBase } from "../../level_base.js";
import type { TPublicKey } from "../../../../interfaces";
import { structuredClone } from "../../../../shims/structuredclone.js";
export class HiveRoleAuthorityDefinition<TRole extends string> extends LevelBase<TRole> {
public constructor(
......
import { DeepPartial, DeepReadonly, IWaxFormatter, IWaxFormatterOptions } from "./types";
import { structuredClone } from "../shims/structuredclone.js";
export const DEFAULT_FORMATTER_OPTIONS: IWaxFormatterOptions = {
asset: {
......
......@@ -5,6 +5,7 @@ import { WaxFormatterBase } from "./base";
import { DefaultFormatters } from "./default_formatters";
import Long from "long";
import { getMetadata } from "reflect-metadata/no-conflict";
import { structuredClone } from "../shims/structuredclone.js";
export interface IMatchersData {
matchValues: Map<string, TFormatFunction>;
......
export const structuredClone = (value: any) => {
if (typeof globalThis.structuredClone === "undefined")
return JSON.parse(JSON.stringify(value));
return globalThis.structuredClone(value);
};
......@@ -10,6 +10,7 @@ import type { ApiTransaction } from "./api";
import { safeWasmCall } from "./util/wasm_errors";
import type { TAccountName } from "./hive_apps_operations";
import { ISignatureProvider } from "./extensions/signatures";
import { structuredClone } from "./shims/structuredclone.js";
type TIndexBeginEncryption = {
mainEncryptionKey: TPublicKey;
......
......@@ -3,6 +3,7 @@ import { TAccountName } from "../hive_apps_operations";
import type { TPublicKey } from "../interfaces";
import { WaxError } from "../errors";
import { ClassHandle, IAccountAuthorityProvider, wax_authority } from "wasm/lib/build_wasm/wax.common";
import { structuredClone } from "../shims/structuredclone.js";
/**
* Helper class used during traced authority verification process.
......
......@@ -3,6 +3,7 @@ import { type TWaxApiRequest } from "../interfaces";
import { extractBracedStrings } from "../rest-api/utils.js";
import { objectToQueryString } from "./query_string.js";
import { type IDetailedResponseData, type IRequestOptions, RequestHelper } from "./request_helper.js";
import { structuredClone } from "../shims/structuredclone.js";
export type TInterceptorRequestOptions = IRequestOptions & { paths: string[]; apiCallerId: string };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment