Skip to content

Commit 9295388

Browse files
committed
initial commit, unknown version history
1 parent d07d6a4 commit 9295388

5 files changed

+563
-9
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
tests/*.res
2+
13
# Uncomment these types if you want even more clean repository. But be careful.
24
# It can make harm to an existing project source. Read explanations below.
35
#

tests/delphereum.dpr

+2
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ uses
6565
web3.eth.crypto.tests in '..\web3.eth.crypto.tests.pas',
6666
web3.eth.defi in '..\web3.eth.defi.pas',
6767
web3.eth.dydx in '..\web3.eth.dydx.pas',
68+
web3.eth.eip712 in '..\web3.eth.eip712.pas',
69+
web3.eth.eip712.tests in '..\web3.eth.eip712.tests.pas',
6870
web3.eth.ens in '..\web3.eth.ens.pas',
6971
web3.eth.ens.tests in '..\web3.eth.ens.tests.pas',
7072
web3.eth.erc20 in '..\web3.eth.erc20.pas',

tests/delphereum.dproj

+7-9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<TargetedPlatforms>1</TargetedPlatforms>
1010
<AppType>Console</AppType>
1111
<MainSource>delphereum.dpr</MainSource>
12+
<ProjectName Condition="'$(ProjectName)'==''">delphereum</ProjectName>
1213
</PropertyGroup>
1314
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
1415
<Base>true</Base>
@@ -23,11 +24,6 @@
2324
<CfgParent>Base</CfgParent>
2425
<Base>true</Base>
2526
</PropertyGroup>
26-
<PropertyGroup Condition="('$(Platform)'=='Linux64' and '$(Base)'=='true') or '$(Base_Linux64)'!=''">
27-
<Base_Linux64>true</Base_Linux64>
28-
<CfgParent>Base</CfgParent>
29-
<Base>true</Base>
30-
</PropertyGroup>
3127
<PropertyGroup Condition="('$(Platform)'=='OSX64' and '$(Base)'=='true') or '$(Base_OSX64)'!=''">
3228
<Base_OSX64>true</Base_OSX64>
3329
<CfgParent>Base</CfgParent>
@@ -87,9 +83,6 @@
8783
<PropertyGroup Condition="'$(Base_iOSSimARM64)'!=''">
8884
<DCC_UsePackage>fmx;DbxCommonDriver;bindengine;IndyIPCommon;emsclient;FireDACCommonDriver;IndyProtocols;IndyIPClient;dbxcds;bindcompfmx;FireDACSqliteDriver;DbxClientDriver;soapmidas;fmxFireDAC;dbexpress;inet;DataSnapCommon;fmxase;dbrtl;FireDACDBXDriver;CustomIPTransport;DBXInterBaseDriver;IndySystem;bindcomp;FireDACCommon;IndyCore;RESTBackendComponents;bindcompdbx;rtl;RESTComponents;DBXSqliteDriver;IndyIPServer;dsnapxml;DataSnapClient;DataSnapProviderClient;DataSnapFireDAC;emsclientfiredac;FireDAC;FireDACDSDriver;xmlrtl;tethering;dsnap;CloudService;DataSnapNativeClient;soaprtl;soapserver;FireDACIBDriver;$(DCC_UsePackage)</DCC_UsePackage>
8985
</PropertyGroup>
90-
<PropertyGroup Condition="'$(Base_Linux64)'!=''">
91-
<DCC_UsePackage>DataSnapServer;fmx;emshosting;DbxCommonDriver;bindengine;FireDACCommonODBC;emsclient;FireDACCommonDriver;IndyProtocols;dbxcds;emsedge;inetdb;FireDACSqliteDriver;DbxClientDriver;FireDACASADriver;soapmidas;dbexpress;FireDACInfxDriver;inet;DataSnapCommon;dbrtl;FireDACOracleDriver;CustomIPTransport;FireDACMSSQLDriver;DataSnapIndy10ServerTransport;DataSnapConnectors;FireDACMongoDBDriver;IndySystem;FireDACTDataDriver;bindcomp;FireDACCommon;DataSnapServerMidas;FireDACODBCDriver;emsserverresource;IndyCore;RESTBackendComponents;rtl;FireDACMySQLDriver;FireDACADSDriver;RESTComponents;dsnapxml;DataSnapClient;DataSnapFireDAC;emsclientfiredac;FireDACPgDriver;FireDAC;xmlrtl;dsnap;CloudService;FireDACDb2Driver;DataSnapNativeClient;DatasnapConnectorsFreePascal;soaprtl;soapserver;FireDACIBDriver;$(DCC_UsePackage)</DCC_UsePackage>
92-
</PropertyGroup>
9386
<PropertyGroup Condition="'$(Base_OSX64)'!=''">
9487
<DCC_UsePackage>DataSnapServer;fmx;DbxCommonDriver;bindengine;IndyIPCommon;FireDACCommonODBC;emsclient;FireDACCommonDriver;IndyProtocols;IndyIPClient;dbxcds;bindcompfmx;DBXFirebirdDriver;inetdb;FireDACSqliteDriver;DbxClientDriver;FireDACASADriver;soapmidas;fmxFireDAC;dbexpress;DBXMySQLDriver;inet;DataSnapCommon;fmxase;dbrtl;FireDACDBXDriver;FireDACOracleDriver;fmxdae;CustomIPTransport;FireDACMSSQLDriver;DataSnapIndy10ServerTransport;DBXInterBaseDriver;FireDACMongoDBDriver;IndySystem;FireDACTDataDriver;bindcomp;FireDACCommon;DataSnapServerMidas;FireDACODBCDriver;IndyCore;RESTBackendComponents;sgcIDE;bindcompdbx;rtl;FireDACMySQLDriver;RESTComponents;DBXSqliteDriver;IndyIPServer;dsnapxml;DataSnapClient;DataSnapProviderClient;DataSnapFireDAC;emsclientfiredac;FireDACPgDriver;FireDAC;FireDACDSDriver;inetdbxpress;xmlrtl;tethering;dsnap;CloudService;DBXSybaseASADriver;DBXOracleDriver;DBXInformixDriver;fmxobj;DataSnapNativeClient;soaprtl;soapserver;FireDACIBDriver;$(DCC_UsePackage)</DCC_UsePackage>
9588
</PropertyGroup>
@@ -160,6 +153,8 @@
160153
<DCCReference Include="..\web3.eth.crypto.tests.pas"/>
161154
<DCCReference Include="..\web3.eth.defi.pas"/>
162155
<DCCReference Include="..\web3.eth.dydx.pas"/>
156+
<DCCReference Include="..\web3.eth.eip712.pas"/>
157+
<DCCReference Include="..\web3.eth.eip712.tests.pas"/>
163158
<DCCReference Include="..\web3.eth.ens.pas"/>
164159
<DCCReference Include="..\web3.eth.ens.tests.pas"/>
165160
<DCCReference Include="..\web3.eth.erc20.pas"/>
@@ -906,6 +901,9 @@
906901
<Platform Name="Win64">
907902
<Operation>1</Operation>
908903
</Platform>
904+
<Platform Name="Win64x">
905+
<Operation>1</Operation>
906+
</Platform>
909907
</DeployClass>
910908
<DeployClass Name="ProjectiOSDeviceDebug">
911909
<Platform Name="iOSDevice32">
@@ -1198,11 +1196,11 @@
11981196
<ProjectRoot Platform="OSXARM64" Name="$(PROJECTNAME).app"/>
11991197
<ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
12001198
<ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
1199+
<ProjectRoot Platform="Win64x" Name="$(PROJECTNAME)"/>
12011200
</Deployment>
12021201
<Platforms>
12031202
<Platform value="iOSDevice64">False</Platform>
12041203
<Platform value="iOSSimARM64">False</Platform>
1205-
<Platform value="Linux64">False</Platform>
12061204
<Platform value="OSX64">False</Platform>
12071205
<Platform value="OSXARM64">False</Platform>
12081206
<Platform value="Win32">True</Platform>

0 commit comments

Comments
 (0)