-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
web3.eth.yearn.finance.api.pas
214 lines (185 loc) · 6.5 KB
/
web3.eth.yearn.finance.api.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
{******************************************************************************}
{ }
{ Delphereum }
{ }
{ Copyright(c) 2022 Stefan van As <[email protected]> }
{ Github Repository <https://github.com/svanas/delphereum> }
{ }
{ Distributed under GNU AGPL v3.0 with Commons Clause }
{ }
{ This program is free software: you can redistribute it and/or modify }
{ it under the terms of the GNU Affero General Public License as published }
{ by the Free Software Foundation, either version 3 of the License, or }
{ (at your option) any later version. }
{ }
{ This program is distributed in the hope that it will be useful, }
{ but WITHOUT ANY WARRANTY; without even the implied warranty of }
{ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the }
{ GNU Affero General Public License for more details. }
{ }
{ You should have received a copy of the GNU Affero General Public License }
{ along with this program. If not, see <https://www.gnu.org/licenses/> }
{ }
{******************************************************************************}
unit web3.eth.yearn.finance.api;
{$I web3.inc}
interface
uses
// Delphi
System.JSON,
System.SysUtils,
System.Types,
// web3
web3;
type
TVaultType = (vUnknown, v1, v2);
IMigration = interface
function Available: Boolean;
function Address: TAddress;
end;
IYearnVault = interface
function Address: TAddress;
function Token: TAddress;
function APY: Double;
function Endorsed: Boolean;
function Version: string;
function &Type: TVaultType;
function Migration: IMigration;
end;
function vaults(const chain: TChain; const callback: TProc<TArray<IYearnVault>, IError>): IAsyncResult; overload;
function vaults(const chain: TChain; const callback: TProc<TJsonArray, IError>): IAsyncResult; overload;
function latest(const chain: TChain; const reserve: TAddress; const &type: TVaultType; const callback: TProc<IYearnVault, IError>): IAsyncResult;
implementation
uses
// Delphi
System.Generics.Collections,
// web3
web3.eth,
web3.eth.types,
web3.http,
web3.json;
{--------------------------------- TMigration ---------------------------------}
type
TMigration = class(TDeserialized, IMigration)
public
function Available: Boolean;
function Address: TAddress;
end;
function TMigration.Available: Boolean;
begin
Result := getPropAsBOOL(FJsonValue, 'available');
end;
function TMigration.Address: TAddress;
begin
Result := TAddress.Create(getPropAsStr(FJsonValue, 'address'));
end;
{-------------------------------- TYearnVault ---------------------------------}
type
TYearnVault = class(TDeserialized, IYearnVault)
public
function Address: TAddress;
function Token: TAddress;
function APY: Double;
function Endorsed: Boolean;
function Version: string;
function &Type: TVaultType;
function Migration: IMigration;
end;
function TYearnVault.Address: TAddress;
begin
Result := TAddress.Create(getPropAsStr(FJsonValue, 'address'));
end;
function TYearnVault.Token: TAddress;
begin
Result := TAddress.Zero;
const token = getPropAsObj(FJsonValue, 'token');
if Assigned(token) then
Result := TAddress.Create(getPropAsStr(token, 'address'));
end;
function TYearnVault.APY: Double;
begin
Result := 0;
const apy = getPropAsObj(FJsonValue, 'apy');
if Assigned(apy) then
Result := getPropAsDouble(apy, 'net_apy', Result) * 100;
end;
function TYearnVault.Endorsed: Boolean;
begin
Result := getPropAsBOOL(FJsonValue, 'endorsed');
end;
function TYearnVault.Version: string;
begin
Result := getPropAsStr(FJsonValue, 'version');
end;
function TYearnVault.&Type: TVaultType;
begin
Result := vUnknown;
const &type = getPropAsStr(FJsonValue, 'type');
if &type = 'v1' then
Result := v1
else
if &type = 'v2' then
Result := v2;
end;
function TYearnVault.Migration: IMigration;
begin
Result := nil;
const migration = getPropAsObj(FJsonValue, 'migration');
if Assigned(migration) then
Result := TMigration.Create(migration);
end;
{------------------------------ public functions ------------------------------}
function vaults(const chain: TChain; const callback: TProc<TArray<IYearnVault>, IError>): IAsyncResult;
begin
Result := vaults(chain, procedure(arr: TJsonArray; err: IError)
begin
if Assigned(err) then
begin
callback(nil, err);
EXIT;
end;
const result = (function: TArray<IYearnVault>
begin
SetLength(Result, arr.Count);
for var I := 0 to Pred(arr.Count) do
Result[I] := TYearnVault.Create(arr[I] as TJsonObject);
end)();
callback(result, nil);
end);
end;
function vaults(const chain: TChain; const callback: TProc<TJsonArray, IError>): IAsyncResult;
begin
Result := web3.http.get(Format('https://api.yearn.fi/v1/chains/%d/vaults/all', [chain.Id]), [], procedure(value: TJsonValue; err: IError)
begin
if Assigned(err) then
callback(nil, err)
else
if Assigned(value) and (value is TJsonArray) then
callback(TJsonArray(value), err)
else
callback(nil, TError.Create('not an array'));
end);
end;
function latest(const chain: TChain; const reserve: TAddress; const &type: TVaultType; const callback: TProc<IYearnVault, IError>): IAsyncResult;
begin
vaults(chain, procedure(vaults: TArray<IYearnVault>; err: IError)
begin
if Assigned(err) then
begin
callback(nil, err);
EXIT;
end;
for var vault in vaults do
if vault.Endorsed and vault.Token.SameAs(reserve) and (vault.&Type = &type) then
begin
const migration = vault.Migration;
if (Assigned(migration) and not migration.Available) or not Assigned(migration) then
begin
callback(vault, nil);
EXIT;
end;
end;
callback(nil, nil);
end);
end;
end.