Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 22 Aug 23:20
· 11 commits to main since this release
850e8f5

Minor Changes

  • #476 4539665 Thanks @dalechyn! - Breaking Change: parent and channelKey are deprecated in ComposerActionMessage

    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: '...'
    })

    See More.