This repository was archived by the owner on Jul 28, 2025. It is now read-only.
Releases: wevm/frog
Releases · wevm/frog
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Minor Changes
-
#503
908bed1Thanks @dalechyn! - Breaking Change:frog/vercelwas deleted. If you usedhandlefrom this package, import it fromfrog/next.
Breaking Change:frog/nextno longer exportspostComposerCreateCastActionMessage. UsecreateCastfromfrog/web.Introduced
frog/webfor client-side related logic in favor offrog/next.
For backwards compatibility, all the previous exports are kept, but will be
deprecated in future, except for NextJS relatedhandlefunction.Added functionality for the Mini-App JSON-RPC requests. See more.
AddedcreateCast,sendTransaction,contractTransactionandsignTypedDatatofrog/web.
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Minor Changes
-
#476
4539665Thanks @dalechyn! - Breaking Change:parentandchannelKeyare deprecated inComposerActionMessageimport { postComposerActionMessage } from 'frog/next' postComposerActionMessage({ type: "createCast", data: { cast: { embeds: [/*...*/]; text: 'Hi'; - parent: '0x...' - channelKey: '...' }; }; })import { postComposerCreateCastActionMessage } from 'frog/next' postComposerCreateCastActionMessage({ embeds: [/*...*/]; text: 'Hi'; - parent: '0x...' - channelKey: '...' })