Releases: wevm/frog
Releases · wevm/frog
[email protected]
[email protected]
[email protected]
Minor Changes
-
#503
908bed1
Thanks @dalechyn! - Breaking Change:frog/vercel
was deleted. If you usedhandle
from this package, import it fromfrog/next
.
Breaking Change:frog/next
no longer exportspostComposerCreateCastActionMessage
. UsecreateCast
fromfrog/web
.Introduced
frog/web
for 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 relatedhandle
function.Added functionality for the Mini-App JSON-RPC requests. See more.
AddedcreateCast
,sendTransaction
,contractTransaction
andsignTypedData
tofrog/web
.
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Minor Changes
-
#476
4539665
Thanks @dalechyn! - Breaking Change:parent
andchannelKey
are deprecated inComposerActionMessage
import { 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: '...' })