You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Interface representing the input needed to create a moment.
5
6
* @interface
6
7
* @property {number} dropId - The ID of the drop related to the moment.
7
8
* @property {number} [tokenId] - The ID of the token related to the moment (optional).
8
-
* @property {Uint8Array} fileBinary - The binary of the file to be uploaded.
9
9
* @property {string} author - The author of the moment. An Ethereum address.
10
10
* @property {string} description - The description of the moment (optional).
11
11
* @property {string} timeOut - The amount of time to wait until media is processed.
12
-
* @property {string} fileType - The type of the file.
13
12
* @property {(step: CreateSteps) => void | Promise<void>} [onStepUpdate] - Optional callback function to be called when the step changes.
14
13
* @property {(progress: number) => void | Promise<void>} [onFileProgress] - Optional callback function to be called when the file upload progress change - progress is a number between 0 and 1.
14
+
* @property {CreateMedia[]} medias - The media to be uploaded.
0 commit comments