Skip to content

Commit

Permalink
- Upgraded Nethereum.RPC to v4.21.4 and Nethereum.Web3 to v4.21.4.
Browse files Browse the repository at this point in the history
- Fixed a bug in ShowGeoNFT method in STAR.CLI.Lib.
  • Loading branch information
dellams committed Sep 1, 2024
1 parent db6f251 commit adedb86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ private static async Task Main(string[] args)
Console.WriteLine("NextGenSoftware.OASIS.API.Providers.ArbitrumOASIS - TEST HARNESS");

// TODO: Uncomment one of example method to start testing ethereum provider CRUD
await ExecuteAvatarProviderExample(_contractAddress);
//await ExecuteAvatarProviderExample(_contractAddress);
// await ExecuteAvatarProviderExample(_contractAddress);
await ExecuteMintNftExample();
await ExecuteSendNFTExample();
//await ExecuteSendNFTExample();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Nethereum.RPC" Version="4.4.1" />
<PackageReference Include="Nethereum.Web3" Version="4.4.1" />
<PackageReference Include="Nethereum.RPC" Version="4.21.4" />
<PackageReference Include="Nethereum.Web3" Version="4.21.4" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NextGenSoftware.OASIS.STAR.CLI.Lib/STARCLI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ public static void ShowGeoNFT(IOASISGeoSpatialNFT nft)
CLIEngine.ShowMessage($"Long: {nft.Long}");
CLIEngine.ShowMessage($"PlacedByAvatarId: {nft.PlacedByAvatarId}");
CLIEngine.ShowMessage($"PlacedOn: {nft.PlacedOn}");
CLIEngine.ShowMessage($"GeoNFTMetaDataOffChainProvider: {nft.GeoNFTMetaDataOffChainProvider}");
CLIEngine.ShowMessage($"GeoNFTMetaDataOffChainProvider: {nft.GeoNFTMetaDataOffChainProvider.Name}");
CLIEngine.ShowMessage($"PermSpawn: {nft.PermSpawn}");
CLIEngine.ShowMessage($"AllowOtherPlayersToAlsoCollect: {nft.AllowOtherPlayersToAlsoCollect}");
CLIEngine.ShowMessage($"GlobalSpawnQuantity: {nft.GlobalSpawnQuantity}");
Expand Down

0 comments on commit adedb86

Please sign in to comment.