-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #320 from NextGenSoftwareUK/feature/rsk-polygon
Rootstock and Polygon
- Loading branch information
Showing
38 changed files
with
25,826 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"dotnet.defaultSolution": "The OASIS.sln" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
....OASIS.API.Providers.PolygonOASIS/NextGenSoftware.OASIS.API.Providers.PolygonOASIS.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.API.Core\NextGenSoftware.OASIS.API.Core.csproj" /> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.Common\NextGenSoftware.OASIS.Common.csproj" /> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS\NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<PackageId>NextGenSoftware.OASIS.API.Providers.PolygonOASIS</PackageId> | ||
<Company>NextGen Software Ltd</Company> | ||
<Product>WEB4 OASIS API Polygon OASIS Provider</Product> | ||
<Title>WEB4 OASIS API Polygon OASIS Provider</Title> | ||
<Summary>WEB4 OASIS API Polygon OASIS Provider is one of the many WEB2/WEB3 providers that plug in and integtate into the OASIS.</Summary> | ||
<Description>WEB4 OASIS API Polygon OASIS Provider is one of the many WEB2/WEB3 providers that plug in and integtate into the OASIS.</Description> | ||
<PackageProjectUrl>https://github.com/NextGenSoftwareUK/Our-World-OASIS-API-HoloNET-HoloUnity-And-.NET-HDK</PackageProjectUrl> | ||
<PackageIcon>OASISLogo128.jpg</PackageIcon> | ||
<Authors>David Ellams (NextGen Software Ltd)</Authors> | ||
<PackageTags>OASIS API; Native; Integrated; WEB4; Provider </PackageTags> | ||
<PackageReleaseNotes>Initial Release.</PackageReleaseNotes> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/NextGenSoftwareUK/Our-World-OASIS-API-HoloNET-HoloUnity-And-.NET-HDK</RepositoryUrl> | ||
<Copyright>Copyright © NextGen Software Ltd 2022</Copyright> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<Version>1.0.0</Version> | ||
|
||
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects> | ||
</PropertyGroup> | ||
|
||
</Project> |
16 changes: 16 additions & 0 deletions
16
NextGenSoftware.OASIS.API.Providers.PolygonOASIS/PolygonOASIS.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using NextGenSoftware.OASIS.API.Core.Interfaces; | ||
using NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS; | ||
|
||
namespace NextGenSoftware.OASIS.API.Providers.PolygonOASIS; | ||
|
||
public sealed class PolygonOASIS : Web3CoreOASISBaseProvider, IOASISDBStorageProvider, IOASISNETProvider, IOASISSuperStar, IOASISBlockchainStorageProvider | ||
{ | ||
public PolygonOASIS(string hostUri, string chainPrivateKey, string contractAddress, string abi) | ||
: base(hostUri, chainPrivateKey, contractAddress, abi) | ||
{ | ||
this.ProviderName = "PolygonOASIS"; | ||
this.ProviderDescription = "Polygon Provider"; | ||
this.ProviderType = new(Core.Enums.ProviderType.PolygonOASIS); | ||
this.ProviderCategory = new(Core.Enums.ProviderCategory.StorageAndNetwork); | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...IS.API.Providers.RootstockOASIS/NextGenSoftware.OASIS.API.Providers.RootstockOASIS.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.API.Core\NextGenSoftware.OASIS.API.Core.csproj" /> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.Common\NextGenSoftware.OASIS.Common.csproj" /> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS\NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<PackageId>NextGenSoftware.OASIS.API.Providers.RootstockOASIS</PackageId> | ||
<Company>NextGen Software Ltd</Company> | ||
<Product>WEB4 OASIS API Rootstock OASIS Provider</Product> | ||
<Title>WEB4 OASIS API Rootstock OASIS Provider</Title> | ||
<Summary>WEB4 OASIS API Rootstock OASIS Provider is one of the many WEB2/WEB3 providers that plug in and integtate into the OASIS.</Summary> | ||
<Description>WEB4 OASIS API Rootstock OASIS Provider is one of the many WEB2/WEB3 providers that plug in and integtate into the OASIS.</Description> | ||
<PackageProjectUrl>https://github.com/NextGenSoftwareUK/Our-World-OASIS-API-HoloNET-HoloUnity-And-.NET-HDK</PackageProjectUrl> | ||
<PackageIcon>OASISLogo128.jpg</PackageIcon> | ||
<Authors>David Ellams (NextGen Software Ltd)</Authors> | ||
<PackageTags>OASIS API; Native; Integrated; WEB4; Provider </PackageTags> | ||
<PackageReleaseNotes>Initial Release.</PackageReleaseNotes> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/NextGenSoftwareUK/Our-World-OASIS-API-HoloNET-HoloUnity-And-.NET-HDK</RepositoryUrl> | ||
<Copyright>Copyright © NextGen Software Ltd 2022</Copyright> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<Version>1.0.0</Version> | ||
|
||
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects> | ||
</PropertyGroup> | ||
</Project> |
16 changes: 16 additions & 0 deletions
16
NextGenSoftware.OASIS.API.Providers.RootstockOASIS/RootstockOASIS.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using NextGenSoftware.OASIS.API.Core.Interfaces; | ||
using NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS; | ||
|
||
namespace NextGenSoftware.OASIS.API.Providers.RootstockOASIS; | ||
|
||
public sealed class RootstockOASIS : Web3CoreOASISBaseProvider, IOASISDBStorageProvider, IOASISNETProvider, IOASISSuperStar, IOASISBlockchainStorageProvider | ||
{ | ||
public RootstockOASIS(string hostUri, string chainPrivateKey, string contractAddress, string abi) | ||
: base(hostUri, chainPrivateKey, contractAddress, abi) | ||
{ | ||
this.ProviderName = "RootstockOASIS"; | ||
this.ProviderDescription = "Rootstock Provider"; | ||
this.ProviderType = new(Core.Enums.ProviderType.RootstockOASIS); | ||
this.ProviderCategory = new(Core.Enums.ProviderCategory.StorageAndNetwork); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...oreOASIS.TestHarness/NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS.TestHarness.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
|
||
<IsPackable>false</IsPackable> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="coverlet.collector" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="xunit" Version="2.5.3" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Using Include="Xunit" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS\NextGenSoftware.OASIS.API.Providers.Web3CoreOASIS.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.