├── .github └── workflows │ ├── lint_and_test.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.ts ├── package.json ├── src └── index.ts ├── tests ├── anchor-example │ ├── .gitignore │ ├── Anchor.toml │ ├── puppet.json │ ├── puppet.ts │ ├── puppet_master.json │ ├── puppet_master.ts │ └── target │ │ └── deploy │ │ ├── puppet.so │ │ └── puppet_master.so ├── main.test.ts └── tsconfig.json ├── tsconfig.json └── yarn.lock /.github/workflows/lint_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/.github/workflows/lint_and_test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/anchor-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/.gitignore -------------------------------------------------------------------------------- /tests/anchor-example/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/Anchor.toml -------------------------------------------------------------------------------- /tests/anchor-example/puppet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/puppet.json -------------------------------------------------------------------------------- /tests/anchor-example/puppet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/puppet.ts -------------------------------------------------------------------------------- /tests/anchor-example/puppet_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/puppet_master.json -------------------------------------------------------------------------------- /tests/anchor-example/puppet_master.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/puppet_master.ts -------------------------------------------------------------------------------- /tests/anchor-example/target/deploy/puppet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/target/deploy/puppet.so -------------------------------------------------------------------------------- /tests/anchor-example/target/deploy/puppet_master.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/anchor-example/target/deploy/puppet_master.so -------------------------------------------------------------------------------- /tests/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/main.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/anchor-bankrun/HEAD/yarn.lock --------------------------------------------------------------------------------