Skip to content
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: Add compatibility for publicKeys #5895

Closed
wants to merge 2 commits into from

Commits on Nov 27, 2023

  1. feat: Add compatibility for publicKeys

    Ran into an issue where I was passing web3.publicKeys to createMintToInstruction but received an anonymous.toString() is undefined error. 
    
    The error was that the docs allowed a (signer | publicKey) [ ] but the function only works with a signer[ ], my fix was to move my publicKeys into an object. {publicKey: myKey}
    
    I believe the changes to the logic in this file will resolve the issue for anyone encountering it in the future
    Gitmazter authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    02b4a55 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Update token/js/src/instructions/internal.ts

    Co-authored-by: Joe C <[email protected]>
    Gitmazter and buffalojoec authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    ed31181 View commit details
    Browse the repository at this point in the history