Private key: 0xb5b1870957d373ef0eeffecc6e4812c0fd08f554b37b233526acc331bf1544f7
Check out the RLP Debugger, pretty cool tool -> https://codechain-io.github.io/rlp-debugger/
First RLP, used to sign Second RLP signed
| Hey, I'm juanfranblanco-562371 and I have contributed to the Privacy Pools Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (withdraw) | |
| Contributor # 143 | |
| Contribution Hash: 08c2f45e 9e41beb0 36f9520e 313b8463 | |
| b8d54c92 edcc3fe3 526667bc 06feb335 | |
| 4aef74a8 7b025c21 eaf551c2 ceb6e802 | |
| 95e3db6f 420963af caa79b56 5c71a76d |
| //PoC Interop to integrate Nethereum and MM Sdk in Unity. | |
| using System; | |
| using System.Numerics; | |
| using System.Threading.Tasks; | |
| using MetaMask.Models; | |
| using Nethereum.ABI.FunctionEncoding.Attributes; | |
| using Nethereum.Contracts; | |
| using Nethereum.JsonRpc.Client; | |
| using Nethereum.JsonRpc.Client.RpcMessages; | |
| using Nethereum.Metamask; |
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <ItemGroup> | |
| <WasiNativeFileReference Include=""$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\native\*.c))"" /> | |
| <WasiAfterRuntimeLoaded Include="native_networking_attach_internal_calls" /> | |
| </ItemGroup> | |
| </Project> |
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <PropertyGroup> | |
| <WasiSdkTaskDir Condition="'$(MSBuildRuntimeType)' == 'Core'">net7.0</WasiSdkTaskDir> | |
| <WasiSdkTaskDir Condition="'$(MSBuildRuntimeType)' != 'Core'">netstandard2.0</WasiSdkTaskDir> | |
| <WasiSdkTaskAssembly>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)..\tools\$(WasiSdkTaskDir)\Wasi.Sdk.dll"))</WasiSdkTaskAssembly> | |
| </PropertyGroup> | |
| <UsingTask TaskName="Wasi.Sdk.Tasks.EmitWasmBundleObjectFile" AssemblyFile="$(WasiSdkTaskAssembly)" /> | |
| <UsingTask TaskName="Wasi.Sdk.Tasks.WasmResolveAssemblyDependencies" AssemblyFile="$(WasiSdkTaskAssembly)" /> |
Private key: 0xb5b1870957d373ef0eeffecc6e4812c0fd08f554b37b233526acc331bf1544f7
Check out the RLP Debugger, pretty cool tool -> https://codechain-io.github.io/rlp-debugger/
First RLP, used to sign Second RLP signed
| public class PropertyOverridingTypeDescriptor : CustomTypeDescriptor | |
| { | |
| private readonly Dictionary<string, PropertyDescriptor> overridePds = new Dictionary<string, PropertyDescriptor>(); | |
| public PropertyOverridingTypeDescriptor(ICustomTypeDescriptor parent) | |
| : base(parent) | |
| { } | |
| public void OverrideProperty(PropertyDescriptor pd) | |
| { |
| using System; | |
| using System.Threading.Tasks; | |
| using System.Collections.Generic; | |
| using System.Numerics; | |
| using Nethereum.Hex.HexTypes; | |
| using Nethereum.ABI.FunctionEncoding.Attributes; | |
| using Nethereum.Web3; | |
| using Nethereum.RPC.Eth.DTOs; | |
| using Nethereum.Contracts.CQS; | |
| using Nethereum.Contracts; |
| //Example of creating a simple custom blockchain crawler orchestrator that stops the crawling at transaction receipt. | |
| //This is done as crawling currently does not disable steps before getting the data. | |
| using Nethereum.BlockchainProcessing.Processor; | |
| using Nethereum.BlockchainProcessing.BlockProcessing; | |
| using Nethereum.BlockchainProcessing.BlockProcessing.CrawlerSteps; | |
| using Nethereum.RPC.Eth.DTOs; | |
| using Nethereum.Web3; | |
| using System; | |
| using System.Collections.Generic; |
| using System; | |
| using System.Threading.Tasks; | |
| using System.Collections.Generic; | |
| using System.Numerics; | |
| using Nethereum.Hex.HexTypes; | |
| using Nethereum.ABI.FunctionEncoding.Attributes; | |
| using Nethereum.Web3; | |
| using Nethereum.RPC.Eth.DTOs; | |
| using Nethereum.Contracts.CQS; | |
| using Nethereum.Contracts; |