@stargatefinance/stg-evm-sdk-v2 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/artifacts/src/StargateBase.sol/StargateBase.json +1348 -0
  2. package/artifacts/src/StargateOFT.sol/StargateOFT.json +1374 -0
  3. package/artifacts/src/StargatePool.sol/StargatePool.json +1722 -0
  4. package/artifacts/src/StargatePoolNative.sol/StargatePoolNative.json +1717 -0
  5. package/artifacts/src/feelibs/FeeLibBase.sol/FeeLibBase.json +313 -0
  6. package/artifacts/src/feelibs/FeeLibV1.sol/FeeConfigLib.json +10 -0
  7. package/artifacts/src/feelibs/FeeLibV1.sol/FeeLibV1.json +561 -0
  8. package/artifacts/src/intent/IntentBase.sol/IntentBase.json +231 -0
  9. package/artifacts/src/intent/IntentOFT.sol/IntentOFT.json +247 -0
  10. package/artifacts/src/intent/IntentPool.sol/IntentPool.json +350 -0
  11. package/artifacts/src/intent/IntentPoolNative.sol/IWETH.json +24 -0
  12. package/artifacts/src/intent/IntentPoolNative.sol/IntentPoolNative.json +367 -0
  13. package/artifacts/src/interfaces/IBridgedUSDCMinter.sol/IBridgedUSDCMinter.json +48 -0
  14. package/artifacts/src/interfaces/ICreditMessaging.sol/ICreditMessaging.json +113 -0
  15. package/artifacts/src/interfaces/ICreditMessagingHandler.sol/ICreditMessagingHandler.json +71 -0
  16. package/artifacts/src/interfaces/IERC20Minter.sol/IERC20Minter.json +47 -0
  17. package/artifacts/src/interfaces/IStargate.sol/IStargate.json +661 -0
  18. package/artifacts/src/interfaces/IStargateFeeLib.sol/IStargateFeeLib.json +230 -0
  19. package/artifacts/src/interfaces/IStargatePool.sol/IStargatePool.json +939 -0
  20. package/artifacts/src/interfaces/ITokenMessaging.sol/ITokenMessaging.json +494 -0
  21. package/artifacts/src/interfaces/ITokenMessagingHandler.sol/ITokenMessagingHandler.json +78 -0
  22. package/artifacts/src/interfaces/permit2/IAllowanceTransfer.sol/IAllowanceTransfer.json +495 -0
  23. package/artifacts/src/interfaces/permit2/IEIP712.sol/IEIP712.json +24 -0
  24. package/artifacts/src/interfaces/permit2/IPermit2.sol/IPermit2.json +874 -0
  25. package/artifacts/src/interfaces/permit2/ISignatureTransfer.sol/ISignatureTransfer.json +403 -0
  26. package/artifacts/src/libs/AddressCast.sol/AddressCast.json +10 -0
  27. package/artifacts/src/libs/Bus.sol/BusLib.json +92 -0
  28. package/artifacts/src/libs/CreditMsgCodec.sol/CreditMsgCodec.json +16 -0
  29. package/artifacts/src/libs/MessagingHelper.sol/MessagingHelper.json +10 -0
  30. package/artifacts/src/libs/PassengerCodec.sol/PassengerCodec.json +16 -0
  31. package/artifacts/src/libs/Path.sol/PathLib.json +26 -0
  32. package/artifacts/src/libs/RideBusOptionsLibV1.sol/RideBusOptionsLibV1.json +16 -0
  33. package/artifacts/src/libs/TokenMsgCodec.sol/TokenMsgCodec.json +16 -0
  34. package/artifacts/src/libs/Transfer.sol/Transfer.json +21 -0
  35. package/artifacts/src/libs/Transfer.sol/TransferLib.json +21 -0
  36. package/artifacts/src/messaging/CreditMessaging.sol/CreditMessaging.json +1033 -0
  37. package/artifacts/src/messaging/CreditMessagingOptions.sol/CreditMessagingOptions.json +229 -0
  38. package/artifacts/src/messaging/MessagingBase.sol/MessagingBase.json +701 -0
  39. package/artifacts/src/messaging/TokenMessaging.sol/TokenMessaging.json +1692 -0
  40. package/artifacts/src/messaging/TokenMessagingOptions.sol/TokenMessagingOptions.json +239 -0
  41. package/artifacts/src/mocks/ERC20Token.sol/ERC20Token.json +335 -0
  42. package/artifacts/src/mocks/FeeLibMock.sol/FeeLibMock.json +230 -0
  43. package/artifacts/src/mocks/OFTToken.sol/OFTToken.json +380 -0
  44. package/artifacts/src/mocks/PoolToken.sol/PoolToken.json +406 -0
  45. package/artifacts/src/mocks/USDC.sol/USDC.json +381 -0
  46. package/artifacts/src/mocks/WETH.sol/WETH.json +310 -0
  47. package/artifacts/src/peripheral/Planner.sol/Planner.json +212 -0
  48. package/artifacts/src/peripheral/RebateCampaign.sol/RebateCampaign.json +237 -0
  49. package/artifacts/src/peripheral/Treasurer.sol/Treasurer.json +194 -0
  50. package/artifacts/src/usdc/StargateOFTUSDC.sol/StargateOFTUSDC.json +1374 -0
  51. package/artifacts/src/usdc/StargatePoolUSDC.sol/StargatePoolUSDC.json +1748 -0
  52. package/artifacts/src/utils/LPToken.sol/LPToken.json +496 -0
  53. package/deployments/arbsep-testnet/FeeLibV1ETH.json +466 -0
  54. package/deployments/arbsep-testnet/MessagingETH.json +1356 -0
  55. package/deployments/arbsep-testnet/StargatePoolNative.json +1933 -0
  56. package/deployments/avalanche-testnet/FeeLibV1USDT.json +466 -0
  57. package/deployments/avalanche-testnet/MessagingUSDT.json +1356 -0
  58. package/deployments/avalanche-testnet/StargatePoolUSDT.json +1939 -0
  59. package/deployments/bsc-sandbox-local/CreditMessaging.json +1393 -0
  60. package/deployments/bsc-sandbox-local/FeeLibV1BUSD.json +828 -0
  61. package/deployments/bsc-sandbox-local/FeeLibV1ETH.json +828 -0
  62. package/deployments/bsc-sandbox-local/FeeLibV1LUSD.json +828 -0
  63. package/deployments/bsc-sandbox-local/FeeLibV1USDC.json +828 -0
  64. package/deployments/bsc-sandbox-local/FeeLibV1USDT.json +828 -0
  65. package/deployments/bsc-sandbox-local/IntentOFTBUSD.json +337 -0
  66. package/deployments/bsc-sandbox-local/IntentOFTETH.json +337 -0
  67. package/deployments/bsc-sandbox-local/IntentOFTLUSD.json +337 -0
  68. package/deployments/bsc-sandbox-local/IntentOFTUSDC.json +337 -0
  69. package/deployments/bsc-sandbox-local/IntentOFTUSDT.json +337 -0
  70. package/deployments/bsc-sandbox-local/OFTTokenBUSD.json +571 -0
  71. package/deployments/bsc-sandbox-local/OFTTokenETH.json +571 -0
  72. package/deployments/bsc-sandbox-local/OFTTokenLUSD.json +571 -0
  73. package/deployments/bsc-sandbox-local/OFTTokenUSDC.json +558 -0
  74. package/deployments/bsc-sandbox-local/OFTTokenUSDT.json +571 -0
  75. package/deployments/bsc-sandbox-local/Permit2Mock.json +923 -0
  76. package/deployments/bsc-sandbox-local/StargateOFTBUSD.json +1803 -0
  77. package/deployments/bsc-sandbox-local/StargateOFTETH.json +1803 -0
  78. package/deployments/bsc-sandbox-local/StargateOFTLUSD.json +1803 -0
  79. package/deployments/bsc-sandbox-local/StargateOFTUSDC.json +1792 -0
  80. package/deployments/bsc-sandbox-local/StargateOFTUSDT.json +1803 -0
  81. package/deployments/bsc-sandbox-local/TokenMessaging.json +2166 -0
  82. package/deployments/bsc-sandbox-local/WETH.json +453 -0
  83. package/deployments/bsc-testnet/FeeLibV1ETH.json +466 -0
  84. package/deployments/bsc-testnet/FeeLibV1USDT.json +466 -0
  85. package/deployments/bsc-testnet/MessagingETH.json +1356 -0
  86. package/deployments/bsc-testnet/MessagingUSDT.json +1356 -0
  87. package/deployments/bsc-testnet/OFTTokenETH.json +557 -0
  88. package/deployments/bsc-testnet/StargateOFTETH.json +1601 -0
  89. package/deployments/bsc-testnet/StargatePoolUSDT.json +1939 -0
  90. package/deployments/ethereum-sandbox-local/CreditMessaging.json +1393 -0
  91. package/deployments/ethereum-sandbox-local/FeeLibV1BUSD.json +828 -0
  92. package/deployments/ethereum-sandbox-local/FeeLibV1ETH.json +828 -0
  93. package/deployments/ethereum-sandbox-local/FeeLibV1LUSD.json +828 -0
  94. package/deployments/ethereum-sandbox-local/FeeLibV1USDC.json +828 -0
  95. package/deployments/ethereum-sandbox-local/FeeLibV1USDT.json +828 -0
  96. package/deployments/ethereum-sandbox-local/IntentOFTBUSD.json +337 -0
  97. package/deployments/ethereum-sandbox-local/IntentPoolLUSD.json +440 -0
  98. package/deployments/ethereum-sandbox-local/IntentPoolNative.json +444 -0
  99. package/deployments/ethereum-sandbox-local/IntentPoolUSDC.json +440 -0
  100. package/deployments/ethereum-sandbox-local/IntentPoolUSDT.json +440 -0
  101. package/deployments/ethereum-sandbox-local/OFTTokenBUSD.json +571 -0
  102. package/deployments/ethereum-sandbox-local/Permit2Mock.json +923 -0
  103. package/deployments/ethereum-sandbox-local/PoolTokenLUSD.json +597 -0
  104. package/deployments/ethereum-sandbox-local/PoolTokenUSDC.json +597 -0
  105. package/deployments/ethereum-sandbox-local/PoolTokenUSDT.json +597 -0
  106. package/deployments/ethereum-sandbox-local/StargateOFTBUSD.json +1803 -0
  107. package/deployments/ethereum-sandbox-local/StargatePoolLUSD.json +2239 -0
  108. package/deployments/ethereum-sandbox-local/StargatePoolNative.json +2233 -0
  109. package/deployments/ethereum-sandbox-local/StargatePoolUSDC.json +2257 -0
  110. package/deployments/ethereum-sandbox-local/StargatePoolUSDT.json +2239 -0
  111. package/deployments/ethereum-sandbox-local/TokenMessaging.json +2166 -0
  112. package/deployments/ethereum-sandbox-local/WETH.json +453 -0
  113. package/deployments/polygon-sandbox-local/CreditMessaging.json +1393 -0
  114. package/deployments/polygon-sandbox-local/FeeLibV1BUSD.json +828 -0
  115. package/deployments/polygon-sandbox-local/FeeLibV1ETH.json +828 -0
  116. package/deployments/polygon-sandbox-local/FeeLibV1LUSD.json +828 -0
  117. package/deployments/polygon-sandbox-local/FeeLibV1USDC.json +828 -0
  118. package/deployments/polygon-sandbox-local/FeeLibV1USDT.json +828 -0
  119. package/deployments/polygon-sandbox-local/IntentOFTBUSD.json +337 -0
  120. package/deployments/polygon-sandbox-local/IntentOFTETH.json +337 -0
  121. package/deployments/polygon-sandbox-local/IntentOFTLUSD.json +337 -0
  122. package/deployments/polygon-sandbox-local/IntentOFTUSDC.json +337 -0
  123. package/deployments/polygon-sandbox-local/IntentPoolUSDT.json +440 -0
  124. package/deployments/polygon-sandbox-local/OFTTokenBUSD.json +571 -0
  125. package/deployments/polygon-sandbox-local/OFTTokenETH.json +571 -0
  126. package/deployments/polygon-sandbox-local/OFTTokenLUSD.json +571 -0
  127. package/deployments/polygon-sandbox-local/OFTTokenUSDC.json +558 -0
  128. package/deployments/polygon-sandbox-local/Permit2Mock.json +923 -0
  129. package/deployments/polygon-sandbox-local/PoolTokenUSDT.json +597 -0
  130. package/deployments/polygon-sandbox-local/StargateOFTBUSD.json +1803 -0
  131. package/deployments/polygon-sandbox-local/StargateOFTETH.json +1803 -0
  132. package/deployments/polygon-sandbox-local/StargateOFTLUSD.json +1803 -0
  133. package/deployments/polygon-sandbox-local/StargateOFTUSDC.json +1792 -0
  134. package/deployments/polygon-sandbox-local/StargatePoolUSDT.json +2239 -0
  135. package/deployments/polygon-sandbox-local/TokenMessaging.json +2166 -0
  136. package/deployments/polygon-sandbox-local/WETH.json +453 -0
  137. package/deployments/polygon-testnet/FeeLibV1USDT.json +481 -0
  138. package/deployments/polygon-testnet/MessagingUSDT.json +1371 -0
  139. package/deployments/polygon-testnet/OFTTokenUSDT.json +572 -0
  140. package/deployments/polygon-testnet/StargateOFTUSDT.json +1616 -0
  141. package/deployments/sepolia-testnet/FeeLibV1ETH.json +466 -0
  142. package/deployments/sepolia-testnet/MessagingETH.json +1356 -0
  143. package/deployments/sepolia-testnet/StargatePoolNative.json +1933 -0
  144. package/dist/index.cjs +24634 -0
  145. package/dist/index.cjs.map +1 -0
  146. package/dist/index.d.mts +31486 -0
  147. package/dist/index.d.ts +31486 -0
  148. package/dist/index.mjs +24558 -0
  149. package/dist/index.mjs.map +1 -0
  150. package/package.json +42 -0
