forked from svanas/delphereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb3.eth.yearn.tools.pas
142 lines (123 loc) · 3.76 KB
/
web3.eth.yearn.tools.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
{******************************************************************************}
{ }
{ Delphereum }
{ }
{ Copyright(c) 2020 Stefan van As <[email protected]> }
{ Github Repository <https://github.com/svanas/delphereum> }
{ }
{ Distributed under Creative Commons NonCommercial (aka CC BY-NC) license. }
{ }
{ https://yearn.tools/ }
{ }
{******************************************************************************}
unit web3.eth.yearn.tools;
{$I web3.inc}
interface
uses
// Delphi
System.Types,
// web3
web3,
web3.eth.defi,
web3.http;
type
IYearnVault = interface
function Name : string;
function Symbol : string;
function Description: string;
function APY(period : TPeriod): Extended;
end;
TAsyncYearnVault = reference to procedure(apy: IYearnVault; err: IError);
function vault(const addr: TAddress; callback: TAsyncYearnVault): IAsyncResult; overload;
function vault(const addr: TAddress; callback: TAsyncJsonObject): IAsyncResult; overload;
implementation
uses
// Delphi
System.Generics.Collections,
System.JSON,
System.SysUtils,
// web3
web3.json;
type
TYearnVault = class(TInterfacedObject, IYearnVault)
private
FJsonObject: TJsonObject;
public
function Name : string;
function Symbol : string;
function Description: string;
function APY(period : TPeriod): Extended;
constructor Create(aJsonObject: TJsonObject);
destructor Destroy; override;
end;
constructor TYearnVault.Create(aJsonObject: TJsonObject);
begin
inherited Create;
FJsonObject := aJsonObject;
end;
destructor TYearnVault.Destroy;
begin
if Assigned(FJsonObject) then
FJsonObject.Free;
inherited Destroy;
end;
function TYearnVault.Name: string;
begin
Result := getPropAsStr(FJsonObject, 'name');
end;
function TYearnVault.Symbol: string;
begin
Result := getPropAsStr(FJsonObject, 'vaultSymbol');
end;
function TYearnVault.Description: string;
begin
Result := getPropAsStr(FJsonObject, 'description');
end;
function TYearnVault.APY(period: TPeriod): Extended;
const
PROP_NAME: array[TPeriod] of string = (
'apyOneDaySample', // oneDay
'apyThreeDaySample', // threeDays
'apyOneWeekSample', // oneWeek
'apyOneMonthSample' // oneMonth
);
begin
Result := getPropAsExt(FJsonObject, PROP_NAME[period])
end;
function vault(const addr: TAddress; callback: TAsyncYearnVault): IAsyncResult;
begin
Result := vault(addr, procedure(obj: TJsonObject; err: IError)
begin
if Assigned(err) then
callback(nil, err)
else
callback(TYearnVault.Create(obj.Clone as TJsonObject), nil);
end);
end;
function vault(const addr: TAddress; callback: TAsyncJsonObject): IAsyncResult;
begin
Result := web3.http.get(
'https://api.yearn.tools/vaults/apy',
procedure(arr: TJsonArray; err: IError)
var
idx : Integer;
elem: TJsonValue;
begin
if Assigned(err) then
begin
callback(nil, err);
EXIT;
end;
for idx := 0 to Pred(arr.Count) do
begin
elem := TJsonArray(arr).Items[idx];
if SameText(getPropAsStr(elem, 'address'), string(addr)) then
begin
callback(elem as TJsonObject, nil);
EXIT;
end;
end;
callback(nil, TError.Create('%s not found', [addr]));
end);
end;
end.