Skip to content

composeCast

Open the cast composer with a suggested cast. The user will be able to modify the cast before posting it.

composing a cast

An app prompts the user to cast and includes an embed.

Usage

import { sdk } from '@farcaster/frame-sdk'
 
await sdk.actions.composeCast({ 
  text,
  embeds,
})

Parameters

text (optional)

  • Type: string

Suggested text for the body of the cast.

Mentions can be included using the human-writeable form (e.g. @farcaster).

embeds (optional)

  • Type: [] | [string] | [string, string]

Suggested embeds. Max two.

parent (optional)

  • Type: { type: 'cast'; hash: string }

Suggested parent of the cast.

close (optional)

  • Type: boolean

Whether the app should be closed when this action is called. If true the app will be closed and the action will resolve with no result.

Return Value

The cast posted by the user, or undefined if set to close.

const 
const result: { cast: { hash: string; text?: string; embeds?: [] | [string] | [string, string]; parent?: { type: "cast"; hash: string; }; }; }
result
= await sdk.actions.composeCast({
text: "I just learned how to compose a cast", embeds: ["https://miniapps.farcaster.xyz/docs/sdk/actions/compose-cast"] })