-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Token 2022 support #45
Conversation
# Conflicts: # programs/tokenized_vault/src/utils/strategy.rs # tests/integration/vault.ts
@@ -11,6 +11,7 @@ pub fn deposit<'a>( | |||
strategy: AccountInfo<'a>, | |||
vault: AccountInfo<'a>, | |||
underlying_token_account: AccountInfo<'a>, | |||
underlying_mint: AccountInfo<'a>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have to update call in /tokenized_vault/src/instructions/direct_deposit.rs
, function handle_direct_deposit
.
strategy_utils::deposit( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
token::transfer( |
transfer as well also needs additional mint arg
No description provided.