From 3ed6598d6cfd58913518d0bb1f3971aa358ee8d3 Mon Sep 17 00:00:00 2001 From: Andrew Hariri Date: Fri, 9 Feb 2024 13:20:17 -0800 Subject: [PATCH] [rebase] Update pnpm lock and HexInput from rebase --- pnpm-lock.yaml | 10 ++++++++++ .../transactionBuilder/transactionBuilder.ts | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a805d7c0b..49f479cb2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -20,6 +20,15 @@ dependencies: '@scure/bip39': specifier: ^1.2.1 version: 1.2.1 + '@simplewebauthn/browser': + specifier: ^8.3.4 + version: 8.3.4 + '@simplewebauthn/server': + specifier: ^8.3.5 + version: 8.3.5 + base64url: + specifier: ^3.0.1 + version: 3.0.1 eventemitter3: specifier: ^5.0.1 version: 5.0.1 @@ -2502,6 +2511,7 @@ packages: /@simplewebauthn/typescript-types@8.3.4: resolution: {integrity: sha512-38xtca0OqfRVNloKBrFB5LEM6PN5vzFbJG6rAutPVrtGHFYxPdiV3btYWq0eAZAZmP+dqFPYJxJWeJrGfmYHng==} + deprecated: This package has been renamed to @simplewebauthn/types. Please install @simplewebauthn/types instead to ensure you receive future updates. dev: false /@sinclair/typebox@0.27.8: diff --git a/src/transactions/transactionBuilder/transactionBuilder.ts b/src/transactions/transactionBuilder/transactionBuilder.ts index fbb79de09..4f276c3de 100644 --- a/src/transactions/transactionBuilder/transactionBuilder.ts +++ b/src/transactions/transactionBuilder/transactionBuilder.ts @@ -79,7 +79,7 @@ import { } from "../types"; import { convertArgument, fetchEntryFunctionAbi, standardizeTypeTags } from "./remoteAbi"; import { memoizeAsync } from "../../utils/memoize"; -import { AnyNumber, SigningScheme } from "../../types"; +import { AnyNumber, HexInput, SigningScheme } from "../../types"; import { getFunctionParts, isScriptDataInput } from "./helpers"; import { WebAuthnSignature } from "../../core/crypto/webauthn"; import { getSigningMessage } from "../../internal/transactionSubmission";