forked from svanas/delphereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb3.pas
429 lines (372 loc) · 11.8 KB
/
web3.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
{******************************************************************************}
{ }
{ Delphereum }
{ }
{ Copyright(c) 2018 Stefan van As <[email protected]> }
{ Github Repository <https://github.com/svanas/delphereum> }
{ }
{ Distributed under Creative Commons NonCommercial (aka CC BY-NC) license. }
{ }
{******************************************************************************}
unit web3;
{$I web3.inc}
interface
uses
// Delphi
System.JSON,
System.SysUtils,
// Velthuis' BigNumbers
Velthuis.BigIntegers;
type
TChain = (
Mainnet,
Ropsten,
Rinkeby,
Goerli,
Optimism,
RSK_main_net,
RSK_test_net,
Kovan,
BSC_main_net,
BSC_test_net,
xDai
);
TChainHelper = record helper for TChain
function Id: Integer;
function Name: string;
function Testnet: Boolean;
function Ethereum: Boolean;
function BlockExplorerURL: string;
end;
TAddress = string[42];
TPrivateKey = string[64];
TSignature = string[132];
TWei = BigInteger;
TTxHash = string[66];
TUnixDateTime = Int64;
TProtocol = (HTTPS, WebSockets);
TSecurity = (Automatic, TLS_10, TLS_11, TLS_12, TLS_13);
EWeb3 = class(Exception);
IError = interface
['{562C0444-B452-4552-9242-62E02B5D6DD0}']
function Message: string;
end;
TError = class(TInterfacedObject, IError)
private
FMessage: string;
public
constructor Create(const Msg: string); overload;
constructor Create(const Msg: string; const Args: array of const); overload;
function Message: string; virtual;
end;
TOnEtherscanApiKey = reference to procedure(var apiKey: string);
TGasPrice = (
Outbid,
Fastest,
Fast, // expected to be mined in < 2 minutes
Average, // expected to be mined in < 5 minutes
SafeLow // expected to be mined in < 30 minutes
);
TGasStationInfo = record
Speed : TGasPrice;
apiKey: string;
Custom: TWei;
class function Average: TGasStationInfo; static;
end;
TOnGasStationInfo = reference to procedure(var info: TGasStationInfo);
INotImplemented = interface(IError)
['{FFB9DA94-0C40-4A7C-9C47-CD790E3435A2}']
end;
TNotImplemented = class(TError, INotImplemented)
public
constructor Create;
end;
TAsyncError = reference to procedure(err : IError);
TAsyncJsonObject = reference to procedure(resp: TJsonObject; err: IError);
TAsyncJsonArray = reference to procedure(resp: TJsonArray; err: IError);
IProtocol = interface
['{DC851A2E-D172-415C-9FD0-34977FD8F232}']
end;
IJsonRpc = interface(IProtocol)
['{79B99FD7-3000-4839-96B4-6C779C25AD0C}']
function Send(
const URL : string;
security : TSecurity;
const method: string;
args : array of const): TJsonObject; overload;
procedure Send(
const URL : string;
security : TSecurity;
const method: string;
args : array of const;
callback : TAsyncJsonObject); overload;
end;
IPubSub = interface(IJsonRpc)
['{D63B43A1-60E4-4107-8B14-925399A4850A}']
procedure Subscribe(const subscription: string; callback: TAsyncJsonObject);
procedure Unsubscribe(const subscription: string);
procedure Disconnect;
procedure SetOnError(Value: TAsyncError);
procedure SetOnDisconnect(Value: TProc);
property OnError: TAsyncError write SetOnError;
property OnDisconnect: TProc write SetOnDisconnect;
end;
ISignatureDenied = interface(IError)
['{AFFFBC21-3686-44A8-9034-2B38B3001B02}']
end;
TSignatureDenied = class(TError, ISignatureDenied);
TSignatureRequestResult = reference to procedure(approved: Boolean; err: IError);
TOnSignatureRequest = reference to procedure(from, &to: TAddress;
gasPrice, estimatedGas: TWei; callback: TSignatureRequestResult);
TWeb3 = record
private
FChain : TChain;
FURL : string;
FProtocol: IProtocol;
FSecurity: TSecurity;
FOnGasStationInfo : TOnGasStationInfo;
FOnEtherscanApiKey : TOnEtherscanApiKey;
FOnSignatureRequest: TOnSignatureRequest;
function GetJsonRpc: IJsonRpc;
function GetPubSub : IPubSub;
public
function ETHERSCAN_API_KEY: string;
function GetGasStationInfo: TGasStationInfo;
procedure CanSignTransaction(from, &to: TAddress;
gasPrice, estimatedGas: TWei; callback: TSignatureRequestResult);
constructor Create(
const aURL: string;
aSecurity : TSecurity = TSecurity.Automatic); overload;
constructor Create(
aChain : TChain;
const aURL: string;
aSecurity : TSecurity = TSecurity.Automatic); overload;
constructor Create(
const aURL: string;
aJsonRpc : IJsonRpc;
aSecurity : TSecurity = TSecurity.Automatic); overload;
constructor Create(
aChain : TChain;
const aURL: string;
aProtocol : IProtocol;
aSecurity : TSecurity = TSecurity.Automatic); overload;
property Chain : TChain read FChain;
property URL : string read FURL;
property JsonRpc : IJsonRpc read GetJsonRpc;
property PubSub : IPubSub read GetPubSub;
property Security: TSecurity read FSecurity;
property OnGasStationInfo : TOnGasStationInfo read FOnGasStationInfo write FOnGasStationInfo;
property OnEtherscanApiKey : TOnEtherscanApiKey read FOnEtherscanApiKey write FOnEtherscanApiKey;
property OnSignatureRequest: TOnSignatureRequest read FOnSignatureRequest write FOnSignatureRequest;
end;
function Now: TUnixDateTime;
implementation
// https://www.ideasawakened.com/post/writing-cross-framework-code-in-delphi
uses
System.Classes,
System.DateUtils,
System.TypInfo,
System.UITypes,
{$IFDEF FMX}
FMX.Dialogs,
{$ELSE}
VCL.Dialogs,
{$ENDIF}
web3.eth.chainlink,
web3.eth.types,
web3.eth.utils,
web3.json.rpc.https;
function Now: TUnixDateTime;
begin
Result := DateTimeToUnix(System.SysUtils.Now, False);
end;
{ TChainHelper }
function TChainHelper.Id: Integer;
const
// https://chainid.network/
CHAIN_ID: array[TChain] of Integer = (
1, // Mainnet
3, // Ropsten
4, // Rinkeby
5, // Goerli
10, // Optimism
30, // RSK_main_net
31, // RSK_test_net
42, // Kovan
56, // BSC_main_net
97, // BSC_test_net
100 // xDai
);
begin
Result := CHAIN_ID[Self];
end;
function TChainHelper.Name: string;
begin
Result := GetEnumName(TypeInfo(TChain), Integer(Self)).Replace('_', ' ');
end;
function TChainHelper.Testnet: Boolean;
begin
Result := Self in [Ropsten, Rinkeby, Goerli, RSK_test_net, Kovan, BSC_test_net];
end;
function TChainHelper.Ethereum: Boolean;
begin
Result := Self in [Mainnet, Ropsten, Rinkeby, Goerli, Kovan];
end;
function TChainHelper.BlockExplorerURL: string;
const
BLOCK_EXPLORER_URL: array[TChain] of string = (
'https://etherscan.io', // Mainnet
'https://ropsten.etherscan.io', // Ropsten
'https://rinkeby.etherscan.io', // Rinkeby
'https://goerli.etherscan.io', // Goerli
'https://mainnet.optimism.io', // Optimism
'https://explorer.rsk.co', // RSK_main_net
'https://explorer.testnet.rsk.co', // RSK_test_net
'https://kovan.etherscan.io', // Kovan
'https://bscscan.com', // BSC_main_net
'https://testnet.bscscan.com', // BSC_test_net
'https://blockscout.com/poa/xdai' // xDai
);
begin
Result := BLOCK_EXPLORER_URL[Self];
end;
{ TError }
constructor TError.Create(const Msg: string);
begin
FMessage := Msg;
end;
constructor TError.Create(const Msg: string; const Args: array of const);
begin
FMessage := Format(Msg, Args);
end;
function TError.Message: string;
begin
Result := FMessage;
end;
{ TNotImplemented }
constructor TNotImplemented.Create;
begin
inherited Create('Not implemented');
end;
{ TGasStationInfo }
class function TGasStationInfo.Average: TGasStationInfo;
begin
Result.Speed := TGasPrice.Average;
end;
{ TWeb3 }
function TWeb3.ETHERSCAN_API_KEY: string;
begin
Result := '';
if Assigned(FOnEtherscanApiKey) then
FOnEtherscanApiKey(Result);
end;
function TWeb3.GetGasStationInfo: TGasStationInfo;
begin
Result := TGasStationInfo.Average;
if Assigned(FOnGasStationInfo) then
FOnGasStationInfo(Result);
end;
procedure TWeb3.CanSignTransaction(from, &to: TAddress;
gasPrice, estimatedGas: TWei; callback: TSignatureRequestResult);
resourcestring
RS_SIGNATURE_REQUEST = 'Your signature is being requested.'
+ #13#10#13#10 + 'Network' + #9 + ': %s'
+ #13#10 + 'From ' + #9 + ': %s'
+ #13#10 + 'To ' + #9 + ': %s'
+ #13#10 + 'Gas price' + #9 + ': %s Gwei'
+ #13#10 + 'Estimate' + #9 + ': %s gas units'
+ #13#10 + 'Gas fee' + #9 + ': $ %.2f'
+ #13#10#13#10 + 'Do you approve of this request?';
var
client : TWeb3;
chainName : string;
modalResult: Integer;
begin
if Assigned(FOnSignatureRequest) then
begin
FOnSignatureRequest(from, &to, gasPrice, estimatedGas, callback);
EXIT;
end;
client := Self;
chainName := GetEnumName(TypeInfo(TChain), Ord(Chain));
from.ToString(client, procedure(const from: string; err: IError)
begin
if Assigned(err) then
begin
callback(False, err);
EXIT;
end;
&to.ToString(client, procedure(const &to: string; err: IError)
begin
if Assigned(err) then
begin
callback(False, err);
EXIT;
end;
web3.eth.chainlink.eth_usd(client, procedure(price: Extended; err: IError)
begin
if Assigned(err) then
begin
callback(False, err);
EXIT;
end;
TThread.Synchronize(nil, procedure
begin
{$WARN SYMBOL_DEPRECATED OFF}
modalResult := MessageDlg(Format(
RS_SIGNATURE_REQUEST,
[
chainName, // Network
from, // From
&to, // To
fromWei(gasPrice, gwei, 1), // Gas price (gwei)
estimatedGas.ToString, // Estimated gas (units)
EthToFloat(fromWei(estimatedGas * gasPrice, ether)) * price // Gas fee
]),
TMsgDlgType.mtConfirmation, mbYesNo, 0, TMsgDlgBtn.mbNo
);
{$WARN SYMBOL_DEPRECATED DEFAULT}
end);
callback(modalResult = mrYes, nil);
end);
end, True);
end, True);
end;
constructor TWeb3.Create(const aURL: string; aSecurity: TSecurity);
begin
Self.Create(Mainnet, aURL, aSecurity);
end;
constructor TWeb3.Create(aChain: TChain; const aURL: string; aSecurity: TSecurity);
begin
Self.Create(aChain, aURL, TJsonRpcHttps.Create, aSecurity);
end;
constructor TWeb3.Create(const aURL: string; aJsonRpc: IJsonRpc; aSecurity: TSecurity);
begin
Self.Create(Mainnet, aURL, aJsonRpc, aSecurity);
end;
constructor TWeb3.Create(
aChain : TChain;
const aURL: string;
aProtocol : IProtocol;
aSecurity : TSecurity);
begin
Self.FChain := aChain;
Self.FURL := aURL;
Self.FProtocol := aProtocol;
Self.FSecurity := aSecurity;
end;
function TWeb3.GetJsonRpc: IJsonRpc;
begin
Result := nil;
if Assigned(FProtocol) then
if not Supports(FProtocol, IJsonRpc, Result) then
Result := nil;
end;
function TWeb3.GetPubSub: IPubSub;
begin
Result := nil;
if Assigned(FProtocol) then
if not Supports(FProtocol, IPubSub, Result) then
Result := nil;
end;
end.