@@ -0,0 +1,1348 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "StargateBase",
4
+ "sourceName": "src/StargateBase.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "InvalidLocalDecimals",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "Path_AlreadyHasCredit",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "inputs": [],
18
+ "name": "Path_CreditTooMuch",
19
+ "type": "error"
20
+ },
21
+ {
22
+ "inputs": [],
23
+ "name": "Path_InsufficientCredit",
24
+ "type": "error"
25
+ },
26
+ {
27
+ "inputs": [
28
+ {
29
+ "internalType": "uint256",
30
+ "name": "amountLD",
31
+ "type": "uint256"
32
+ },
33
+ {
34
+ "internalType": "uint256",
35
+ "name": "minAmountLD",
36
+ "type": "uint256"
37
+ }
38
+ ],
39
+ "name": "SlippageExceeded",
40
+ "type": "error"
41
+ },
42
+ {
43
+ "inputs": [],
44
+ "name": "Stargate_InvalidAmount",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "Stargate_InvalidPath",
50
+ "type": "error"
51
+ },
52
+ {
53
+ "inputs": [],
54
+ "name": "Stargate_InvalidTokenDecimals",
55
+ "type": "error"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "Stargate_LzTokenUnavailable",
60
+ "type": "error"
61
+ },
62
+ {
63
+ "inputs": [],
64
+ "name": "Stargate_OutflowFailed",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "Stargate_Paused",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [],
74
+ "name": "Stargate_ReentrantCall",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "Stargate_SlippageTooHigh",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "Stargate_Unauthorized",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "Stargate_UnreceivedTokenNotFound",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "Transfer_TransferFailed",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "anonymous": false,
99
+ "inputs": [
100
+ {
101
+ "indexed": false,
102
+ "internalType": "uint32",
103
+ "name": "srcEid",
104
+ "type": "uint32"
105
+ },
106
+ {
107
+ "components": [
108
+ {
109
+ "internalType": "uint32",
110
+ "name": "srcEid",
111
+ "type": "uint32"
112
+ },
113
+ {
114
+ "internalType": "uint64",
115
+ "name": "amount",
116
+ "type": "uint64"
117
+ }
118
+ ],
119
+ "indexed": false,
120
+ "internalType": "struct Credit[]",
121
+ "name": "credits",
122
+ "type": "tuple[]"
123
+ }
124
+ ],
125
+ "name": "CreditsReceived",
126
+ "type": "event"
127
+ },
128
+ {
129
+ "anonymous": false,
130
+ "inputs": [
131
+ {
132
+ "indexed": false,
133
+ "internalType": "uint32",
134
+ "name": "dstEid",
135
+ "type": "uint32"
136
+ },
137
+ {
138
+ "components": [
139
+ {
140
+ "internalType": "uint32",
141
+ "name": "srcEid",
142
+ "type": "uint32"
143
+ },
144
+ {
145
+ "internalType": "uint64",
146
+ "name": "amount",
147
+ "type": "uint64"
148
+ }
149
+ ],
150
+ "indexed": false,
151
+ "internalType": "struct Credit[]",
152
+ "name": "credits",
153
+ "type": "tuple[]"
154
+ }
155
+ ],
156
+ "name": "CreditsSent",
157
+ "type": "event"
158
+ },
159
+ {
160
+ "anonymous": false,
161
+ "inputs": [
162
+ {
163
+ "indexed": false,
164
+ "internalType": "uint32",
165
+ "name": "dstEid",
166
+ "type": "uint32"
167
+ },
168
+ {
169
+ "indexed": false,
170
+ "internalType": "bool",
171
+ "name": "oft",
172
+ "type": "bool"
173
+ }
174
+ ],
175
+ "name": "OFTPathSet",
176
+ "type": "event"
177
+ },
178
+ {
179
+ "anonymous": false,
180
+ "inputs": [
181
+ {
182
+ "indexed": true,
183
+ "internalType": "bytes32",
184
+ "name": "guid",
185
+ "type": "bytes32"
186
+ },
187
+ {
188
+ "indexed": false,
189
+ "internalType": "uint32",
190
+ "name": "srcEid",
191
+ "type": "uint32"
192
+ },
193
+ {
194
+ "indexed": true,
195
+ "internalType": "address",
196
+ "name": "toAddress",
197
+ "type": "address"
198
+ },
199
+ {
200
+ "indexed": false,
201
+ "internalType": "uint256",
202
+ "name": "amountReceivedLD",
203
+ "type": "uint256"
204
+ }
205
+ ],
206
+ "name": "OFTReceived",
207
+ "type": "event"
208
+ },
209
+ {
210
+ "anonymous": false,
211
+ "inputs": [
212
+ {
213
+ "indexed": true,
214
+ "internalType": "bytes32",
215
+ "name": "guid",
216
+ "type": "bytes32"
217
+ },
218
+ {
219
+ "indexed": false,
220
+ "internalType": "uint32",
221
+ "name": "dstEid",
222
+ "type": "uint32"
223
+ },
224
+ {
225
+ "indexed": true,
226
+ "internalType": "address",
227
+ "name": "fromAddress",
228
+ "type": "address"
229
+ },
230
+ {
231
+ "indexed": false,
232
+ "internalType": "uint256",
233
+ "name": "amountSentLD",
234
+ "type": "uint256"
235
+ },
236
+ {
237
+ "indexed": false,
238
+ "internalType": "uint256",
239
+ "name": "amountReceivedLD",
240
+ "type": "uint256"
241
+ }
242
+ ],
243
+ "name": "OFTSent",
244
+ "type": "event"
245
+ },
246
+ {
247
+ "anonymous": false,
248
+ "inputs": [
249
+ {
250
+ "indexed": true,
251
+ "internalType": "address",
252
+ "name": "previousOwner",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "indexed": true,
257
+ "internalType": "address",
258
+ "name": "newOwner",
259
+ "type": "address"
260
+ }
261
+ ],
262
+ "name": "OwnershipTransferred",
263
+ "type": "event"
264
+ },
265
+ {
266
+ "anonymous": false,
267
+ "inputs": [
268
+ {
269
+ "indexed": false,
270
+ "internalType": "uint64",
271
+ "name": "amountSD",
272
+ "type": "uint64"
273
+ }
274
+ ],
275
+ "name": "TreasuryFeeAdded",
276
+ "type": "event"
277
+ },
278
+ {
279
+ "anonymous": false,
280
+ "inputs": [
281
+ {
282
+ "indexed": false,
283
+ "internalType": "address",
284
+ "name": "to",
285
+ "type": "address"
286
+ },
287
+ {
288
+ "indexed": false,
289
+ "internalType": "uint64",
290
+ "name": "amountSD",
291
+ "type": "uint64"
292
+ }
293
+ ],
294
+ "name": "TreasuryFeeWithdrawn",
295
+ "type": "event"
296
+ },
297
+ {
298
+ "anonymous": false,
299
+ "inputs": [
300
+ {
301
+ "indexed": false,
302
+ "internalType": "bytes32",
303
+ "name": "guid",
304
+ "type": "bytes32"
305
+ },
306
+ {
307
+ "indexed": false,
308
+ "internalType": "uint8",
309
+ "name": "index",
310
+ "type": "uint8"
311
+ },
312
+ {
313
+ "indexed": false,
314
+ "internalType": "address",
315
+ "name": "receiver",
316
+ "type": "address"
317
+ },
318
+ {
319
+ "indexed": false,
320
+ "internalType": "uint256",
321
+ "name": "amountLD",
322
+ "type": "uint256"
323
+ },
324
+ {
325
+ "indexed": false,
326
+ "internalType": "uint8",
327
+ "name": "composeIdx",
328
+ "type": "uint8"
329
+ },
330
+ {
331
+ "indexed": false,
332
+ "internalType": "bytes",
333
+ "name": "composeMsg",
334
+ "type": "bytes"
335
+ }
336
+ ],
337
+ "name": "UnreceivedTokenCached",
338
+ "type": "event"
339
+ },
340
+ {
341
+ "inputs": [
342
+ {
343
+ "internalType": "uint256",
344
+ "name": "_amountLD",
345
+ "type": "uint256"
346
+ }
347
+ ],
348
+ "name": "addTreasuryFee",
349
+ "outputs": [],
350
+ "stateMutability": "payable",
351
+ "type": "function"
352
+ },
353
+ {
354
+ "inputs": [],
355
+ "name": "approvalRequired",
356
+ "outputs": [
357
+ {
358
+ "internalType": "bool",
359
+ "name": "",
360
+ "type": "bool"
361
+ }
362
+ ],
363
+ "stateMutability": "pure",
364
+ "type": "function"
365
+ },
366
+ {
367
+ "inputs": [],
368
+ "name": "getAddressConfig",
369
+ "outputs": [
370
+ {
371
+ "components": [
372
+ {
373
+ "internalType": "address",
374
+ "name": "feeLib",
375
+ "type": "address"
376
+ },
377
+ {
378
+ "internalType": "address",
379
+ "name": "planner",
380
+ "type": "address"
381
+ },
382
+ {
383
+ "internalType": "address",
384
+ "name": "treasurer",
385
+ "type": "address"
386
+ },
387
+ {
388
+ "internalType": "address",
389
+ "name": "tokenMessaging",
390
+ "type": "address"
391
+ },
392
+ {
393
+ "internalType": "address",
394
+ "name": "creditMessaging",
395
+ "type": "address"
396
+ },
397
+ {
398
+ "internalType": "address",
399
+ "name": "lzToken",
400
+ "type": "address"
401
+ }
402
+ ],
403
+ "internalType": "struct StargateBase.AddressConfig",
404
+ "name": "",
405
+ "type": "tuple"
406
+ }
407
+ ],
408
+ "stateMutability": "view",
409
+ "type": "function"
410
+ },
411
+ {
412
+ "inputs": [],
413
+ "name": "oftVersion",
414
+ "outputs": [
415
+ {
416
+ "internalType": "bytes4",
417
+ "name": "interfaceId",
418
+ "type": "bytes4"
419
+ },
420
+ {
421
+ "internalType": "uint64",
422
+ "name": "version",
423
+ "type": "uint64"
424
+ }
425
+ ],
426
+ "stateMutability": "pure",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [],
431
+ "name": "owner",
432
+ "outputs": [
433
+ {
434
+ "internalType": "address",
435
+ "name": "",
436
+ "type": "address"
437
+ }
438
+ ],
439
+ "stateMutability": "view",
440
+ "type": "function"
441
+ },
442
+ {
443
+ "inputs": [
444
+ {
445
+ "internalType": "uint32",
446
+ "name": "eid",
447
+ "type": "uint32"
448
+ }
449
+ ],
450
+ "name": "paths",
451
+ "outputs": [
452
+ {
453
+ "internalType": "uint16",
454
+ "name": "baseBusFareMultiplierBps",
455
+ "type": "uint16"
456
+ },
457
+ {
458
+ "internalType": "uint64",
459
+ "name": "credit",
460
+ "type": "uint64"
461
+ }
462
+ ],
463
+ "stateMutability": "view",
464
+ "type": "function"
465
+ },
466
+ {
467
+ "inputs": [
468
+ {
469
+ "components": [
470
+ {
471
+ "internalType": "uint32",
472
+ "name": "dstEid",
473
+ "type": "uint32"
474
+ },
475
+ {
476
+ "internalType": "bytes32",
477
+ "name": "to",
478
+ "type": "bytes32"
479
+ },
480
+ {
481
+ "internalType": "uint256",
482
+ "name": "amountLD",
483
+ "type": "uint256"
484
+ },
485
+ {
486
+ "internalType": "uint256",
487
+ "name": "minAmountLD",
488
+ "type": "uint256"
489
+ },
490
+ {
491
+ "internalType": "bytes",
492
+ "name": "extraOptions",
493
+ "type": "bytes"
494
+ },
495
+ {
496
+ "internalType": "bytes",
497
+ "name": "composeMsg",
498
+ "type": "bytes"
499
+ },
500
+ {
501
+ "internalType": "bytes",
502
+ "name": "oftCmd",
503
+ "type": "bytes"
504
+ }
505
+ ],
506
+ "internalType": "struct SendParam",
507
+ "name": "_sendParam",
508
+ "type": "tuple"
509
+ }
510
+ ],
511
+ "name": "quoteOFT",
512
+ "outputs": [
513
+ {
514
+ "components": [
515
+ {
516
+ "internalType": "uint256",
517
+ "name": "minAmountLD",
518
+ "type": "uint256"
519
+ },
520
+ {
521
+ "internalType": "uint256",
522
+ "name": "maxAmountLD",
523
+ "type": "uint256"
524
+ }
525
+ ],
526
+ "internalType": "struct OFTLimit",
527
+ "name": "limit",
528
+ "type": "tuple"
529
+ },
530
+ {
531
+ "components": [
532
+ {
533
+ "internalType": "int256",
534
+ "name": "feeAmountLD",
535
+ "type": "int256"
536
+ },
537
+ {
538
+ "internalType": "string",
539
+ "name": "description",
540
+ "type": "string"
541
+ }
542
+ ],
543
+ "internalType": "struct OFTFeeDetail[]",
544
+ "name": "oftFeeDetails",
545
+ "type": "tuple[]"
546
+ },
547
+ {
548
+ "components": [
549
+ {
550
+ "internalType": "uint256",
551
+ "name": "amountSentLD",
552
+ "type": "uint256"
553
+ },
554
+ {
555
+ "internalType": "uint256",
556
+ "name": "amountReceivedLD",
557
+ "type": "uint256"
558
+ }
559
+ ],
560
+ "internalType": "struct OFTReceipt",
561
+ "name": "receipt",
562
+ "type": "tuple"
563
+ }
564
+ ],
565
+ "stateMutability": "view",
566
+ "type": "function"
567
+ },
568
+ {
569
+ "inputs": [
570
+ {
571
+ "internalType": "uint32",
572
+ "name": "_dstEid",
573
+ "type": "uint32"
574
+ },
575
+ {
576
+ "internalType": "bytes",
577
+ "name": "_options",
578
+ "type": "bytes"
579
+ },
580
+ {
581
+ "internalType": "uint256",
582
+ "name": "_composeMsgSize",
583
+ "type": "uint256"
584
+ }
585
+ ],
586
+ "name": "quoteRideBusOptions",
587
+ "outputs": [
588
+ {
589
+ "components": [
590
+ {
591
+ "internalType": "uint128",
592
+ "name": "extraFare",
593
+ "type": "uint128"
594
+ },
595
+ {
596
+ "internalType": "uint128",
597
+ "name": "nativeDropAmount",
598
+ "type": "uint128"
599
+ },
600
+ {
601
+ "internalType": "uint128",
602
+ "name": "lzComposeGas",
603
+ "type": "uint128"
604
+ },
605
+ {
606
+ "internalType": "uint128",
607
+ "name": "lzComposeValue",
608
+ "type": "uint128"
609
+ }
610
+ ],
611
+ "internalType": "struct RideBusOptions",
612
+ "name": "rideBusOptions",
613
+ "type": "tuple"
614
+ }
615
+ ],
616
+ "stateMutability": "view",
617
+ "type": "function"
618
+ },
619
+ {
620
+ "inputs": [
621
+ {
622
+ "components": [
623
+ {
624
+ "internalType": "uint32",
625
+ "name": "dstEid",
626
+ "type": "uint32"
627
+ },
628
+ {
629
+ "internalType": "bytes32",
630
+ "name": "to",
631
+ "type": "bytes32"
632
+ },
633
+ {
634
+ "internalType": "uint256",
635
+ "name": "amountLD",
636
+ "type": "uint256"
637
+ },
638
+ {
639
+ "internalType": "uint256",
640
+ "name": "minAmountLD",
641
+ "type": "uint256"
642
+ },
643
+ {
644
+ "internalType": "bytes",
645
+ "name": "extraOptions",
646
+ "type": "bytes"
647
+ },
648
+ {
649
+ "internalType": "bytes",
650
+ "name": "composeMsg",
651
+ "type": "bytes"
652
+ },
653
+ {
654
+ "internalType": "bytes",
655
+ "name": "oftCmd",
656
+ "type": "bytes"
657
+ }
658
+ ],
659
+ "internalType": "struct SendParam",
660
+ "name": "_sendParam",
661
+ "type": "tuple"
662
+ },
663
+ {
664
+ "internalType": "bool",
665
+ "name": "_payInLzToken",
666
+ "type": "bool"
667
+ }
668
+ ],
669
+ "name": "quoteSend",
670
+ "outputs": [
671
+ {
672
+ "components": [
673
+ {
674
+ "internalType": "uint256",
675
+ "name": "nativeFee",
676
+ "type": "uint256"
677
+ },
678
+ {
679
+ "internalType": "uint256",
680
+ "name": "lzTokenFee",
681
+ "type": "uint256"
682
+ }
683
+ ],
684
+ "internalType": "struct MessagingFee",
685
+ "name": "fee",
686
+ "type": "tuple"
687
+ }
688
+ ],
689
+ "stateMutability": "view",
690
+ "type": "function"
691
+ },
692
+ {
693
+ "inputs": [
694
+ {
695
+ "internalType": "uint32",
696
+ "name": "_srcEid",
697
+ "type": "uint32"
698
+ },
699
+ {
700
+ "components": [
701
+ {
702
+ "internalType": "uint32",
703
+ "name": "srcEid",
704
+ "type": "uint32"
705
+ },
706
+ {
707
+ "internalType": "uint64",
708
+ "name": "amount",
709
+ "type": "uint64"
710
+ }
711
+ ],
712
+ "internalType": "struct Credit[]",
713
+ "name": "_credits",
714
+ "type": "tuple[]"
715
+ }
716
+ ],
717
+ "name": "receiveCredits",
718
+ "outputs": [],
719
+ "stateMutability": "nonpayable",
720
+ "type": "function"
721
+ },
722
+ {
723
+ "inputs": [
724
+ {
725
+ "components": [
726
+ {
727
+ "internalType": "uint32",
728
+ "name": "srcEid",
729
+ "type": "uint32"
730
+ },
731
+ {
732
+ "internalType": "bytes32",
733
+ "name": "sender",
734
+ "type": "bytes32"
735
+ },
736
+ {
737
+ "internalType": "uint64",
738
+ "name": "nonce",
739
+ "type": "uint64"
740
+ }
741
+ ],
742
+ "internalType": "struct Origin",
743
+ "name": "_origin",
744
+ "type": "tuple"
745
+ },
746
+ {
747
+ "internalType": "bytes32",
748
+ "name": "_guid",
749
+ "type": "bytes32"
750
+ },
751
+ {
752
+ "internalType": "uint8",
753
+ "name": "_index",
754
+ "type": "uint8"
755
+ },
756
+ {
757
+ "components": [
758
+ {
759
+ "internalType": "address",
760
+ "name": "receiver",
761
+ "type": "address"
762
+ },
763
+ {
764
+ "internalType": "uint64",
765
+ "name": "amountSD",
766
+ "type": "uint64"
767
+ },
768
+ {
769
+ "internalType": "bytes",
770
+ "name": "composeMsg",
771
+ "type": "bytes"
772
+ },
773
+ {
774
+ "internalType": "uint8",
775
+ "name": "composeIdx",
776
+ "type": "uint8"
777
+ }
778
+ ],
779
+ "internalType": "struct TransferPayload",
780
+ "name": "_payload",
781
+ "type": "tuple"
782
+ }
783
+ ],
784
+ "name": "receiveToken",
785
+ "outputs": [],
786
+ "stateMutability": "nonpayable",
787
+ "type": "function"
788
+ },
789
+ {
790
+ "inputs": [],
791
+ "name": "renounceOwnership",
792
+ "outputs": [],
793
+ "stateMutability": "nonpayable",
794
+ "type": "function"
795
+ },
796
+ {
797
+ "inputs": [
798
+ {
799
+ "internalType": "bytes32",
800
+ "name": "_guid",
801
+ "type": "bytes32"
802
+ },
803
+ {
804
+ "internalType": "uint8",
805
+ "name": "_index",
806
+ "type": "uint8"
807
+ },
808
+ {
809
+ "internalType": "address",
810
+ "name": "_receiver",
811
+ "type": "address"
812
+ },
813
+ {
814
+ "internalType": "uint256",
815
+ "name": "_amountLD",
816
+ "type": "uint256"
817
+ },
818
+ {
819
+ "internalType": "uint8",
820
+ "name": "_composeIdx",
821
+ "type": "uint8"
822
+ },
823
+ {
824
+ "internalType": "bytes",
825
+ "name": "_composeMsg",
826
+ "type": "bytes"
827
+ }
828
+ ],
829
+ "name": "retryReceiveToken",
830
+ "outputs": [],
831
+ "stateMutability": "nonpayable",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [
836
+ {
837
+ "components": [
838
+ {
839
+ "internalType": "uint32",
840
+ "name": "dstEid",
841
+ "type": "uint32"
842
+ },
843
+ {
844
+ "internalType": "bytes32",
845
+ "name": "to",
846
+ "type": "bytes32"
847
+ },
848
+ {
849
+ "internalType": "uint256",
850
+ "name": "amountLD",
851
+ "type": "uint256"
852
+ },
853
+ {
854
+ "internalType": "uint256",
855
+ "name": "minAmountLD",
856
+ "type": "uint256"
857
+ },
858
+ {
859
+ "internalType": "bytes",
860
+ "name": "extraOptions",
861
+ "type": "bytes"
862
+ },
863
+ {
864
+ "internalType": "bytes",
865
+ "name": "composeMsg",
866
+ "type": "bytes"
867
+ },
868
+ {
869
+ "internalType": "bytes",
870
+ "name": "oftCmd",
871
+ "type": "bytes"
872
+ }
873
+ ],
874
+ "internalType": "struct SendParam",
875
+ "name": "_sendParam",
876
+ "type": "tuple"
877
+ },
878
+ {
879
+ "components": [
880
+ {
881
+ "internalType": "uint256",
882
+ "name": "nativeFee",
883
+ "type": "uint256"
884
+ },
885
+ {
886
+ "internalType": "uint256",
887
+ "name": "lzTokenFee",
888
+ "type": "uint256"
889
+ }
890
+ ],
891
+ "internalType": "struct MessagingFee",
892
+ "name": "_fee",
893
+ "type": "tuple"
894
+ },
895
+ {
896
+ "internalType": "address",
897
+ "name": "_refundAddress",
898
+ "type": "address"
899
+ }
900
+ ],
901
+ "name": "send",
902
+ "outputs": [
903
+ {
904
+ "components": [
905
+ {
906
+ "internalType": "bytes32",
907
+ "name": "guid",
908
+ "type": "bytes32"
909
+ },
910
+ {
911
+ "internalType": "uint64",
912
+ "name": "nonce",
913
+ "type": "uint64"
914
+ },
915
+ {
916
+ "components": [
917
+ {
918
+ "internalType": "uint256",
919
+ "name": "nativeFee",
920
+ "type": "uint256"
921
+ },
922
+ {
923
+ "internalType": "uint256",
924
+ "name": "lzTokenFee",
925
+ "type": "uint256"
926
+ }
927
+ ],
928
+ "internalType": "struct MessagingFee",
929
+ "name": "fee",
930
+ "type": "tuple"
931
+ }
932
+ ],
933
+ "internalType": "struct MessagingReceipt",
934
+ "name": "msgReceipt",
935
+ "type": "tuple"
936
+ },
937
+ {
938
+ "components": [
939
+ {
940
+ "internalType": "uint256",
941
+ "name": "amountSentLD",
942
+ "type": "uint256"
943
+ },
944
+ {
945
+ "internalType": "uint256",
946
+ "name": "amountReceivedLD",
947
+ "type": "uint256"
948
+ }
949
+ ],
950
+ "internalType": "struct OFTReceipt",
951
+ "name": "oftReceipt",
952
+ "type": "tuple"
953
+ }
954
+ ],
955
+ "stateMutability": "payable",
956
+ "type": "function"
957
+ },
958
+ {
959
+ "inputs": [
960
+ {
961
+ "internalType": "uint32",
962
+ "name": "_dstEid",
963
+ "type": "uint32"
964
+ },
965
+ {
966
+ "components": [
967
+ {
968
+ "internalType": "uint32",
969
+ "name": "srcEid",
970
+ "type": "uint32"
971
+ },
972
+ {
973
+ "internalType": "uint64",
974
+ "name": "amount",
975
+ "type": "uint64"
976
+ }
977
+ ],
978
+ "internalType": "struct Credit[]",
979
+ "name": "_credits",
980
+ "type": "tuple[]"
981
+ }
982
+ ],
983
+ "name": "sendCredits",
984
+ "outputs": [],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [
990
+ {
991
+ "components": [
992
+ {
993
+ "internalType": "uint32",
994
+ "name": "dstEid",
995
+ "type": "uint32"
996
+ },
997
+ {
998
+ "internalType": "bytes32",
999
+ "name": "to",
1000
+ "type": "bytes32"
1001
+ },
1002
+ {
1003
+ "internalType": "uint256",
1004
+ "name": "amountLD",
1005
+ "type": "uint256"
1006
+ },
1007
+ {
1008
+ "internalType": "uint256",
1009
+ "name": "minAmountLD",
1010
+ "type": "uint256"
1011
+ },
1012
+ {
1013
+ "internalType": "bytes",
1014
+ "name": "extraOptions",
1015
+ "type": "bytes"
1016
+ },
1017
+ {
1018
+ "internalType": "bytes",
1019
+ "name": "composeMsg",
1020
+ "type": "bytes"
1021
+ },
1022
+ {
1023
+ "internalType": "bytes",
1024
+ "name": "oftCmd",
1025
+ "type": "bytes"
1026
+ }
1027
+ ],
1028
+ "internalType": "struct SendParam",
1029
+ "name": "_sendParam",
1030
+ "type": "tuple"
1031
+ },
1032
+ {
1033
+ "components": [
1034
+ {
1035
+ "internalType": "uint256",
1036
+ "name": "nativeFee",
1037
+ "type": "uint256"
1038
+ },
1039
+ {
1040
+ "internalType": "uint256",
1041
+ "name": "lzTokenFee",
1042
+ "type": "uint256"
1043
+ }
1044
+ ],
1045
+ "internalType": "struct MessagingFee",
1046
+ "name": "_fee",
1047
+ "type": "tuple"
1048
+ },
1049
+ {
1050
+ "internalType": "address",
1051
+ "name": "_refundAddress",
1052
+ "type": "address"
1053
+ }
1054
+ ],
1055
+ "name": "sendToken",
1056
+ "outputs": [
1057
+ {
1058
+ "components": [
1059
+ {
1060
+ "internalType": "bytes32",
1061
+ "name": "guid",
1062
+ "type": "bytes32"
1063
+ },
1064
+ {
1065
+ "internalType": "uint64",
1066
+ "name": "nonce",
1067
+ "type": "uint64"
1068
+ },
1069
+ {
1070
+ "components": [
1071
+ {
1072
+ "internalType": "uint256",
1073
+ "name": "nativeFee",
1074
+ "type": "uint256"
1075
+ },
1076
+ {
1077
+ "internalType": "uint256",
1078
+ "name": "lzTokenFee",
1079
+ "type": "uint256"
1080
+ }
1081
+ ],
1082
+ "internalType": "struct MessagingFee",
1083
+ "name": "fee",
1084
+ "type": "tuple"
1085
+ }
1086
+ ],
1087
+ "internalType": "struct MessagingReceipt",
1088
+ "name": "msgReceipt",
1089
+ "type": "tuple"
1090
+ },
1091
+ {
1092
+ "components": [
1093
+ {
1094
+ "internalType": "uint256",
1095
+ "name": "amountSentLD",
1096
+ "type": "uint256"
1097
+ },
1098
+ {
1099
+ "internalType": "uint256",
1100
+ "name": "amountReceivedLD",
1101
+ "type": "uint256"
1102
+ }
1103
+ ],
1104
+ "internalType": "struct OFTReceipt",
1105
+ "name": "oftReceipt",
1106
+ "type": "tuple"
1107
+ },
1108
+ {
1109
+ "components": [
1110
+ {
1111
+ "internalType": "uint56",
1112
+ "name": "ticketId",
1113
+ "type": "uint56"
1114
+ },
1115
+ {
1116
+ "internalType": "bytes",
1117
+ "name": "passenger",
1118
+ "type": "bytes"
1119
+ }
1120
+ ],
1121
+ "internalType": "struct Ticket",
1122
+ "name": "passenger",
1123
+ "type": "tuple"
1124
+ }
1125
+ ],
1126
+ "stateMutability": "payable",
1127
+ "type": "function"
1128
+ },
1129
+ {
1130
+ "inputs": [
1131
+ {
1132
+ "components": [
1133
+ {
1134
+ "internalType": "address",
1135
+ "name": "feeLib",
1136
+ "type": "address"
1137
+ },
1138
+ {
1139
+ "internalType": "address",
1140
+ "name": "planner",
1141
+ "type": "address"
1142
+ },
1143
+ {
1144
+ "internalType": "address",
1145
+ "name": "treasurer",
1146
+ "type": "address"
1147
+ },
1148
+ {
1149
+ "internalType": "address",
1150
+ "name": "tokenMessaging",
1151
+ "type": "address"
1152
+ },
1153
+ {
1154
+ "internalType": "address",
1155
+ "name": "creditMessaging",
1156
+ "type": "address"
1157
+ },
1158
+ {
1159
+ "internalType": "address",
1160
+ "name": "lzToken",
1161
+ "type": "address"
1162
+ }
1163
+ ],
1164
+ "internalType": "struct StargateBase.AddressConfig",
1165
+ "name": "_config",
1166
+ "type": "tuple"
1167
+ }
1168
+ ],
1169
+ "name": "setAddressConfig",
1170
+ "outputs": [],
1171
+ "stateMutability": "nonpayable",
1172
+ "type": "function"
1173
+ },
1174
+ {
1175
+ "inputs": [
1176
+ {
1177
+ "internalType": "uint32",
1178
+ "name": "_dstEid",
1179
+ "type": "uint32"
1180
+ },
1181
+ {
1182
+ "internalType": "uint16",
1183
+ "name": "_baseFareMultiplierBps",
1184
+ "type": "uint16"
1185
+ }
1186
+ ],
1187
+ "name": "setBaseFareMultiplierBps",
1188
+ "outputs": [],
1189
+ "stateMutability": "nonpayable",
1190
+ "type": "function"
1191
+ },
1192
+ {
1193
+ "inputs": [
1194
+ {
1195
+ "internalType": "uint32",
1196
+ "name": "_dstEid",
1197
+ "type": "uint32"
1198
+ },
1199
+ {
1200
+ "internalType": "bool",
1201
+ "name": "_oft",
1202
+ "type": "bool"
1203
+ }
1204
+ ],
1205
+ "name": "setOFTPath",
1206
+ "outputs": [],
1207
+ "stateMutability": "nonpayable",
1208
+ "type": "function"
1209
+ },
1210
+ {
1211
+ "inputs": [
1212
+ {
1213
+ "internalType": "bool",
1214
+ "name": "_paused",
1215
+ "type": "bool"
1216
+ }
1217
+ ],
1218
+ "name": "setPause",
1219
+ "outputs": [],
1220
+ "stateMutability": "nonpayable",
1221
+ "type": "function"
1222
+ },
1223
+ {
1224
+ "inputs": [],
1225
+ "name": "sharedDecimals",
1226
+ "outputs": [
1227
+ {
1228
+ "internalType": "uint8",
1229
+ "name": "",
1230
+ "type": "uint8"
1231
+ }
1232
+ ],
1233
+ "stateMutability": "view",
1234
+ "type": "function"
1235
+ },
1236
+ {
1237
+ "inputs": [],
1238
+ "name": "stargateType",
1239
+ "outputs": [
1240
+ {
1241
+ "internalType": "enum StargateType",
1242
+ "name": "",
1243
+ "type": "uint8"
1244
+ }
1245
+ ],
1246
+ "stateMutability": "pure",
1247
+ "type": "function"
1248
+ },
1249
+ {
1250
+ "inputs": [],
1251
+ "name": "status",
1252
+ "outputs": [
1253
+ {
1254
+ "internalType": "uint8",
1255
+ "name": "",
1256
+ "type": "uint8"
1257
+ }
1258
+ ],
1259
+ "stateMutability": "view",
1260
+ "type": "function"
1261
+ },
1262
+ {
1263
+ "inputs": [],
1264
+ "name": "token",
1265
+ "outputs": [
1266
+ {
1267
+ "internalType": "address",
1268
+ "name": "",
1269
+ "type": "address"
1270
+ }
1271
+ ],
1272
+ "stateMutability": "view",
1273
+ "type": "function"
1274
+ },
1275
+ {
1276
+ "inputs": [
1277
+ {
1278
+ "internalType": "address",
1279
+ "name": "newOwner",
1280
+ "type": "address"
1281
+ }
1282
+ ],
1283
+ "name": "transferOwnership",
1284
+ "outputs": [],
1285
+ "stateMutability": "nonpayable",
1286
+ "type": "function"
1287
+ },
1288
+ {
1289
+ "inputs": [],
1290
+ "name": "treasuryFee",
1291
+ "outputs": [
1292
+ {
1293
+ "internalType": "uint64",
1294
+ "name": "",
1295
+ "type": "uint64"
1296
+ }
1297
+ ],
1298
+ "stateMutability": "view",
1299
+ "type": "function"
1300
+ },
1301
+ {
1302
+ "inputs": [
1303
+ {
1304
+ "internalType": "bytes32",
1305
+ "name": "guid",
1306
+ "type": "bytes32"
1307
+ },
1308
+ {
1309
+ "internalType": "uint8",
1310
+ "name": "index",
1311
+ "type": "uint8"
1312
+ }
1313
+ ],
1314
+ "name": "unreceivedTokens",
1315
+ "outputs": [
1316
+ {
1317
+ "internalType": "bytes32",
1318
+ "name": "hash",
1319
+ "type": "bytes32"
1320
+ }
1321
+ ],
1322
+ "stateMutability": "view",
1323
+ "type": "function"
1324
+ },
1325
+ {
1326
+ "inputs": [
1327
+ {
1328
+ "internalType": "address",
1329
+ "name": "_to",
1330
+ "type": "address"
1331
+ },
1332
+ {
1333
+ "internalType": "uint64",
1334
+ "name": "_amountSD",
1335
+ "type": "uint64"
1336
+ }
1337
+ ],
1338
+ "name": "withdrawTreasuryFee",
1339
+ "outputs": [],
1340
+ "stateMutability": "nonpayable",
1341
+ "type": "function"
1342
+ }
1343
+ ],
1344
+ "bytecode": "0x",
1345
+ "deployedBytecode": "0x",
1346
+ "linkReferences": {},
1347
+ "deployedLinkReferences": {}
1348
+ }