@@ -7,22 +7,32 @@ import {
7
7
State ,
8
8
type Action ,
9
9
composeContext ,
10
- generateObject ,
10
+ generateObjectV2 ,
11
11
} from "@ai16z/eliza" ;
12
12
import { connect , keyStores , utils } from "near-api-js" ;
13
- import { init_env , ftGetTokenMetadata , estimateSwap , instantSwap , fetchAllPools , FT_MINIMUM_STORAGE_BALANCE_LARGE , ONE_YOCTO_NEAR } from '@ref-finance/ref-sdk' ;
13
+ import {
14
+ init_env ,
15
+ ftGetTokenMetadata ,
16
+ estimateSwap ,
17
+ instantSwap ,
18
+ fetchAllPools ,
19
+ FT_MINIMUM_STORAGE_BALANCE_LARGE ,
20
+ ONE_YOCTO_NEAR ,
21
+ } from "@ref-finance/ref-sdk" ;
14
22
import { walletProvider } from "../providers/wallet" ;
15
23
import { KeyPairString } from "near-api-js/lib/utils" ;
16
24
17
-
18
- async function checkStorageBalance ( account : any , contractId : string ) : Promise < boolean > {
25
+ async function checkStorageBalance (
26
+ account : any ,
27
+ contractId : string
28
+ ) : Promise < boolean > {
19
29
try {
20
30
const balance = await account . viewFunction ( {
21
31
contractId,
22
- methodName : ' storage_balance_of' ,
23
- args : { account_id : account . accountId }
32
+ methodName : " storage_balance_of" ,
33
+ args : { account_id : account . accountId } ,
24
34
} ) ;
25
- return balance !== null && balance . total !== '0' ;
35
+ return balance !== null && balance . total !== "0" ;
26
36
} catch ( error ) {
27
37
console . log ( `Error checking storage balance: ${ error } ` ) ;
28
38
return false ;
@@ -34,29 +44,32 @@ async function swapToken(
34
44
inputTokenId : string ,
35
45
outputTokenId : string ,
36
46
amount : string ,
37
- slippageTolerance : number = Number ( runtime . getSetting ( "SLIPPAGE_TOLERANCE" ) ) || 0.01
47
+ slippageTolerance : number = Number (
48
+ runtime . getSetting ( "SLIPPAGE_TOLERANCE" )
49
+ ) || 0.01
38
50
) : Promise < any > {
39
51
try {
40
52
// Get token metadata
41
53
const tokenIn = await ftGetTokenMetadata ( inputTokenId ) ;
42
54
const tokenOut = await ftGetTokenMetadata ( outputTokenId ) ;
43
55
const networkId = runtime . getSetting ( "NEAR_NETWORK" ) || "testnet" ;
44
- const nodeUrl = runtime . getSetting ( "RPC_URL" ) || "https://rpc.testnet.near.org" ;
56
+ const nodeUrl =
57
+ runtime . getSetting ( "RPC_URL" ) || "https://rpc.testnet.near.org" ;
45
58
46
59
// Get all pools for estimation
47
- const { ratedPools, unRatedPools, simplePools} = await fetchAllPools ( ) ;
60
+ const { ratedPools, unRatedPools, simplePools } = await fetchAllPools ( ) ;
48
61
const swapTodos = await estimateSwap ( {
49
62
tokenIn,
50
63
tokenOut,
51
64
amountIn : amount ,
52
65
simplePools,
53
66
options : {
54
67
enableSmartRouting : true ,
55
- }
68
+ } ,
56
69
} ) ;
57
70
58
71
if ( ! swapTodos || swapTodos . length === 0 ) {
59
- throw new Error ( ' No valid swap route found' ) ;
72
+ throw new Error ( " No valid swap route found" ) ;
60
73
}
61
74
62
75
// Get account ID from runtime settings
@@ -88,31 +101,41 @@ async function swapToken(
88
101
amountIn : amount ,
89
102
swapTodos,
90
103
slippageTolerance,
91
- AccountId : accountId
104
+ AccountId : accountId ,
92
105
} ) ;
93
106
94
107
// If storage deposit is needed, add it to transactions
95
108
if ( ! hasStorageIn ) {
96
109
transactions . unshift ( {
97
110
receiverId : inputTokenId ,
98
- functionCalls : [ {
99
- methodName : 'storage_deposit' ,
100
- args : { account_id : accountId , registration_only : true } ,
101
- gas : '30000000000000' ,
102
- amount : FT_MINIMUM_STORAGE_BALANCE_LARGE
103
- } ]
111
+ functionCalls : [
112
+ {
113
+ methodName : "storage_deposit" ,
114
+ args : {
115
+ account_id : accountId ,
116
+ registration_only : true ,
117
+ } ,
118
+ gas : "30000000000000" ,
119
+ amount : FT_MINIMUM_STORAGE_BALANCE_LARGE ,
120
+ } ,
121
+ ] ,
104
122
} ) ;
105
123
}
106
124
107
125
if ( ! hasStorageOut ) {
108
126
transactions . unshift ( {
109
127
receiverId : outputTokenId ,
110
- functionCalls : [ {
111
- methodName : 'storage_deposit' ,
112
- args : { account_id : accountId , registration_only : true } ,
113
- gas : '30000000000000' ,
114
- amount : FT_MINIMUM_STORAGE_BALANCE_LARGE
115
- } ]
128
+ functionCalls : [
129
+ {
130
+ methodName : "storage_deposit" ,
131
+ args : {
132
+ account_id : accountId ,
133
+ registration_only : true ,
134
+ } ,
135
+ gas : "30000000000000" ,
136
+ amount : FT_MINIMUM_STORAGE_BALANCE_LARGE ,
137
+ } ,
138
+ ] ,
116
139
} ) ;
117
140
}
118
141
@@ -156,7 +179,12 @@ Respond with a JSON markdown block containing only the extracted values. Use nul
156
179
157
180
export const executeSwap : Action = {
158
181
name : "EXECUTE_SWAP_NEAR" ,
159
- similes : [ "SWAP_TOKENS_NEAR" , "TOKEN_SWAP_NEAR" , "TRADE_TOKENS_NEAR" , "EXCHANGE_TOKENS_NEAR" ] ,
182
+ similes : [
183
+ "SWAP_TOKENS_NEAR" ,
184
+ "TOKEN_SWAP_NEAR" ,
185
+ "TRADE_TOKENS_NEAR" ,
186
+ "EXCHANGE_TOKENS_NEAR" ,
187
+ ] ,
160
188
validate : async ( runtime : IAgentRuntime , message : Memory ) => {
161
189
console . log ( "Message:" , message ) ;
162
190
return true ;
@@ -186,15 +214,19 @@ export const executeSwap: Action = {
186
214
template : swapTemplate ,
187
215
} ) ;
188
216
189
- const response = await generateObject ( {
217
+ const response = await generateObjectV2 ( {
190
218
runtime,
191
219
context : swapContext ,
192
220
modelClass : ModelClass . LARGE ,
193
221
} ) ;
194
222
195
223
console . log ( "Response:" , response ) ;
196
224
197
- if ( ! response . inputTokenId || ! response . outputTokenId || ! response . amount ) {
225
+ if (
226
+ ! response . inputTokenId ||
227
+ ! response . outputTokenId ||
228
+ ! response . amount
229
+ ) {
198
230
console . log ( "Missing required parameters, skipping swap" ) ;
199
231
const responseMsg = {
200
232
text : "I need the input token ID, output token ID, and amount to perform the swap" ,
@@ -214,13 +246,17 @@ export const executeSwap: Action = {
214
246
215
247
// Create keystore and connect to NEAR
216
248
const keyStore = new keyStores . InMemoryKeyStore ( ) ;
217
- const keyPair = utils . KeyPair . fromString ( secretKey as KeyPairString ) ;
249
+ const keyPair = utils . KeyPair . fromString (
250
+ secretKey as KeyPairString
251
+ ) ;
218
252
await keyStore . setKey ( "testnet" , accountId , keyPair ) ;
219
253
220
254
const nearConnection = await connect ( {
221
255
networkId : runtime . getSetting ( "NEAR_NETWORK" ) || "testnet" ,
222
256
keyStore,
223
- nodeUrl : runtime . getSetting ( "RPC_URL" ) || "https://rpc.testnet.near.org" ,
257
+ nodeUrl :
258
+ runtime . getSetting ( "RPC_URL" ) ||
259
+ "https://rpc.testnet.near.org" ,
224
260
} ) ;
225
261
226
262
// Execute swap
@@ -243,14 +279,18 @@ export const executeSwap: Action = {
243
279
methodName : functionCall . methodName ,
244
280
args : functionCall . args ,
245
281
gas : functionCall . gas ,
246
- attachedDeposit : BigInt ( functionCall . amount === ONE_YOCTO_NEAR ? '1' : functionCall . amount ) ,
282
+ attachedDeposit : BigInt (
283
+ functionCall . amount === ONE_YOCTO_NEAR
284
+ ? "1"
285
+ : functionCall . amount
286
+ ) ,
247
287
} ) ;
248
288
results . push ( result ) ;
249
289
}
250
290
}
251
291
252
292
console . log ( "Swap completed successfully!" ) ;
253
- const txHashes = results . map ( r => r . transaction . hash ) . join ( ", " ) ;
293
+ const txHashes = results . map ( ( r ) => r . transaction . hash ) . join ( ", " ) ;
254
294
255
295
const responseMsg = {
256
296
text : `Swap completed successfully! Transaction hashes: ${ txHashes } ` ,
0 commit comments