Skip to content

Commit

Permalink
Moving Proof of humanity support to Identity from Standards namespace…
Browse files Browse the repository at this point in the history
… (should be in a different project)
  • Loading branch information
juanfranblanco committed Apr 30, 2024
1 parent a035d9d commit 9089c74
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Nethereum.ABI.FunctionEncoding.Attributes;
using System.Numerics;

namespace Nethereum.Contracts.Standards.ProofOfHumanity.ContractDefinition
namespace Nethereum.Contracts.Identity.ProofOfHumanity.ContractDefinition
{

public partial class IsRegisteredFunction : IsRegisteredFunctionBase { }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Newtonsoft.Json;

namespace Nethereum.Fx.Nethereum.Contracts.Standards.ProofOfHumanity.Model
namespace Nethereum.Contracts.Identity.ProofOfHumanity.Model
{
public partial class Registration
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Newtonsoft.Json;

namespace Nethereum.Fx.Nethereum.Contracts.Standards.ProofOfHumanity.Model
namespace Nethereum.Contracts.Identity.ProofOfHumanity.Model
{
public partial class RegistrationEvidence
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
using Nethereum.RPC.Eth.DTOs;
using Nethereum.Contracts.ContractHandlers;
using Nethereum.Contracts.Services;
using Nethereum.Contracts.Standards.ProofOfHumanity.ContractDefinition;
using Nethereum.Contracts.Constants;
using System.Collections.Generic;
using System.Numerics;
using Newtonsoft.Json;
using Nethereum.Contracts.Identity.ProofOfHumanity.ContractDefinition;

namespace Nethereum.Contracts.Standards.ProofOfHumanity
namespace Nethereum.Contracts.Identity.ProofOfHumanity
{
public partial class ProofOfHumanityContractService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;

using Nethereum.RPC.Eth.DTOs;
using Nethereum.Contracts.Standards.ProofOfHumanity.ContractDefinition;
using Nethereum.Contracts.Identity.ProofOfHumanity.ContractDefinition;
using System.Collections.Generic;
using Nethereum.Contracts.QueryHandlers.MultiCall;
using Nethereum.Contracts.Constants;
Expand All @@ -12,9 +12,11 @@
#endif
using System;
using Newtonsoft.Json;
using Nethereum.Fx.Nethereum.Contracts.Standards.ProofOfHumanity.Model;
using Nethereum.Contracts.Identity.ProofOfHumanity.Model;
using Nethereum.Contracts.Identity.ProofOfHumanity;

namespace Nethereum.Contracts.Standards.ProofOfHumanity

namespace Nethereum.Contracts.Identity.ProofOfHumanity
{
public partial class ProofOfHumanityContractService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using Nethereum.Contracts.Constants;
using Nethereum.Contracts.Services;
using Nethereum.Contracts.Identity.ProofOfHumanity;

namespace Nethereum.Contracts.Standards.ProofOfHumanity
namespace Nethereum.Contracts.Identity.ProofOfHumanity
{
public class ProofOfHumanityService
{
Expand Down

0 comments on commit 9089c74

Please sign in to comment.