UNPKG
edwin-sdk
Version:
latest (0.8.53)
0.8.53
0.8.52
0.8.51
0.8.50
0.8.49
0.8.48
0.8.47
0.8.46
0.8.45
0.8.44
0.8.43
0.8.42
0.8.39
0.8.38
0.8.36
0.8.35
0.8.34
0.8.33
0.8.32
0.8.31
0.8.30
0.8.29
0.8.28
0.8.27
0.8.26
0.8.25
0.8.24
0.8.23
0.8.22
0.8.21
0.8.20
0.8.19
0.8.18
0.8.17
0.8.16
0.8.15
0.8.14
0.8.13
0.8.12
0.8.11
0.8.10
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.0
0.6.0
0.5.0
0.4.2
0.4.1
0.4.0
0.3.4
0.3.3
SDK for integrating AI agents with DeFi protocols
github.com/edwin-finance/edwin
edwin-finance/edwin
edwin-sdk
/
src
/
plugins
/
meteora
/
errors.ts
11 lines
(10 loc)
•
275 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
MeteoraStatisticalBugError
extends
Error
{
constructor
(
message
:
string
,
public
positionAddress
:
string
) {
super
(message);
this
.
name
=
'MeteoraStatisticalBugError'
;
this
.
positionAddress
= positionAddress; } }