Type Alias StorageProgramOperation

StorageProgramOperation:
    | "CREATE_STORAGE_PROGRAM"
    | "WRITE_STORAGE"
    | "READ_STORAGE"
    | "UPDATE_ACCESS_CONTROL"
    | "DELETE_STORAGE_PROGRAM"

Storage Program operations

  • CREATE_STORAGE_PROGRAM: Initialize a new storage program with access control
  • WRITE_STORAGE: Write/update key-value pairs in the storage
  • READ_STORAGE: Query operation (not a transaction, used for validation)
  • UPDATE_ACCESS_CONTROL: Modify access control settings (deployer only)
  • DELETE_STORAGE_PROGRAM: Remove the entire storage program (deployer only)