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
- Added new LoadData and Save data functionality to the Data API on the OASIS API to allow quick and easy way to store and load data.
- Added SaveData, SaveDataAsync, LoadData & LoadDataAsync methods to AvatarManager in OASIS.API.Core.
- Corrected typeos in LoadFile and SaveFile methods on HolonManager in OASIS.API.Core.
- Updated MintNFTInternalAsync and MintNFTInternal so the URI points to load-file instead of getdata on the Data API.
- Added SaveFile, LoadFile, SaveData & LoadData overloads to the DataController in the OASIS.API.ONODE.WebAPI.
- Added LoadDataRequest & SaveDataRequest to OASIS.API.ONODE.WebAPI.
- Changed the port from 5001 to 5002 in launchSettings.json so does not clash with IPFS in OASIS.API.ONODE.WebAPI.
@@ -83,7 +83,7 @@ public OASISResult<byte[]> LoadFile(Guid id, Guid avatarId, ProviderType provide
83
83
OASISErrorHandling.HandleError(refresult,$"{errorMessage} There was an error loading the metadata containing the file (metadata or metadata key not found).");
84
84
}
85
85
else
86
-
OASISErrorHandling.HandleError(refresult,$"{errorMessage} There was an error loading the holon contianing the file. Reason: {holonResult.Message}");
86
+
OASISErrorHandling.HandleError(refresult,$"{errorMessage} There was an error loading the holon containing the file. Reason: {holonResult.Message}");
87
87
88
88
returnresult;
89
89
}
@@ -100,7 +100,7 @@ public async Task<OASISResult<byte[]>> LoadFileAsync(Guid id, Guid avatarId, Pro
0 commit comments