Go to file
armaniferrante 9ba17108ab
Init repo
2021-05-04 20:44:02 -07:00
migrations Init repo 2021-05-04 20:44:02 -07:00
programs/create-accounts Init repo 2021-05-04 20:44:02 -07:00
tests Init repo 2021-05-04 20:44:02 -07:00
.gitignore Init repo 2021-05-04 20:44:02 -07:00
.travis.yml Init repo 2021-05-04 20:44:02 -07:00
Anchor.toml Init repo 2021-05-04 20:44:02 -07:00
Cargo.lock Init repo 2021-05-04 20:44:02 -07:00
Cargo.toml Init repo 2021-05-04 20:44:02 -07:00
README.md Init repo 2021-05-04 20:44:02 -07:00

README.md

Create Accounts

A program to batch calls to the system program's create account instruction. This should only be used when trying to optimize transaction sizes in the event where a single byte, quite literally, counts.

Deployments

  • Mainnet: nEgTksbfS91Y3rNUViY8L9oFsgZ6HWqG25ZFhQ5CSDw
  • Devnet: nEgTksbfS91Y3rNUViY8L9oFsgZ6HWqG25ZFhQ5CSDw

Upgrade Authorities

The deployed program is not upgradeable.

Developing

Anchor is used for developoment, and it's recommended workflow is used here. To get started, see the guide.

Build

anchor build --verifiable

The --verifiable flag should be used before deploying so that your build artifacts can be deterministically generated with docker.

Test

anchor test

Verify

To verify the program deployed on Solana matches your local source code, install docker, cd programs/multisig, and run

anchor verify <program-id | write-buffer>

A list of build artifacts can be found under releases.