-
Notifications
You must be signed in to change notification settings - Fork 8
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
feat: Create permissioned vault with authority #11
base: main
Are you sure you want to change the base?
Conversation
); | ||
const program = new Program(IDL, alphaVaultProgramId, provider); | ||
|
||
const createTx = await program.methods |
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.
Why don't use createCustomizableProrataVault
from the sdk?
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.
The SDK doesn't allow me to input the alpha_vault_program_id
in localnet, ref https://github.com/MeteoraAg/alpha-vault-sdk/blob/main/ts-client/src/alpha-vault/constant.ts#L3
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.
Hmm, maybe create PR to fix the sdk?
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.
updated the alpha-vault-sdk MeteoraAg/alpha-vault-sdk#7
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.
Hmm, it's still the same.
); | ||
const program = new Program(IDL, alphaVaultProgramId, provider); | ||
|
||
const createTx = await program.methods |
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.
Why don't use createCustomizableFcfsVault
from the sdk?
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.
The SDK doesn't allow me to input the alpha_vault_program_id
in localnet, ref https://github.com/MeteoraAg/alpha-vault-sdk/blob/main/ts-client/src/alpha-vault/constant.ts#L3
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.
updated the alpha-vault-sdk MeteoraAg/alpha-vault-sdk#7
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.
^Ditto
No description provided.