@defisaver/sdk 0.2.5 → 0.2.8
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.
- package/ACTIONS.md +379 -21
- package/DEV.md +0 -298
- package/index.js +2 -11
- package/package.json +2 -2
- package/src/Action.js +8 -20
- package/src/actions/aave/AaveBorrowAction.js +2 -11
- package/src/actions/aave/AaveClaimStkAaveAction.js +5 -5
- package/src/actions/aave/AaveCollateralSwitchAction.js +4 -5
- package/src/actions/aave/AavePaybackAction.js +2 -11
- package/src/actions/aave/AaveSupplyAction.js +6 -6
- package/src/actions/aave/AaveWithdrawAction.js +1 -8
- package/src/actions/balancer/BalancerV2ClaimAction.js +10 -12
- package/src/actions/balancer/BalancerV2SupplyAction.js +14 -16
- package/src/actions/balancer/BalancerV2WithdrawAction.js +15 -17
- package/src/actions/basic/AutomationV2Unsub.js +3 -3
- package/src/actions/basic/ChangeProxyOwnerAction.js +2 -4
- package/src/actions/basic/GasFeeAction.js +6 -6
- package/src/actions/basic/PullTokenAction.js +3 -9
- package/src/actions/basic/SellAction.js +5 -6
- package/src/actions/basic/SendTokenAction.js +4 -9
- package/src/actions/basic/SendTokenAndUnwrapAction.js +30 -0
- package/src/actions/basic/SubInputsAction.js +3 -8
- package/src/actions/basic/SumInputsAction.js +3 -8
- package/src/actions/basic/ToggleSubAction.js +19 -0
- package/src/actions/basic/TokenBalanceAction.js +3 -3
- package/src/actions/basic/UnwrapEthAction.js +5 -18
- package/src/actions/basic/UpdateSubAction.js +19 -0
- package/src/actions/basic/WrapEthAction.js +5 -15
- package/src/actions/basic/index.js +6 -0
- package/src/actions/checkers/MakerRatioCheckAction.js +5 -5
- package/src/actions/compound/CompoundBorrowAction.js +1 -7
- package/src/actions/compound/CompoundClaimAction.js +3 -3
- package/src/actions/compound/CompoundCollateralSwitchAction.js +2 -4
- package/src/actions/compound/CompoundGetDebtAction.js +3 -3
- package/src/actions/compound/CompoundPaybackAction.js +1 -7
- package/src/actions/compound/CompoundSupplyAction.js +4 -4
- package/src/actions/compound/CompoundWithdrawAction.js +1 -7
- package/src/actions/convex/ConvexClaimAction.js +60 -0
- package/src/actions/convex/ConvexDepositAction.js +67 -0
- package/src/actions/convex/ConvexWithdrawAction.js +65 -0
- package/src/actions/convex/index.js +9 -0
- package/src/actions/curve/CurveClaimFeesAction.js +4 -4
- package/src/actions/curve/CurveDepositAction.js +7 -7
- package/src/actions/curve/CurveGaugeDepositAction.js +6 -6
- package/src/actions/curve/CurveGaugeWithdrawAction.js +4 -4
- package/src/actions/curve/CurveMintCrvAction.js +3 -3
- package/src/actions/curve/CurveStethPoolDepositAction.js +9 -9
- package/src/actions/curve/CurveStethPoolWithdrawAction.js +11 -9
- package/src/actions/curve/CurveSwapAction.js +15 -15
- package/src/actions/curve/CurveWithdrawAction.js +7 -7
- package/src/actions/dydx/DyDxWithdrawAction.js +1 -7
- package/src/actions/flashloan/AaveV2FlashLoanAction.js +2 -2
- package/src/actions/flashloan/BalancerFlashLoanAction.js +2 -2
- package/src/actions/flashloan/DyDxFlashLoanAction.js +5 -1
- package/src/actions/flashloan/MakerFlashLoanAction.js +2 -2
- package/src/actions/flashloan/index.js +0 -4
- package/src/actions/guni/GUniDeposit.js +9 -9
- package/src/actions/guni/GUniWithdraw.js +5 -5
- package/src/actions/index.js +2 -2
- package/src/actions/insta/InstPullTokensAction.js +4 -4
- package/src/actions/lido/LidoStakeAction.js +2 -7
- package/src/actions/lido/LidoUnwrapAction.js +2 -7
- package/src/actions/lido/LidoWrapAction.js +7 -7
- package/src/actions/liquity/LiquityBorrowAction.js +5 -5
- package/src/actions/liquity/LiquityClaimAction.js +3 -3
- package/src/actions/liquity/LiquityCloseAction.js +4 -4
- package/src/actions/liquity/LiquityEthGainToTroveAction.js +3 -3
- package/src/actions/liquity/LiquityOpenAction.js +8 -8
- package/src/actions/liquity/LiquityPaybackAction.js +5 -5
- package/src/actions/liquity/LiquityRedeemAction.js +7 -7
- package/src/actions/liquity/LiquitySPDepositAction.js +7 -7
- package/src/actions/liquity/LiquitySPWithdrawAction.js +6 -6
- package/src/actions/liquity/LiquityStakeAction.js +7 -7
- package/src/actions/liquity/LiquitySupplyAction.js +5 -5
- package/src/actions/liquity/LiquityUnstakeAction.js +6 -6
- package/src/actions/liquity/LiquityWithdrawAction.js +4 -4
- package/src/actions/maker/MakerClaimAction.js +4 -4
- package/src/actions/maker/MakerGenerateAction.js +1 -8
- package/src/actions/maker/MakerGiveAction.js +4 -4
- package/src/actions/maker/MakerMergeAction.js +1 -7
- package/src/actions/maker/MakerOpenVaultAction.js +1 -6
- package/src/actions/maker/MakerPaybackAction.js +2 -9
- package/src/actions/maker/MakerRatioAction.js +1 -5
- package/src/actions/maker/MakerSupplyAction.js +1 -9
- package/src/actions/maker/MakerWithdrawAction.js +1 -9
- package/src/actions/mstable/MStableClaimAction.js +4 -4
- package/src/actions/mstable/MStableDepositAction.js +16 -16
- package/src/actions/mstable/MStableWithdrawAction.js +15 -15
- package/src/actions/rari/RariDepositAction.js +5 -5
- package/src/actions/rari/RariWithdrawAction.js +6 -6
- package/src/actions/reflexer/ReflexerGenerateAction.js +1 -7
- package/src/actions/reflexer/ReflexerNativeUniV2SaviourDepositAction.js +5 -5
- package/src/actions/reflexer/ReflexerNativeUniV2SaviourGetReservesAction.js +3 -8
- package/src/actions/reflexer/ReflexerNativeUniV2SaviourWithdrawAction.js +4 -9
- package/src/actions/reflexer/ReflexerOpenSafeAction.js +1 -5
- package/src/actions/reflexer/ReflexerPaybackAction.js +1 -7
- package/src/actions/reflexer/ReflexerSupplyAction.js +1 -8
- package/src/actions/reflexer/ReflexerWithdrawAction.js +1 -8
- package/src/actions/uniswap/UniswapSupplyAction.js +20 -22
- package/src/actions/uniswap/UniswapWithdrawAction.js +16 -18
- package/src/actions/uniswapV3/UniswapV3CollectAction.js +7 -9
- package/src/actions/uniswapV3/UniswapV3CreatePoolAction.js +20 -22
- package/src/actions/uniswapV3/UniswapV3MintAction.js +19 -21
- package/src/actions/uniswapV3/UniswapV3SupplyAction.js +17 -19
- package/src/actions/uniswapV3/UniswapV3WithdrawAction.js +12 -14
- package/src/actions/yearn/YearnSupplyAction.js +6 -6
- package/src/actions/yearn/YearnWithdrawAction.js +6 -6
- package/src/addresses.js +152 -187
- package/src/triggers/ChainLinkPriceTrigger.js +2 -2
- package/src/triggers/CompoundRatioTrigger.js +1 -1
- package/src/triggers/GasPriceTrigger.js +1 -1
- package/src/triggers/LiquityRatioTrigger.js +2 -2
- package/src/triggers/MakerRatioTrigger.js +1 -5
- package/src/triggers/ReflexerRatioTrigger.js +1 -1
- package/src/triggers/TimestampTrigger.js +1 -1
- package/src/triggers/UniV3CurrentTickTrigger.js +1 -1
- package/src/types.js +0 -33
- package/src/utils/convex-utils.js +20 -0
- package/src/utils/convexPoolInfo.json +1039 -0
- package/src/utils/index.js +2 -0
- package/test/Action.js +2 -1
- package/test/Strategy.js +44 -0
- package/test/accessLists/access-lists.js +1 -2
- package/test/actions/maker/MakerPaybackAction.js +2 -2
- package/test/index.js +1 -4
- package/src/ActionWithL2.js +0 -36
- package/src/actions/aaveV3/AaveV3ATokenPaybackAction.js +0 -58
- package/src/actions/aaveV3/AaveV3BorrowAction.js +0 -59
- package/src/actions/aaveV3/AaveV3ClaimRewardsAction.js +0 -45
- package/src/actions/aaveV3/AaveV3CollateralSwitchAction.js +0 -45
- package/src/actions/aaveV3/AaveV3PaybackAction.js +0 -68
- package/src/actions/aaveV3/AaveV3SetEModeAction.js +0 -40
- package/src/actions/aaveV3/AaveV3SupplyAction.js +0 -69
- package/src/actions/aaveV3/AaveV3SwapBorrowRateModeAction.js +0 -43
- package/src/actions/aaveV3/AaveV3WithdrawAction.js +0 -46
- package/src/actions/aaveV3/index.js +0 -21
- package/src/actions/flashloan/AaveV3FlashLoanAction.js +0 -26
- package/src/actions/flashloan/AaveV3FlashLoanPaybackAction.js +0 -17
- package/src/config.js +0 -83
package/src/utils/index.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
const zeroExExchange = require('./zeroExExchange');
|
|
2
2
|
const uniswapLP = require('./uniswapLP');
|
|
3
3
|
const mstableAssetPairs = require('./mstableAssetPairs');
|
|
4
|
+
const convexUtils = require('./convex-utils');
|
|
4
5
|
|
|
5
6
|
module.exports = {
|
|
6
7
|
zeroExExchange,
|
|
7
8
|
uniswapLP,
|
|
8
9
|
mstableAssetPairs,
|
|
10
|
+
convexUtils
|
|
9
11
|
}
|
package/test/Action.js
CHANGED
|
@@ -39,6 +39,7 @@ describe('Action', () => {
|
|
|
39
39
|
let action;
|
|
40
40
|
it('Constructor', () => {
|
|
41
41
|
action = new dfs.Action('MockSwap', '0x0a80C3C540eEF99811f4579fa7b1A0617294e06f', ['uint256', 'address'], ['$1', '0x6b175474e89094c44da98b954eedeac495271d0f']);
|
|
42
|
+
action.mappableArgs = [action.args[0][0], action.args[0][1]];
|
|
42
43
|
})
|
|
43
44
|
it('encodeForDsProxyCall', () => encodeForDsProxyCall(action));
|
|
44
45
|
it('encodeForRecipe', () => encodeForRecipe(action));
|
|
@@ -54,7 +55,7 @@ describe('Action', () => {
|
|
|
54
55
|
assert.throws(() => encodeForRecipe(action));
|
|
55
56
|
});
|
|
56
57
|
it('encodeForRecipe with custom mappableArgs', () => {
|
|
57
|
-
action.mappableArgs = [action.args[0][0], action.args[1]];
|
|
58
|
+
action.mappableArgs = [action.args[0][0][0], action.args[0][1]];
|
|
58
59
|
encodeForRecipe(action)
|
|
59
60
|
});
|
|
60
61
|
})
|
package/test/Strategy.js
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
const dfs = require('../index.js');
|
|
2
|
+
|
|
3
|
+
describe('Strategy', () => {
|
|
4
|
+
|
|
5
|
+
context('Yearn Repay', () => {
|
|
6
|
+
let repayStrategy;
|
|
7
|
+
|
|
8
|
+
it('Constructor', () => {
|
|
9
|
+
repayStrategy = new dfs.Strategy('McdYearnRepayStrategy');
|
|
10
|
+
|
|
11
|
+
repayStrategy.addSubSlot('&vaultId', 'uint256');
|
|
12
|
+
repayStrategy.addSubSlot('&targetRatio', 'uint256');
|
|
13
|
+
repayStrategy.addSubSlot('&daiAddr', 'address');
|
|
14
|
+
repayStrategy.addSubSlot('&mcdManager', 'address');
|
|
15
|
+
|
|
16
|
+
const mcdRatioTrigger = new dfs.triggers.MakerRatioTrigger('0', '0', '0');
|
|
17
|
+
repayStrategy.addTrigger(mcdRatioTrigger);
|
|
18
|
+
|
|
19
|
+
const yearnWithdrawAction = new dfs.actions.yearn.YearnWithdrawAction(
|
|
20
|
+
'%yDaiAddr',
|
|
21
|
+
'%amount',
|
|
22
|
+
'&proxy',
|
|
23
|
+
'&proxy',
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
const feeTakingAction = new dfs.actions.basic.GasFeeAction(
|
|
27
|
+
'0', '&daiAddr', '$1',
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const mcdPaybackAction = new dfs.actions.maker.MakerPaybackAction(
|
|
31
|
+
'&vaultId',
|
|
32
|
+
'$2',
|
|
33
|
+
'&proxy',
|
|
34
|
+
'&mcdManager',
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
repayStrategy.addAction(yearnWithdrawAction);
|
|
38
|
+
repayStrategy.addAction(feeTakingAction);
|
|
39
|
+
repayStrategy.addAction(mcdPaybackAction);
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
it('encodeForDsProxyCall', () => repayStrategy.encodeForDsProxyCall());
|
|
43
|
+
})
|
|
44
|
+
})
|
|
@@ -85,8 +85,7 @@ describe('Access-Lists', () => {
|
|
|
85
85
|
sampleRecipes.forEach((recipe) => {
|
|
86
86
|
it(`... should make an access list for recipe ${recipe.name}`, () => {
|
|
87
87
|
const recipeAccessList = recipe.getAccessList();
|
|
88
|
-
|
|
89
|
-
testDuplicates(recipeAccessList);
|
|
88
|
+
testDuplicates(recipeAccessList);
|
|
90
89
|
testInclusion(recipe, recipeAccessList);
|
|
91
90
|
});
|
|
92
91
|
});
|
|
@@ -14,7 +14,7 @@ describe('Action: MakerPaybackAction', () => {
|
|
|
14
14
|
assetAmountInWei(1, 'DAI'),
|
|
15
15
|
'0x0a80C3C540eEF99811f4579fa7b1A0617294e06f'
|
|
16
16
|
);
|
|
17
|
-
assert.equal(action.args[
|
|
17
|
+
assert.equal(action.args[3], getAddr('McdCdpManager'));
|
|
18
18
|
})
|
|
19
19
|
it('encodeForDsProxyCall', () => encodeForDsProxyCall(action));
|
|
20
20
|
it('encodeForRecipe', () => encodeForRecipe(action));
|
|
@@ -38,7 +38,7 @@ describe('Action: MakerPaybackAction', () => {
|
|
|
38
38
|
'0x0a80C3C540eEF99811f4579fa7b1A0617294e06f',
|
|
39
39
|
getAddr('BCdpManager'),
|
|
40
40
|
);
|
|
41
|
-
assert.equal(action.args[
|
|
41
|
+
assert.equal(action.args[3], getAddr('BCdpManager'));
|
|
42
42
|
})
|
|
43
43
|
it('encodeForDsProxyCall', () => encodeForDsProxyCall(action));
|
|
44
44
|
it('encodeForRecipe', () => encodeForRecipe(action));
|
package/test/index.js
CHANGED
|
@@ -3,9 +3,6 @@ const {assert} = require('chai');
|
|
|
3
3
|
|
|
4
4
|
describe('DFS', () => {
|
|
5
5
|
it('Exports constructors', () => {
|
|
6
|
-
assert.containsAllKeys(dfs, [
|
|
7
|
-
'Action', 'Recipe', 'actions', 'actionAddresses', 'utils', 'DfsWeb3', 'configure', 'getNetworkData', 'networks',
|
|
8
|
-
'actionAddressesAllChains',
|
|
9
|
-
]);
|
|
6
|
+
assert.containsAllKeys(dfs, ['Action', 'Recipe', 'actions', 'actionAddresses', 'utils', 'DfsWeb3']);
|
|
10
7
|
})
|
|
11
8
|
})
|
package/src/ActionWithL2.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
const Action = require('./Action');
|
|
2
|
-
const Dec = require('decimal.js');
|
|
3
|
-
|
|
4
|
-
class ActionWithL2 extends Action {
|
|
5
|
-
/**
|
|
6
|
-
* Encode arguments for calling the action via DsProxy
|
|
7
|
-
* @returns {string}
|
|
8
|
-
*/
|
|
9
|
-
encodeForL2DsProxyCall() { return this.encodeInputs(); }
|
|
10
|
-
|
|
11
|
-
encodeInputs() { throw new Error('Use implementation from specific ActionWithL2'); }
|
|
12
|
-
|
|
13
|
-
addressToBytes20(address) { return address.slice(2); }
|
|
14
|
-
|
|
15
|
-
boolToBytes1(bool) { return bool ? '01' : '00' }
|
|
16
|
-
|
|
17
|
-
async getEthValue() { return '0'; }
|
|
18
|
-
|
|
19
|
-
numberToBytes2(number){
|
|
20
|
-
const hexNumber = number.toString(16);
|
|
21
|
-
return hexNumber.padStart(4, '0');
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
numberToBytes1(number){
|
|
25
|
-
const hexNumber = number.toString(16);
|
|
26
|
-
return hexNumber.padStart(2, '0');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
numberToBytes32(number){
|
|
30
|
-
let hexNumber = new Dec(number).toHex();
|
|
31
|
-
hexNumber = hexNumber.slice(2);
|
|
32
|
-
|
|
33
|
-
return hexNumber.padStart(64, '0');
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
module.exports = ActionWithL2;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAssetInfoByAddress } = require("@defisaver/tokens");
|
|
3
|
-
const { getAddr } = require('../../addresses.js');
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* AaveV3ATokenPaybackAction - Repay Aave V3 debt using aTokens
|
|
7
|
-
*/
|
|
8
|
-
class AaveV3ATokenPaybackAction extends ActionWithL2 {
|
|
9
|
-
/**
|
|
10
|
-
* @param useDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
11
|
-
* @param market {EthAddress} Address provider for specific market
|
|
12
|
-
* @param amount {string} Amount of tokens to be payed back (uint.max for full debt)
|
|
13
|
-
* @param from {EthAddress} Where are we pulling the payback aTokens from
|
|
14
|
-
* @param rateMode {number} Type of borrow debt [Stable: 1, Variable: 2]
|
|
15
|
-
* @param aTokenAddr {EthAddress} address of the aToken to be pulled
|
|
16
|
-
* @param assetId {number} The id of the underlying asset to be repaid
|
|
17
|
-
*/
|
|
18
|
-
constructor(useDefaultMarket, market, amount, from, rateMode, aTokenAddr, assetId) {
|
|
19
|
-
super('AaveV3ATokenPayback', getAddr('AaveV3ATokenPayback'),
|
|
20
|
-
[['uint256','address','uint8','uint16', 'bool', 'address']],
|
|
21
|
-
[[amount, from, rateMode, assetId, useDefaultMarket, market]]
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
this.mappableArgs = [
|
|
25
|
-
this.args[0][0],
|
|
26
|
-
this.args[0][1],
|
|
27
|
-
this.args[0][5],
|
|
28
|
-
];
|
|
29
|
-
this.addressForApproval = aTokenAddr;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
async getAssetsToApprove() {
|
|
33
|
-
const asset = getAssetInfoByAddress(this.addressForApproval);
|
|
34
|
-
if (asset.symbol !== 'ETH') return [{asset: this.addressForApproval, owner: this.args[0][2]}];
|
|
35
|
-
return [];
|
|
36
|
-
}
|
|
37
|
-
encodeInputs() {
|
|
38
|
-
// executeActionDirectL2
|
|
39
|
-
let encodedInput = "0x2895f3aa";
|
|
40
|
-
// amount
|
|
41
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][0]));
|
|
42
|
-
// from
|
|
43
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][1]));
|
|
44
|
-
// rateMode
|
|
45
|
-
encodedInput = encodedInput.concat(this.numberToBytes1(this.args[0][2]));
|
|
46
|
-
// assetId
|
|
47
|
-
encodedInput = encodedInput.concat(this.numberToBytes2(this.args[0][3]));
|
|
48
|
-
// useDefaultMarket
|
|
49
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][4]))
|
|
50
|
-
if (!this.args[0][4]){
|
|
51
|
-
// market
|
|
52
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][5]));
|
|
53
|
-
}
|
|
54
|
-
return encodedInput;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
module.exports = AaveV3ATokenPaybackAction;
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAddr } = require('../../addresses.js');
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* AaveV3BorrowAction - Borrow a token from AaveV3
|
|
6
|
-
*/
|
|
7
|
-
class AaveV3BorrowAction extends ActionWithL2 {
|
|
8
|
-
/**
|
|
9
|
-
* @param useDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
10
|
-
* @param market {EthAddress} Address provider for specific market
|
|
11
|
-
* @param amount {string} Amount of tokens to be borrowed
|
|
12
|
-
* @param to {EthAddress} The address we are sending the borrowed tokens to
|
|
13
|
-
* @param rateMode {number} Type of borrow debt [Stable: 1, Variable: 2]
|
|
14
|
-
* @param assetId {number} The id of the token to be borrowed
|
|
15
|
-
* @param useOnBehalf {boolean} use on behalf or default to proxy
|
|
16
|
-
* @param [onBehalf] {EthAddress} On whose behalf we borrow the tokens, defaults to proxy
|
|
17
|
-
*/
|
|
18
|
-
constructor(useDefaultMarket, market, amount, to, rateMode, assetId, useOnBehalf , onBehalf = getAddr('Empty')) {
|
|
19
|
-
super('AaveV3Borrow', getAddr('AaveV3Borrow'),
|
|
20
|
-
[['uint256','address','uint8','uint16','bool','bool','address','address']],
|
|
21
|
-
[[amount, to, rateMode, assetId, useDefaultMarket, useOnBehalf, market, onBehalf]]
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
this.mappableArgs = [
|
|
25
|
-
this.args[0][0],
|
|
26
|
-
this.args[0][1],
|
|
27
|
-
this.args[0][6],
|
|
28
|
-
this.args[0][7],
|
|
29
|
-
];
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
encodeInputs() {
|
|
33
|
-
// executeActionDirectL2
|
|
34
|
-
let encodedInput = "0x2895f3aa";
|
|
35
|
-
// amount
|
|
36
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][0]));
|
|
37
|
-
// to
|
|
38
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][1]));
|
|
39
|
-
// rateMode
|
|
40
|
-
encodedInput = encodedInput.concat(this.numberToBytes1(this.args[0][2]));
|
|
41
|
-
// assetId
|
|
42
|
-
encodedInput = encodedInput.concat(this.numberToBytes2(this.args[0][3]));
|
|
43
|
-
// useDefaultMarket
|
|
44
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][4]))
|
|
45
|
-
// useOnBehalf
|
|
46
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][5]));
|
|
47
|
-
if (!this.args[0][4]) {
|
|
48
|
-
// market
|
|
49
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][6]));
|
|
50
|
-
}
|
|
51
|
-
if (this.args[0][5]) {
|
|
52
|
-
// onBehalf
|
|
53
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][7]));
|
|
54
|
-
}
|
|
55
|
-
return encodedInput;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
module.exports = AaveV3BorrowAction;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAddr } = require('../../addresses.js');
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* AaveV3ClaimRewardsAction
|
|
6
|
-
*/
|
|
7
|
-
class AaveV3ClaimRewardsAction extends ActionWithL2 {
|
|
8
|
-
/**
|
|
9
|
-
* @param assetsLength {number} Address provider for specific market
|
|
10
|
-
* @param amount {string} length of two arrays
|
|
11
|
-
* @param to {EthAddress}
|
|
12
|
-
* @param reward {EthAddress}
|
|
13
|
-
* @param assets {Array<EthAddress>}
|
|
14
|
-
*/
|
|
15
|
-
constructor(assetsLength, amount, to, reward, assets) {
|
|
16
|
-
super(
|
|
17
|
-
'AaveV3ClaimRewards',
|
|
18
|
-
getAddr('AaveV3ClaimRewards'),
|
|
19
|
-
[['uint8', 'uint256', 'address', 'address', 'address[]']],
|
|
20
|
-
[[assetsLength, amount, to, reward, assets]],
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
encodeInputs() {
|
|
24
|
-
// executeActionDirectL2
|
|
25
|
-
let encodedInput = "0x2895f3aa";
|
|
26
|
-
// assetsLength
|
|
27
|
-
encodedInput = encodedInput.concat(this.numberToBytes1(this.args[0][0]));
|
|
28
|
-
// amount
|
|
29
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][1]));
|
|
30
|
-
// to
|
|
31
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][2]));
|
|
32
|
-
// reward
|
|
33
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][3]));
|
|
34
|
-
// assets
|
|
35
|
-
const arrayLength = this.args[0][0];
|
|
36
|
-
for (let i = 0; i < arrayLength; i++){
|
|
37
|
-
// assets[i]
|
|
38
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][4][i]))
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
return encodedInput;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
module.exports = AaveV3ClaimRewardsAction;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAddr } = require('../../addresses.js');
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* AaveV3CollateralSwitchAction - Aave enable/disable token usage as collateral for AaveV3 position
|
|
6
|
-
*/
|
|
7
|
-
class AaveV3CollateralSwitchAction extends ActionWithL2 {
|
|
8
|
-
/**
|
|
9
|
-
* @param useDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
10
|
-
* @param market {EthAddress} Address provider for specific market
|
|
11
|
-
* @param arrayLength {number} length of two arrays
|
|
12
|
-
* @param assetIds {Array<number>}
|
|
13
|
-
* @param useAsCollateral {Array<boolean>}
|
|
14
|
-
*/
|
|
15
|
-
constructor(useDefaultMarket, market, arrayLength, assetIds, useAsCollateral) {
|
|
16
|
-
super(
|
|
17
|
-
'AaveV3CollateralSwitch',
|
|
18
|
-
getAddr('AaveV3CollateralSwitch'),
|
|
19
|
-
[['uint8','bool', 'uint16[]', 'bool[]','address']],
|
|
20
|
-
[[arrayLength, useDefaultMarket, assetIds, useAsCollateral, market]],
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
encodeInputs() {
|
|
24
|
-
// executeActionDirectL2
|
|
25
|
-
let encodedInput = "0x2895f3aa";
|
|
26
|
-
// arrayLength
|
|
27
|
-
encodedInput = encodedInput.concat(this.numberToBytes1(this.args[0][0]));
|
|
28
|
-
// useDefaultMarket
|
|
29
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][1]));
|
|
30
|
-
const arrayLength = this.args[0][0];
|
|
31
|
-
for (let i = 0; i < arrayLength; i++){
|
|
32
|
-
// assetIds[i]
|
|
33
|
-
encodedInput = encodedInput.concat(this.numberToBytes2(this.args[0][2][i]));
|
|
34
|
-
// useAsCollateral[i]
|
|
35
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][3][i]));
|
|
36
|
-
}
|
|
37
|
-
if (!this.args[0][1]){
|
|
38
|
-
// market
|
|
39
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][4]));
|
|
40
|
-
}
|
|
41
|
-
return encodedInput;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
module.exports = AaveV3CollateralSwitchAction;
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAssetInfoByAddress } = require("@defisaver/tokens");
|
|
3
|
-
const { getAddr } = require('../../addresses.js');
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* AaveV3PaybackAction - Payback debt on Aave using underlying token
|
|
7
|
-
*/
|
|
8
|
-
class AaveV3PaybackAction extends ActionWithL2 {
|
|
9
|
-
/**
|
|
10
|
-
* @param useOnDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
11
|
-
* @param market {EthAddress} Address provider for specific market
|
|
12
|
-
* @param amount {string} Amount of tokens to be payed back
|
|
13
|
-
* @param from {EthAddress} Tokens will be supplied from this address
|
|
14
|
-
* @param rateMode {number} Type of borrow debt [Stable: 1, Variable: 2]
|
|
15
|
-
* @param tokenAddr {EthAddress}
|
|
16
|
-
* @param assetId {number} The id of the underlying asset to be repaid
|
|
17
|
-
* @param useOnBehalf {boolean} use on behalf param or default to proxy
|
|
18
|
-
* @param onBehalf {EthAddress} For what user we are paying back the debt, defaults to proxy
|
|
19
|
-
*/
|
|
20
|
-
constructor(useOnDefaultMarket, market, amount, from, rateMode, tokenAddr, assetId, useOnBehalf , onBehalf = getAddr('Empty')) {
|
|
21
|
-
super('AaveV3Payback', getAddr('AaveV3Payback'),
|
|
22
|
-
[['uint256','address','uint8','uint16', 'bool', 'bool','address','address']],
|
|
23
|
-
[[amount, from, rateMode, assetId, useOnDefaultMarket, useOnBehalf, market, onBehalf]]
|
|
24
|
-
);
|
|
25
|
-
|
|
26
|
-
this.mappableArgs = [
|
|
27
|
-
this.args[0][0],
|
|
28
|
-
this.args[0][1],
|
|
29
|
-
this.args[0][6],
|
|
30
|
-
this.args[0][7],
|
|
31
|
-
];
|
|
32
|
-
this.tokenForApproval = tokenAddr;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
async getAssetsToApprove() {
|
|
36
|
-
const asset = getAssetInfoByAddress(this.tokenForApproval);
|
|
37
|
-
if (asset.symbol !== 'ETH') return [{asset: this.tokenForApproval, owner: this.args[3]}];
|
|
38
|
-
return [];
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
encodeInputs() {
|
|
42
|
-
// executeActionDirectL2
|
|
43
|
-
let encodedInput = "0x2895f3aa";
|
|
44
|
-
// amount
|
|
45
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][0]));
|
|
46
|
-
// from
|
|
47
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][1]));
|
|
48
|
-
// rateMode
|
|
49
|
-
encodedInput = encodedInput.concat(this.numberToBytes1(this.args[0][2]));
|
|
50
|
-
// assetId
|
|
51
|
-
encodedInput = encodedInput.concat(this.numberToBytes2(this.args[0][3]));
|
|
52
|
-
// useDefaultMarket
|
|
53
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][4]));
|
|
54
|
-
// useOnBehalf
|
|
55
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][5]));
|
|
56
|
-
if (!this.args[0][4]) {
|
|
57
|
-
// market
|
|
58
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][6]));
|
|
59
|
-
}
|
|
60
|
-
if (this.args[0][5]) {
|
|
61
|
-
// onBehalf
|
|
62
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][7]));
|
|
63
|
-
}
|
|
64
|
-
return encodedInput;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
module.exports = AaveV3PaybackAction;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAddr } = require('../../addresses.js');
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* AaveV3SetEModeAction - Set EMode for the proxy AaveV3 position
|
|
6
|
-
*/
|
|
7
|
-
class AaveV3SetEModeAction extends ActionWithL2 {
|
|
8
|
-
/**
|
|
9
|
-
* @param categoryId {EthAddress} ID of the category emode
|
|
10
|
-
* @param useOnDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
11
|
-
* @param market {EthAddress} Address provider for specific market
|
|
12
|
-
*/
|
|
13
|
-
constructor(categoryId, useOnDefaultMarket, market) {
|
|
14
|
-
super('AaveV3SetEMode', getAddr('AaveV3SetEMode'),
|
|
15
|
-
[['uint8', 'bool', 'address']],
|
|
16
|
-
[[categoryId, useOnDefaultMarket, market]]
|
|
17
|
-
);
|
|
18
|
-
|
|
19
|
-
this.mappableArgs = [
|
|
20
|
-
this.args[0][2],
|
|
21
|
-
];
|
|
22
|
-
}
|
|
23
|
-
encodeInputs() {
|
|
24
|
-
// executeActionDirectL2
|
|
25
|
-
let encodedInput = "0x2895f3aa";
|
|
26
|
-
// categoryId
|
|
27
|
-
encodedInput = encodedInput.concat(this.numberToBytes1(this.args[0][0]));
|
|
28
|
-
// useOnDefaultMarket
|
|
29
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][1]));
|
|
30
|
-
if (!this.args[0][1]){
|
|
31
|
-
// market
|
|
32
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][2]));
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return encodedInput;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
module.exports = AaveV3SetEModeAction;
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAssetInfoByAddress } = require("@defisaver/tokens");
|
|
3
|
-
const { getAddr } = require('../../addresses.js');
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* AaveV3SupplyAction - Supply token to an aave position on Aave V3
|
|
7
|
-
*/
|
|
8
|
-
class AaveV3SupplyAction extends ActionWithL2 {
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* @param amount {string} Amount of tokens to be deposited
|
|
12
|
-
* @param from {EthAddress} Tokens will be supplied from this address
|
|
13
|
-
* @param tokenAddress {EthAddress} Address of the token
|
|
14
|
-
* @param assetId {number} The id of the token to be deposited
|
|
15
|
-
* @param enableAsColl {boolean} If we need to enable asset as collateral
|
|
16
|
-
* @param useDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
17
|
-
* @param useOnBehalf {boolean} use on behalf param or default to proxy
|
|
18
|
-
* @param market {EthAddress} Address provider for specific market
|
|
19
|
-
* @param [onBehalf] {EthAddress} For what user we are supplying the tokens, defaults to proxy
|
|
20
|
-
*/
|
|
21
|
-
constructor(amount, from, tokenAddress, assetId, enableAsColl, useDefaultMarket, useOnBehalf ,market, onBehalf = getAddr('Empty')) {
|
|
22
|
-
super('AaveV3Supply', getAddr('AaveV3Supply'),
|
|
23
|
-
[['uint256','address','uint16','bool','bool','bool','address','address']],
|
|
24
|
-
[[amount, from, assetId, enableAsColl, useDefaultMarket, useOnBehalf, market, onBehalf]]
|
|
25
|
-
);
|
|
26
|
-
|
|
27
|
-
this.mappableArgs = [
|
|
28
|
-
this.args[0][0],
|
|
29
|
-
this.args[0][1],
|
|
30
|
-
this.args[0][6],
|
|
31
|
-
this.args[0][7],
|
|
32
|
-
];
|
|
33
|
-
this.tokenForApproval = tokenAddress;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
async getAssetsToApprove() {
|
|
37
|
-
const asset = getAssetInfoByAddress(this.tokenForApproval);
|
|
38
|
-
if (asset.symbol !== 'ETH') return [{asset: this.tokenForApproval, owner: this.args[0][2]}];
|
|
39
|
-
return [];
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
encodeInputs() {
|
|
43
|
-
// executeActionDirectL2
|
|
44
|
-
let encodedInput = "0x2895f3aa";
|
|
45
|
-
// amount
|
|
46
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][0]));
|
|
47
|
-
// from
|
|
48
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][1]));
|
|
49
|
-
// assetId
|
|
50
|
-
encodedInput = encodedInput.concat(this.numberToBytes2(this.args[0][2]));
|
|
51
|
-
// enableAsColl
|
|
52
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][3]));
|
|
53
|
-
// useDefaultMarket
|
|
54
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][4]));
|
|
55
|
-
// useOnBehalf
|
|
56
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][5]));
|
|
57
|
-
if (!this.args[0][4]) {
|
|
58
|
-
// market
|
|
59
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][6]));
|
|
60
|
-
}
|
|
61
|
-
if (this.args[0][5]) {
|
|
62
|
-
// onBehalf
|
|
63
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][7]));
|
|
64
|
-
}
|
|
65
|
-
return encodedInput;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
module.exports = AaveV3SupplyAction;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAddr } = require('../../addresses.js');
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* AaveV3SwapBorrowRateModeAction - Swaps proxy positions borrow rate mode between stable and variable.
|
|
6
|
-
*/
|
|
7
|
-
class AaveV3SwapBorrowRateModeAction extends ActionWithL2 {
|
|
8
|
-
/**
|
|
9
|
-
* @param asset {EthAddress} address of the underlying asset
|
|
10
|
-
* @param rateMode {string} rate mode the user is swapping from.[Stable: 1, Variable: 2]
|
|
11
|
-
* @param useDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
12
|
-
* @param market {EthAddress} Address provider for specific market
|
|
13
|
-
*
|
|
14
|
-
*/
|
|
15
|
-
constructor(asset, rateMode, useDefaultMarket, market) {
|
|
16
|
-
super('AaveV3SwapBorrowRateMode', getAddr('AaveV3SwapBorrowRateMode'),
|
|
17
|
-
[['address','uint256','bool','address']],
|
|
18
|
-
[[asset, rateMode, useDefaultMarket, market]]
|
|
19
|
-
);
|
|
20
|
-
|
|
21
|
-
this.mappableArgs = [
|
|
22
|
-
this.args[0][0],
|
|
23
|
-
this.args[0][3],
|
|
24
|
-
];
|
|
25
|
-
}
|
|
26
|
-
encodeInputs() {
|
|
27
|
-
// executeActionDirectL2
|
|
28
|
-
let encodedInput = "0x2895f3aa";
|
|
29
|
-
// asset
|
|
30
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][0]));
|
|
31
|
-
// rateMode
|
|
32
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][1]));
|
|
33
|
-
// useOnDefaultMarket
|
|
34
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][2]))
|
|
35
|
-
if (!this.args[0][2]){
|
|
36
|
-
// market
|
|
37
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][3]));
|
|
38
|
-
}
|
|
39
|
-
return encodedInput;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
module.exports = AaveV3SwapBorrowRateModeAction;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
const ActionWithL2 = require("../../ActionWithL2");
|
|
2
|
-
const { getAddr } = require('../../addresses.js');
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* AaveV3WithdrawAction - Withdraw a previously supplied token from a position in AaveV3
|
|
6
|
-
*/
|
|
7
|
-
class AaveV3WithdrawAction extends ActionWithL2 {
|
|
8
|
-
/**
|
|
9
|
-
* @param assetId {number} The id of the token to be deposited
|
|
10
|
-
* @param useDefaultMarket {boolean} If this is true it defaults to the hardcoded market in contract
|
|
11
|
-
* @param amount {string} Amount of tokens to be withdrawn -> send type(uint).max for whole amount
|
|
12
|
-
* @param to {EthAddress} Where the withdrawn tokens will be sent
|
|
13
|
-
* @param market {EthAddress} Address provider for specific market
|
|
14
|
-
*/
|
|
15
|
-
constructor(assetId, useDefaultMarket, amount, to, market) {
|
|
16
|
-
super('AaveV3Withdraw', getAddr('AaveV3Withdraw'),
|
|
17
|
-
[['uint16','bool','uint256','address','address']],
|
|
18
|
-
[[assetId, useDefaultMarket, amount, to, market]]
|
|
19
|
-
);
|
|
20
|
-
|
|
21
|
-
this.mappableArgs = [
|
|
22
|
-
this.args[0][2],
|
|
23
|
-
this.args[0][3],
|
|
24
|
-
this.args[0][4],
|
|
25
|
-
];
|
|
26
|
-
}
|
|
27
|
-
encodeInputs() {
|
|
28
|
-
// executeActionDirectL2
|
|
29
|
-
let encodedInput = "0x2895f3aa";
|
|
30
|
-
// assetId
|
|
31
|
-
encodedInput = encodedInput.concat(this.numberToBytes2(this.args[0][0]));
|
|
32
|
-
// useOnDefaultMarket
|
|
33
|
-
encodedInput = encodedInput.concat(this.boolToBytes1(this.args[0][1]))
|
|
34
|
-
// amount
|
|
35
|
-
encodedInput = encodedInput.concat(this.numberToBytes32(this.args[0][2]));
|
|
36
|
-
// from
|
|
37
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][3]));
|
|
38
|
-
if (!this.args[0][1]){
|
|
39
|
-
// market
|
|
40
|
-
encodedInput = encodedInput.concat(this.addressToBytes20(this.args[0][4]));
|
|
41
|
-
}
|
|
42
|
-
return encodedInput;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
module.exports = AaveV3WithdrawAction;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
const AaveV3SupplyAction = require('./AaveV3SupplyAction');
|
|
2
|
-
const AaveV3BorrowAction = require('./AaveV3BorrowAction');
|
|
3
|
-
const AaveV3PaybackAction = require('./AaveV3PaybackAction');
|
|
4
|
-
const AaveV3WithdrawAction = require('./AaveV3WithdrawAction');
|
|
5
|
-
const AaveV3SetEModeAction = require('./AaveV3SetEModeAction');
|
|
6
|
-
const AaveV3ATokenPaybackAction = require('./AaveV3ATokenPaybackAction');
|
|
7
|
-
const AaveV3CollateralSwitchAction = require('./AaveV3CollateralSwitchAction');
|
|
8
|
-
const AaveV3ClaimRewardsAction = require('./AaveV3ClaimRewardsAction');
|
|
9
|
-
const AaveV3SwapBorrowRateModeAction = require('./AaveV3SwapBorrowRateModeAction');
|
|
10
|
-
|
|
11
|
-
module.exports = {
|
|
12
|
-
AaveV3SupplyAction,
|
|
13
|
-
AaveV3BorrowAction,
|
|
14
|
-
AaveV3PaybackAction,
|
|
15
|
-
AaveV3WithdrawAction,
|
|
16
|
-
AaveV3SetEModeAction,
|
|
17
|
-
AaveV3ATokenPaybackAction,
|
|
18
|
-
AaveV3CollateralSwitchAction,
|
|
19
|
-
AaveV3ClaimRewardsAction,
|
|
20
|
-
AaveV3SwapBorrowRateModeAction,
|
|
21
|
-
}
|