├── .eslintrc.js ├── .gitignore ├── README.md ├── client └── index.ts ├── jest.config.js ├── package.json ├── programs └── program │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ └── lib.rs ├── scripts ├── build.sh ├── clean.sh ├── generate-program.sh └── test.sh ├── testing ├── setup.ts ├── testHelper.test.ts └── testHelper.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | target/ 4 | yarn-error.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/README.md -------------------------------------------------------------------------------- /client/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/package.json -------------------------------------------------------------------------------- /programs/program/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/programs/program/Cargo.lock -------------------------------------------------------------------------------- /programs/program/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/programs/program/Cargo.toml -------------------------------------------------------------------------------- /programs/program/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/programs/program/Xargo.toml -------------------------------------------------------------------------------- /programs/program/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/programs/program/src/lib.rs -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/generate-program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/scripts/generate-program.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /testing/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/testing/setup.ts -------------------------------------------------------------------------------- /testing/testHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/testing/testHelper.test.ts -------------------------------------------------------------------------------- /testing/testHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/testing/testHelper.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithraiclabs/solana-program-template/HEAD/yarn.lock --------------------------------------------------------------------------------