InstPullTokens
Description
Action for withdrawing tokens from Instadapp DSA
Action ID
0xc3d495a2
SDK Action
const instPullTokensAction = new dfs.actions.insta.InstPullTokensAction(
dsaAddress,
tokens,
amounts,
to
);Action Type
STANDARD_ACTION
Input Parameters
/// @param dsaAddress address of the DSA
/// @param tokens array of addresses of the tokens to be withdrawn
/// @param amounts array of amounts of the tokens to be withdrawn
/// @param to address of the recipient
struct Params {
address dsaAddress;
address[] tokens;
uint256[] amounts;
address to;
}Return Value
Events and Logs
Last updated
Was this helpful?