File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @coinbase/onchainkit ' : patch
3+ ---
4+
5+ - ** fix** : for ` FrameTransactionEthSendParams.data ` replaced ` Address ` with ` Hex ` . By @zizzamia #224
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ type FrameTransactionResponse = {
150150``` ts
151151type FrameTransactionEthSendParams = {
152152 abi: Abi ; // The contract ABI for the contract to call.
153- data? : Address ; // The data to send with the transaction.
153+ data? : Hex ; // The data to send with the transaction.
154154 to: Address ; // The address of the contract to call.
155155 value: bigint ; // The amount of Ether to send with the transaction.
156156};
Original file line number Diff line number Diff line change 1- import type { Abi , Address } from 'viem' ;
1+ import type { Abi , Address , Hex } from 'viem' ;
22import { NeynarFrameValidationInternalModel } from '../utils/neynar/frame/types' ;
33
44/**
@@ -154,7 +154,7 @@ export type FrameTransactionResponse = {
154154 */
155155export type FrameTransactionEthSendParams = {
156156 abi : Abi ; // The contract ABI for the contract to call.
157- data ?: Address ; // The data to send with the transaction.
157+ data ?: Hex ; // The data to send with the transaction.
158158 to : Address ; // The address of the contract to call.
159159 value : string ; // The amount of Wei to send with the transaction
160160} ;
Original file line number Diff line number Diff line change 1- export const version = '0.9.11 ' ;
1+ export const version = '0.9.12 ' ;
You can’t perform that action at this time.
0 commit comments