├── .github └── workflows │ └── test-examples.yml ├── .gitignore ├── .gitmodules ├── .gitpod.Dockerfile ├── .gitpod.yml ├── LICENSE ├── README.md ├── anchor-counter ├── .gitignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── app │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── craco.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── magicblock_white.png │ │ │ └── manifest.json │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ │ ├── Active.scss │ │ │ │ ├── Active.tsx │ │ │ │ ├── Alert.tsx │ │ │ │ ├── Button.tsx │ │ │ │ ├── Square.scss │ │ │ │ ├── Square.tsx │ │ │ │ └── Wallet.tsx │ │ │ ├── index.css │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── tsconfig.json │ └── yarn.lock ├── package.json ├── programs │ └── anchor-counter │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── target │ ├── deploy │ │ └── anchor_counter-keypair.json │ └── idl │ │ └── anchor_counter.json ├── tests │ ├── advanced-magic.ts │ └── anchor-counter.ts ├── tsconfig.json └── yarn.lock ├── anchor-minter ├── .prettierignore ├── .vscode │ └── settings.json ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── package.json ├── programs │ └── token-minter │ │ ├── Cargo.toml │ │ └── src │ │ ├── instructions │ │ ├── create.rs │ │ ├── mint.rs │ │ └── mod.rs │ │ └── lib.rs ├── sh │ ├── build.sh │ ├── deploy.sh │ ├── luzid-devnet.toml │ ├── luzid-ephem.toml │ └── test.sh ├── target │ ├── deploy │ │ ├── anchor_counter-keypair.json │ │ ├── anchor_counter.so │ │ ├── token_minter-keypair.json │ │ └── token_minter.so │ └── idl │ │ └── token_minter.json ├── tests │ ├── fixtures │ │ └── dlp.so │ └── test-minter.ts ├── tsconfig.json └── yarn.lock ├── anchor-rock-paper-scissor ├── .gitignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── package.json ├── programs │ └── anchor-rock-paper-scissor │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── tests │ └── anchor-rock-paper-scissor.ts ├── tsconfig.json └── yarn.lock ├── bolt-counter ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── crates │ └── types │ │ └── Cargo.toml ├── package-lock.json ├── package.json ├── programs-ecs │ ├── components │ │ └── counter │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ └── systems │ │ └── increase │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── target │ └── deploy │ │ ├── counter-keypair.json │ │ └── increase-keypair.json ├── tests │ ├── bolt-counter.ts │ └── fixtures │ │ ├── dlp.so │ │ ├── registry.json │ │ └── world.so ├── tsconfig.json └── yarn.lock ├── dummy-token-transfer ├── .prettierignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── package-lock.json ├── package.json ├── programs │ └── dummy-transfer │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── tests │ └── dummy-transfer.ts ├── tsconfig.json └── yarn.lock ├── ephemeral-validator.log ├── fullstack-test.sh ├── magic-actions ├── .gitignore ├── .prettierignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── migrations │ └── deploy.ts ├── package.json ├── programs │ └── magic-actions │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── tests │ └── magic-actions.ts ├── tsconfig.json └── yarn.lock ├── oncurve-delegation ├── .gitignore ├── README.md ├── package.json ├── tests │ ├── kit │ │ ├── initializeKeypair.ts │ │ └── oncurve-delegation.test.ts │ └── web3js │ │ ├── initializeKeypair.ts │ │ └── oncurve-delegation.test.ts ├── vitest.config.ts └── yarn.lock ├── roll-dice ├── .gitignore ├── .prettierignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── app │ ├── .eslintrc.json │ ├── .gitignore │ ├── app │ │ ├── delegated │ │ │ └── page.tsx │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components.json │ ├── components │ │ ├── dice.tsx │ │ ├── solana-address.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ ├── use-mobile.tsx │ │ │ └── use-toast.ts │ ├── hooks │ │ ├── use-mobile.tsx │ │ └── use-toast.ts │ ├── lib │ │ ├── config.ts │ │ ├── idl │ │ │ └── random_dice_delegated.json │ │ ├── solana-utils.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ │ ├── placeholder-logo.png │ │ ├── placeholder-logo.svg │ │ ├── placeholder-user.jpg │ │ ├── placeholder.jpg │ │ └── placeholder.svg │ ├── styles │ │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── yarn.lock ├── migrations │ └── deploy.ts ├── package.json ├── programs │ ├── roll-dice-delegated │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── roll-dice │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── target │ └── deploy │ │ └── roll_dice-keypair.json ├── tests │ ├── roll-dice-delegated.ts │ └── roll-dice.ts ├── tsconfig.json └── yarn.lock ├── rust-counter ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── archive │ ├── advanced-magic.ts │ ├── initializeKeypair.ts │ ├── rust-counter.ts │ └── schema.ts ├── env.example ├── package.json ├── src │ ├── entrypoint.rs │ ├── instruction.rs │ ├── lib.rs │ ├── processor.rs │ └── state.rs ├── tests │ ├── kit │ │ ├── advanced-magic.test.ts │ │ ├── initializeKeypair.ts │ │ ├── rust-counter.test.ts │ │ └── schema.ts │ └── web3js │ │ ├── advanced-magic.test.ts │ │ ├── initializeKeypair.ts │ │ ├── rust-counter.test.ts │ │ └── schema.ts ├── tsconfig.json ├── vitest.config.ts └── yarn.lock ├── session-keys ├── .gitignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── app │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── craco.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── magicblock_white.png │ │ │ └── manifest.json │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── components │ │ │ │ ├── Active.scss │ │ │ │ ├── Active.tsx │ │ │ │ ├── Alert.tsx │ │ │ │ ├── Button.tsx │ │ │ │ ├── Square.scss │ │ │ │ ├── Square.tsx │ │ │ │ └── Wallet.tsx │ │ │ ├── index.css │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── tsconfig.json │ └── yarn.lock ├── package.json ├── programs │ └── anchor-counter-session │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── tests │ ├── advanced-magic.ts │ └── anchor-counter-session.ts ├── tsconfig.json ├── utils │ └── initializeKeypair.ts └── yarn.lock ├── test-locally.sh └── update-sdk-versions.sh /.github/workflows/test-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/.github/workflows/test-examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/README.md -------------------------------------------------------------------------------- /anchor-counter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/.gitignore -------------------------------------------------------------------------------- /anchor-counter/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/Anchor.toml -------------------------------------------------------------------------------- /anchor-counter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/Cargo.lock -------------------------------------------------------------------------------- /anchor-counter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/Cargo.toml -------------------------------------------------------------------------------- /anchor-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/README.md -------------------------------------------------------------------------------- /anchor-counter/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/LICENSE -------------------------------------------------------------------------------- /anchor-counter/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/README.md -------------------------------------------------------------------------------- /anchor-counter/app/app/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/LICENSE.md -------------------------------------------------------------------------------- /anchor-counter/app/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/README.md -------------------------------------------------------------------------------- /anchor-counter/app/app/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/craco.config.js -------------------------------------------------------------------------------- /anchor-counter/app/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/package-lock.json -------------------------------------------------------------------------------- /anchor-counter/app/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/package.json -------------------------------------------------------------------------------- /anchor-counter/app/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/public/favicon.ico -------------------------------------------------------------------------------- /anchor-counter/app/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/public/index.html -------------------------------------------------------------------------------- /anchor-counter/app/app/public/magicblock_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/public/magicblock_white.png -------------------------------------------------------------------------------- /anchor-counter/app/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/public/manifest.json -------------------------------------------------------------------------------- /anchor-counter/app/app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/App.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Active.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Active.scss -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Active.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Active.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Alert.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Button.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Square.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Square.scss -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Square.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/src/components/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/components/Wallet.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/index.css -------------------------------------------------------------------------------- /anchor-counter/app/app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/src/index.tsx -------------------------------------------------------------------------------- /anchor-counter/app/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/tsconfig.json -------------------------------------------------------------------------------- /anchor-counter/app/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/app/yarn.lock -------------------------------------------------------------------------------- /anchor-counter/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/tsconfig.json -------------------------------------------------------------------------------- /anchor-counter/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/app/yarn.lock -------------------------------------------------------------------------------- /anchor-counter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/package.json -------------------------------------------------------------------------------- /anchor-counter/programs/anchor-counter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/programs/anchor-counter/Cargo.toml -------------------------------------------------------------------------------- /anchor-counter/programs/anchor-counter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/programs/anchor-counter/src/lib.rs -------------------------------------------------------------------------------- /anchor-counter/target/deploy/anchor_counter-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/target/deploy/anchor_counter-keypair.json -------------------------------------------------------------------------------- /anchor-counter/target/idl/anchor_counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/target/idl/anchor_counter.json -------------------------------------------------------------------------------- /anchor-counter/tests/advanced-magic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/tests/advanced-magic.ts -------------------------------------------------------------------------------- /anchor-counter/tests/anchor-counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/tests/anchor-counter.ts -------------------------------------------------------------------------------- /anchor-counter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/tsconfig.json -------------------------------------------------------------------------------- /anchor-counter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-counter/yarn.lock -------------------------------------------------------------------------------- /anchor-minter/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/.prettierignore -------------------------------------------------------------------------------- /anchor-minter/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/.vscode/settings.json -------------------------------------------------------------------------------- /anchor-minter/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/Anchor.toml -------------------------------------------------------------------------------- /anchor-minter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/Cargo.lock -------------------------------------------------------------------------------- /anchor-minter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/Cargo.toml -------------------------------------------------------------------------------- /anchor-minter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/README.md -------------------------------------------------------------------------------- /anchor-minter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/package.json -------------------------------------------------------------------------------- /anchor-minter/programs/token-minter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/programs/token-minter/Cargo.toml -------------------------------------------------------------------------------- /anchor-minter/programs/token-minter/src/instructions/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/programs/token-minter/src/instructions/create.rs -------------------------------------------------------------------------------- /anchor-minter/programs/token-minter/src/instructions/mint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/programs/token-minter/src/instructions/mint.rs -------------------------------------------------------------------------------- /anchor-minter/programs/token-minter/src/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/programs/token-minter/src/instructions/mod.rs -------------------------------------------------------------------------------- /anchor-minter/programs/token-minter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/programs/token-minter/src/lib.rs -------------------------------------------------------------------------------- /anchor-minter/sh/build.sh: -------------------------------------------------------------------------------- 1 | anchor build 2 | -------------------------------------------------------------------------------- /anchor-minter/sh/deploy.sh: -------------------------------------------------------------------------------- 1 | anchor deploy --provider.cluster http://localhost:7799 2 | -------------------------------------------------------------------------------- /anchor-minter/sh/luzid-devnet.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/sh/luzid-devnet.toml -------------------------------------------------------------------------------- /anchor-minter/sh/luzid-ephem.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/sh/luzid-ephem.toml -------------------------------------------------------------------------------- /anchor-minter/sh/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/sh/test.sh -------------------------------------------------------------------------------- /anchor-minter/target/deploy/anchor_counter-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/target/deploy/anchor_counter-keypair.json -------------------------------------------------------------------------------- /anchor-minter/target/deploy/anchor_counter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/target/deploy/anchor_counter.so -------------------------------------------------------------------------------- /anchor-minter/target/deploy/token_minter-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/target/deploy/token_minter-keypair.json -------------------------------------------------------------------------------- /anchor-minter/target/deploy/token_minter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/target/deploy/token_minter.so -------------------------------------------------------------------------------- /anchor-minter/target/idl/token_minter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/target/idl/token_minter.json -------------------------------------------------------------------------------- /anchor-minter/tests/fixtures/dlp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/tests/fixtures/dlp.so -------------------------------------------------------------------------------- /anchor-minter/tests/test-minter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/tests/test-minter.ts -------------------------------------------------------------------------------- /anchor-minter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/tsconfig.json -------------------------------------------------------------------------------- /anchor-minter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-minter/yarn.lock -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/.gitignore -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/Anchor.toml -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/Cargo.lock -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/Cargo.toml -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/package.json -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/programs/anchor-rock-paper-scissor/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/programs/anchor-rock-paper-scissor/Cargo.toml -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/programs/anchor-rock-paper-scissor/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/programs/anchor-rock-paper-scissor/src/lib.rs -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/tests/anchor-rock-paper-scissor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/tests/anchor-rock-paper-scissor.ts -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/tsconfig.json -------------------------------------------------------------------------------- /anchor-rock-paper-scissor/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/anchor-rock-paper-scissor/yarn.lock -------------------------------------------------------------------------------- /bolt-counter/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/Anchor.toml -------------------------------------------------------------------------------- /bolt-counter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/Cargo.lock -------------------------------------------------------------------------------- /bolt-counter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/Cargo.toml -------------------------------------------------------------------------------- /bolt-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/README.md -------------------------------------------------------------------------------- /bolt-counter/crates/types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/crates/types/Cargo.toml -------------------------------------------------------------------------------- /bolt-counter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/package-lock.json -------------------------------------------------------------------------------- /bolt-counter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/package.json -------------------------------------------------------------------------------- /bolt-counter/programs-ecs/components/counter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/programs-ecs/components/counter/Cargo.toml -------------------------------------------------------------------------------- /bolt-counter/programs-ecs/components/counter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/programs-ecs/components/counter/src/lib.rs -------------------------------------------------------------------------------- /bolt-counter/programs-ecs/systems/increase/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/programs-ecs/systems/increase/Cargo.toml -------------------------------------------------------------------------------- /bolt-counter/programs-ecs/systems/increase/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/programs-ecs/systems/increase/src/lib.rs -------------------------------------------------------------------------------- /bolt-counter/target/deploy/counter-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/target/deploy/counter-keypair.json -------------------------------------------------------------------------------- /bolt-counter/target/deploy/increase-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/target/deploy/increase-keypair.json -------------------------------------------------------------------------------- /bolt-counter/tests/bolt-counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/tests/bolt-counter.ts -------------------------------------------------------------------------------- /bolt-counter/tests/fixtures/dlp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/tests/fixtures/dlp.so -------------------------------------------------------------------------------- /bolt-counter/tests/fixtures/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/tests/fixtures/registry.json -------------------------------------------------------------------------------- /bolt-counter/tests/fixtures/world.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/tests/fixtures/world.so -------------------------------------------------------------------------------- /bolt-counter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/tsconfig.json -------------------------------------------------------------------------------- /bolt-counter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/bolt-counter/yarn.lock -------------------------------------------------------------------------------- /dummy-token-transfer/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/.prettierignore -------------------------------------------------------------------------------- /dummy-token-transfer/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/Anchor.toml -------------------------------------------------------------------------------- /dummy-token-transfer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/Cargo.lock -------------------------------------------------------------------------------- /dummy-token-transfer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/Cargo.toml -------------------------------------------------------------------------------- /dummy-token-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/README.md -------------------------------------------------------------------------------- /dummy-token-transfer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/package-lock.json -------------------------------------------------------------------------------- /dummy-token-transfer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/package.json -------------------------------------------------------------------------------- /dummy-token-transfer/programs/dummy-transfer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/programs/dummy-transfer/Cargo.toml -------------------------------------------------------------------------------- /dummy-token-transfer/programs/dummy-transfer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/programs/dummy-transfer/src/lib.rs -------------------------------------------------------------------------------- /dummy-token-transfer/tests/dummy-transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/tests/dummy-transfer.ts -------------------------------------------------------------------------------- /dummy-token-transfer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/tsconfig.json -------------------------------------------------------------------------------- /dummy-token-transfer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/dummy-token-transfer/yarn.lock -------------------------------------------------------------------------------- /ephemeral-validator.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/ephemeral-validator.log -------------------------------------------------------------------------------- /fullstack-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/fullstack-test.sh -------------------------------------------------------------------------------- /magic-actions/.gitignore: -------------------------------------------------------------------------------- 1 | .anchor 2 | .DS_Store 3 | target 4 | **/*.rs.bk 5 | node_modules 6 | test-ledger 7 | .yarn 8 | -------------------------------------------------------------------------------- /magic-actions/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/.prettierignore -------------------------------------------------------------------------------- /magic-actions/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/Anchor.toml -------------------------------------------------------------------------------- /magic-actions/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/Cargo.lock -------------------------------------------------------------------------------- /magic-actions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/Cargo.toml -------------------------------------------------------------------------------- /magic-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/README.md -------------------------------------------------------------------------------- /magic-actions/migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/migrations/deploy.ts -------------------------------------------------------------------------------- /magic-actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/package.json -------------------------------------------------------------------------------- /magic-actions/programs/magic-actions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/programs/magic-actions/Cargo.toml -------------------------------------------------------------------------------- /magic-actions/programs/magic-actions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/programs/magic-actions/src/lib.rs -------------------------------------------------------------------------------- /magic-actions/tests/magic-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/tests/magic-actions.ts -------------------------------------------------------------------------------- /magic-actions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/tsconfig.json -------------------------------------------------------------------------------- /magic-actions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/magic-actions/yarn.lock -------------------------------------------------------------------------------- /oncurve-delegation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/.gitignore -------------------------------------------------------------------------------- /oncurve-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/README.md -------------------------------------------------------------------------------- /oncurve-delegation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/package.json -------------------------------------------------------------------------------- /oncurve-delegation/tests/kit/initializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/tests/kit/initializeKeypair.ts -------------------------------------------------------------------------------- /oncurve-delegation/tests/kit/oncurve-delegation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/tests/kit/oncurve-delegation.test.ts -------------------------------------------------------------------------------- /oncurve-delegation/tests/web3js/initializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/tests/web3js/initializeKeypair.ts -------------------------------------------------------------------------------- /oncurve-delegation/tests/web3js/oncurve-delegation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/tests/web3js/oncurve-delegation.test.ts -------------------------------------------------------------------------------- /oncurve-delegation/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/vitest.config.ts -------------------------------------------------------------------------------- /oncurve-delegation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/oncurve-delegation/yarn.lock -------------------------------------------------------------------------------- /roll-dice/.gitignore: -------------------------------------------------------------------------------- 1 | .anchor 2 | .DS_Store 3 | target 4 | **/*.rs.bk 5 | node_modules 6 | test-ledger 7 | .yarn 8 | -------------------------------------------------------------------------------- /roll-dice/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/.prettierignore -------------------------------------------------------------------------------- /roll-dice/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/Anchor.toml -------------------------------------------------------------------------------- /roll-dice/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/Cargo.lock -------------------------------------------------------------------------------- /roll-dice/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/Cargo.toml -------------------------------------------------------------------------------- /roll-dice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/README.md -------------------------------------------------------------------------------- /roll-dice/app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next" 3 | } 4 | -------------------------------------------------------------------------------- /roll-dice/app/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /roll-dice/app/app/delegated/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/app/delegated/page.tsx -------------------------------------------------------------------------------- /roll-dice/app/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/app/globals.css -------------------------------------------------------------------------------- /roll-dice/app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/app/layout.tsx -------------------------------------------------------------------------------- /roll-dice/app/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/app/page.tsx -------------------------------------------------------------------------------- /roll-dice/app/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components.json -------------------------------------------------------------------------------- /roll-dice/app/components/dice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/dice.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/solana-address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/solana-address.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/theme-provider.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/accordion.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/alert.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/avatar.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/badge.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/button.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/calendar.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/card.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/carousel.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/chart.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/command.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/dialog.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/drawer.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/form.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/input.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/label.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/menubar.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/pagination.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/popover.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/progress.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/resizable.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/select.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/separator.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/sheet.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/slider.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/sonner.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/switch.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/table.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/tabs.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/textarea.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/toast.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/toaster.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/toggle.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/use-mobile.tsx -------------------------------------------------------------------------------- /roll-dice/app/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/components/ui/use-toast.ts -------------------------------------------------------------------------------- /roll-dice/app/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /roll-dice/app/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/hooks/use-toast.ts -------------------------------------------------------------------------------- /roll-dice/app/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/lib/config.ts -------------------------------------------------------------------------------- /roll-dice/app/lib/idl/random_dice_delegated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/lib/idl/random_dice_delegated.json -------------------------------------------------------------------------------- /roll-dice/app/lib/solana-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/lib/solana-utils.ts -------------------------------------------------------------------------------- /roll-dice/app/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/lib/types.ts -------------------------------------------------------------------------------- /roll-dice/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/lib/utils.ts -------------------------------------------------------------------------------- /roll-dice/app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/next-env.d.ts -------------------------------------------------------------------------------- /roll-dice/app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/next.config.mjs -------------------------------------------------------------------------------- /roll-dice/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/package-lock.json -------------------------------------------------------------------------------- /roll-dice/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/package.json -------------------------------------------------------------------------------- /roll-dice/app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/pnpm-lock.yaml -------------------------------------------------------------------------------- /roll-dice/app/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/postcss.config.mjs -------------------------------------------------------------------------------- /roll-dice/app/public/placeholder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/public/placeholder-logo.png -------------------------------------------------------------------------------- /roll-dice/app/public/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/public/placeholder-logo.svg -------------------------------------------------------------------------------- /roll-dice/app/public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/public/placeholder-user.jpg -------------------------------------------------------------------------------- /roll-dice/app/public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/public/placeholder.jpg -------------------------------------------------------------------------------- /roll-dice/app/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/public/placeholder.svg -------------------------------------------------------------------------------- /roll-dice/app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/styles/globals.css -------------------------------------------------------------------------------- /roll-dice/app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/tailwind.config.ts -------------------------------------------------------------------------------- /roll-dice/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/tsconfig.json -------------------------------------------------------------------------------- /roll-dice/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/app/yarn.lock -------------------------------------------------------------------------------- /roll-dice/migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/migrations/deploy.ts -------------------------------------------------------------------------------- /roll-dice/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/package.json -------------------------------------------------------------------------------- /roll-dice/programs/roll-dice-delegated/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/programs/roll-dice-delegated/Cargo.toml -------------------------------------------------------------------------------- /roll-dice/programs/roll-dice-delegated/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/programs/roll-dice-delegated/src/lib.rs -------------------------------------------------------------------------------- /roll-dice/programs/roll-dice/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/programs/roll-dice/Cargo.toml -------------------------------------------------------------------------------- /roll-dice/programs/roll-dice/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/programs/roll-dice/src/lib.rs -------------------------------------------------------------------------------- /roll-dice/target/deploy/roll_dice-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/target/deploy/roll_dice-keypair.json -------------------------------------------------------------------------------- /roll-dice/tests/roll-dice-delegated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/tests/roll-dice-delegated.ts -------------------------------------------------------------------------------- /roll-dice/tests/roll-dice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/tests/roll-dice.ts -------------------------------------------------------------------------------- /roll-dice/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/tsconfig.json -------------------------------------------------------------------------------- /roll-dice/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/roll-dice/yarn.lock -------------------------------------------------------------------------------- /rust-counter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/.gitignore -------------------------------------------------------------------------------- /rust-counter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/Cargo.lock -------------------------------------------------------------------------------- /rust-counter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/Cargo.toml -------------------------------------------------------------------------------- /rust-counter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/LICENSE -------------------------------------------------------------------------------- /rust-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/README.md -------------------------------------------------------------------------------- /rust-counter/archive/advanced-magic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/archive/advanced-magic.ts -------------------------------------------------------------------------------- /rust-counter/archive/initializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/archive/initializeKeypair.ts -------------------------------------------------------------------------------- /rust-counter/archive/rust-counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/archive/rust-counter.ts -------------------------------------------------------------------------------- /rust-counter/archive/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/archive/schema.ts -------------------------------------------------------------------------------- /rust-counter/env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= -------------------------------------------------------------------------------- /rust-counter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/package.json -------------------------------------------------------------------------------- /rust-counter/src/entrypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/src/entrypoint.rs -------------------------------------------------------------------------------- /rust-counter/src/instruction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/src/instruction.rs -------------------------------------------------------------------------------- /rust-counter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/src/lib.rs -------------------------------------------------------------------------------- /rust-counter/src/processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/src/processor.rs -------------------------------------------------------------------------------- /rust-counter/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/src/state.rs -------------------------------------------------------------------------------- /rust-counter/tests/kit/advanced-magic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/kit/advanced-magic.test.ts -------------------------------------------------------------------------------- /rust-counter/tests/kit/initializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/kit/initializeKeypair.ts -------------------------------------------------------------------------------- /rust-counter/tests/kit/rust-counter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/kit/rust-counter.test.ts -------------------------------------------------------------------------------- /rust-counter/tests/kit/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/kit/schema.ts -------------------------------------------------------------------------------- /rust-counter/tests/web3js/advanced-magic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/web3js/advanced-magic.test.ts -------------------------------------------------------------------------------- /rust-counter/tests/web3js/initializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/web3js/initializeKeypair.ts -------------------------------------------------------------------------------- /rust-counter/tests/web3js/rust-counter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/web3js/rust-counter.test.ts -------------------------------------------------------------------------------- /rust-counter/tests/web3js/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tests/web3js/schema.ts -------------------------------------------------------------------------------- /rust-counter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/tsconfig.json -------------------------------------------------------------------------------- /rust-counter/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/vitest.config.ts -------------------------------------------------------------------------------- /rust-counter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/rust-counter/yarn.lock -------------------------------------------------------------------------------- /session-keys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/.gitignore -------------------------------------------------------------------------------- /session-keys/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/Anchor.toml -------------------------------------------------------------------------------- /session-keys/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/Cargo.lock -------------------------------------------------------------------------------- /session-keys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/Cargo.toml -------------------------------------------------------------------------------- /session-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/README.md -------------------------------------------------------------------------------- /session-keys/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/LICENSE -------------------------------------------------------------------------------- /session-keys/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/README.md -------------------------------------------------------------------------------- /session-keys/app/app/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/LICENSE.md -------------------------------------------------------------------------------- /session-keys/app/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/README.md -------------------------------------------------------------------------------- /session-keys/app/app/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/craco.config.js -------------------------------------------------------------------------------- /session-keys/app/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/package-lock.json -------------------------------------------------------------------------------- /session-keys/app/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/package.json -------------------------------------------------------------------------------- /session-keys/app/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/public/favicon.ico -------------------------------------------------------------------------------- /session-keys/app/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/public/index.html -------------------------------------------------------------------------------- /session-keys/app/app/public/magicblock_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/public/magicblock_white.png -------------------------------------------------------------------------------- /session-keys/app/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/public/manifest.json -------------------------------------------------------------------------------- /session-keys/app/app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/App.tsx -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Active.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Active.scss -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Active.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Active.tsx -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Alert.tsx -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Button.tsx -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Square.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Square.scss -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Square.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Square.tsx -------------------------------------------------------------------------------- /session-keys/app/app/src/components/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/components/Wallet.tsx -------------------------------------------------------------------------------- /session-keys/app/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/index.css -------------------------------------------------------------------------------- /session-keys/app/app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/src/index.tsx -------------------------------------------------------------------------------- /session-keys/app/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/tsconfig.json -------------------------------------------------------------------------------- /session-keys/app/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/app/yarn.lock -------------------------------------------------------------------------------- /session-keys/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/tsconfig.json -------------------------------------------------------------------------------- /session-keys/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/app/yarn.lock -------------------------------------------------------------------------------- /session-keys/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/package.json -------------------------------------------------------------------------------- /session-keys/programs/anchor-counter-session/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/programs/anchor-counter-session/Cargo.toml -------------------------------------------------------------------------------- /session-keys/programs/anchor-counter-session/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/programs/anchor-counter-session/src/lib.rs -------------------------------------------------------------------------------- /session-keys/tests/advanced-magic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/tests/advanced-magic.ts -------------------------------------------------------------------------------- /session-keys/tests/anchor-counter-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/tests/anchor-counter-session.ts -------------------------------------------------------------------------------- /session-keys/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/tsconfig.json -------------------------------------------------------------------------------- /session-keys/utils/initializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/utils/initializeKeypair.ts -------------------------------------------------------------------------------- /session-keys/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/session-keys/yarn.lock -------------------------------------------------------------------------------- /test-locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/test-locally.sh -------------------------------------------------------------------------------- /update-sdk-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicblock-labs/magicblock-engine-examples/HEAD/update-sdk-versions.sh --------------------------------------------------------------------------------