Created
April 10, 2022 02:30
-
-
Save coudron/e5c37c2ffec45d42db73fa35471ed60a to your computer and use it in GitHub Desktop.
Example of new Anchor method builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
transaction.add( | |
await program.methods | |
.createNewAmazingAccount( | |
new BN(250), // some args to pass in | |
) | |
.accounts({ | |
someAccount: someAccountPublicKey, | |
someAccount: someAccountPublicKey, | |
}) | |
.instruction() // or .rpc() or .simulate() etc. | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment