From c27894f51d73a5780b44264578ddd6f0cc1b7222 Mon Sep 17 00:00:00 2001 From: Leonardo Zizzamia Date: Tue, 5 Mar 2024 16:01:09 -0800 Subject: [PATCH] fix: converted the `value` for `FrameTransactionEthSendParams` to string --- src/frame/types.ts | 2 +- src/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frame/types.ts b/src/frame/types.ts index 05c4d7cc52..380e4a2f7d 100644 --- a/src/frame/types.ts +++ b/src/frame/types.ts @@ -156,7 +156,7 @@ export type FrameTransactionEthSendParams = { abi: Abi; // The contract ABI for the contract to call. data?: Address; // The data to send with the transaction. to: Address; // The address of the contract to call. - value: bigint; // The amount of Ether to send with the transaction. + value: string; // The amount of Wei to send with the transaction }; /** diff --git a/src/version.ts b/src/version.ts index edb1e4dec6..ae90c8c79e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.9.10'; +export const version = '0.9.11';