Skip to content

Instantly share code, notes, and snippets.

@coudron
Created April 10, 2022 02:30
Show Gist options
  • Save coudron/e5c37c2ffec45d42db73fa35471ed60a to your computer and use it in GitHub Desktop.
Save coudron/e5c37c2ffec45d42db73fa35471ed60a to your computer and use it in GitHub Desktop.
Example of new Anchor method builder
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