Actions

Create App

The create_app function has these effects:

  1. Asserts authentication

  2. Creates an App

  3. Emits the "AppCreated" event:

    1. public struct AppCreated has copy, drop {
              id: address,
              name: String
          }
  4. Returns the app address

Create App (Admin)

The create_app function has these effects:

  1. Creates an App

  2. Emits the "AppCreated" event:

    1. public struct AppCreated has copy, drop {
              id: address,
              name: String
          }
  3. Returns the app address

Create Royalties

The create_royalties function has these effects:

  1. Creates a Royalties

Update Royalties

The update_royalties function has these effects:

  1. Updates a Royalties

Last updated