├── LICENSE
├── README.md
├── anchor
├── .gitignore
├── README.md
├── counter
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── counter
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── counter-keypair.json
│ ├── tests
│ │ └── counter.ts
│ └── tsconfig.json
├── cpi_Cross_Program_Invocations
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ ├── puppet-master
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ │ └── lib.rs
│ │ └── puppet
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ ├── puppet-keypair.json
│ │ │ └── puppet_master-keypair.json
│ ├── tests
│ │ └── cpi.ts
│ └── tsconfig.json
├── escrow
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── escrow
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── escrow-keypair.json
│ ├── tests
│ │ └── escrow.ts
│ └── tsconfig.json
├── guess_the_number
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── app
│ │ ├── assets
│ │ │ ├── images
│ │ │ │ ├── alphabet_a.png
│ │ │ │ ├── alphabet_b.png
│ │ │ │ ├── alphabet_c.png
│ │ │ │ ├── number_1.png
│ │ │ │ ├── number_2.png
│ │ │ │ ├── number_3.png
│ │ │ │ └── question.png
│ │ │ └── programId
│ │ │ │ ├── guess-keypair1.json
│ │ │ │ └── guess-keypair2.json
│ │ └── modules
│ │ │ ├── airdrop.ts
│ │ │ ├── createNfts.ts
│ │ │ ├── createPda.ts
│ │ │ ├── eligibleWinner.ts
│ │ │ ├── initializeWallets.ts
│ │ │ ├── mintNfts.ts
│ │ │ ├── mock
│ │ │ ├── createNfts.ts
│ │ │ ├── createPda.ts
│ │ │ ├── mintNfts.ts
│ │ │ ├── revealNft.ts
│ │ │ ├── reviewAnswers.ts
│ │ │ └── updateToOriginalOwner.ts
│ │ │ ├── pickupWinner.ts
│ │ │ ├── revealNft.ts
│ │ │ ├── setAuthorityEscrow.ts
│ │ │ ├── transferReward.ts
│ │ │ └── updateToOriginalOwner.ts
│ ├── keys
│ │ ├── payer.key.json
│ │ ├── taker1.key.json
│ │ └── taker2.key.json
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── guess
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── guess-keypair.json
│ ├── tests
│ │ └── guess.ts
│ └── tsconfig.json
├── mint_nft_using_metaplex_anchor_in_localnet
│ ├── .gitignore
│ ├── .prettierignore
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── app
│ │ └── .keep
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── myanc
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── tests
│ │ └── myanc.ts
│ └── tsconfig.json
├── pda_Program_Derived_Addresses
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── game
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── game-keypair.json
│ ├── tests
│ │ └── game.ts
│ └── tsconfig.json
├── post_to_earn
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── docs
│ │ ├── docs.pptx
│ │ └── outline.png
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── post_to_earn
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── post_to_earn-keypair.json
│ ├── tests
│ │ └── post_to_earn.ts
│ └── tsconfig.json
├── token-proxy
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── trsf
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── trsf-keypair.json
│ ├── tests
│ │ └── trsf.ts
│ └── tsconfig.json
├── transfer-sol-from-pda_invoke_signed
│ ├── .gitignore
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── app
│ │ └── .keep
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── myanc
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── tests
│ │ ├── providerPda.ts
│ │ └── userPda.ts
│ └── tsconfig.json
├── transfer-sol-from-pda_transfer_service_fee_lamports
│ ├── .prettierignore
│ ├── .vscode
│ │ └── tasks.json
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── README.md
│ ├── migrations
│ │ └── deploy.ts
│ ├── package.json
│ ├── programs
│ │ └── transferpg
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── transferpg-keypair.json
│ ├── tests
│ │ └── transferpg.ts
│ └── tsconfig.json
└── transfer-sol
│ ├── .gitignore
│ ├── .prettierignore
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── migrations
│ └── deploy.ts
│ ├── package.json
│ ├── programs
│ └── transfer-sol
│ │ ├── Cargo.toml
│ │ ├── Xargo.toml
│ │ └── src
│ │ └── lib.rs
│ ├── tests
│ └── transfer-sol.ts
│ └── tsconfig.json
├── cli
├── .gitignore
├── metaplex_sugar
│ ├── v1.2.1_cm_v2
│ │ ├── 1_create_and_mint_nft_with_collection
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ ├── 0.json
│ │ │ │ ├── 0.png
│ │ │ │ ├── collection.json
│ │ │ │ └── collection.png
│ │ │ ├── cache.json
│ │ │ └── config.json
│ │ ├── 2_mint_nft_then_verify_collection
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ ├── 0.json
│ │ │ │ └── 0.png
│ │ │ ├── cache.json
│ │ │ └── config.json
│ │ ├── README.md
│ │ └── docs
│ │ │ └── screenshot
│ │ │ ├── Token-Metadata-Collections-Nested-Collection.png
│ │ │ ├── example_Solaneyes_minted_nft.png
│ │ │ └── example_mint_address.png
│ └── v2.1.1_cm_v3
│ │ ├── README.md
│ │ ├── mintWithGuard
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── 0.json
│ │ │ ├── 0.png
│ │ │ ├── 1.json
│ │ │ ├── 1.png
│ │ │ ├── collection.json
│ │ │ └── collection.png
│ │ ├── cache.json
│ │ └── config.json
│ │ └── mintWithNoGuard
│ │ ├── README.md
│ │ ├── assets
│ │ ├── 0.json
│ │ ├── 0.png
│ │ ├── 1.json
│ │ ├── 1.png
│ │ ├── collection.json
│ │ └── collection.png
│ │ ├── cache.json
│ │ └── config.json
└── solana
│ └── createVanityKeypair.md
├── docs
├── .gitignore
├── README.md
└── screenshot
│ ├── escrow-overview.png
│ ├── magiceden-accounts.png
│ ├── outline-example-dex.png
│ ├── outline-example-system-architecture.png
│ ├── overview.png
│ ├── stepn-mapping-system.png
│ └── stepn-screenshot.png
├── full-stack
├── .gitignore
├── README.md
├── crud
│ ├── anchor
│ │ ├── Anchor.toml
│ │ ├── Cargo.toml
│ │ ├── README.md
│ │ ├── migrations
│ │ │ └── deploy.js
│ │ ├── package.json
│ │ ├── programs
│ │ │ └── crud
│ │ │ │ ├── Cargo.toml
│ │ │ │ ├── Xargo.toml
│ │ │ │ └── src
│ │ │ │ └── lib.rs
│ │ ├── target
│ │ │ └── deploy
│ │ │ │ └── crud-keypair.json
│ │ └── tests
│ │ │ └── crud.js
│ └── app
│ │ ├── package.json
│ │ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ │ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── idl.json
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── reportWebVitals.js
│ │ └── setupTests.js
├── escrow
│ ├── README.md
│ ├── anchor
│ │ ├── Anchor.toml
│ │ ├── Cargo.toml
│ │ ├── package.json
│ │ ├── programs
│ │ │ └── escrow
│ │ │ │ ├── Cargo.toml
│ │ │ │ ├── Xargo.toml
│ │ │ │ └── src
│ │ │ │ └── lib.rs
│ │ ├── target
│ │ │ └── deploy
│ │ │ │ └── escrow-keypair.json
│ │ ├── tests
│ │ │ └── escrow.ts
│ │ └── tsconfig.json
│ └── app
│ │ ├── .gitignore
│ │ ├── package.json
│ │ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ │ ├── src
│ │ ├── App.css
│ │ ├── App.test.tsx
│ │ ├── App.tsx
│ │ ├── idl.json
│ │ ├── index.css
│ │ ├── index.tsx
│ │ ├── logo.svg
│ │ ├── react-app-env.d.ts
│ │ ├── reportWebVitals.ts
│ │ └── setupTests.ts
│ │ └── tsconfig.json
├── initialize
│ ├── anchor
│ │ ├── Anchor.toml
│ │ ├── Cargo.toml
│ │ ├── README.md
│ │ ├── migrations
│ │ │ └── deploy.js
│ │ ├── package.json
│ │ ├── programs
│ │ │ └── initialize
│ │ │ │ ├── Cargo.toml
│ │ │ │ ├── Xargo.toml
│ │ │ │ └── src
│ │ │ │ └── lib.rs
│ │ ├── target
│ │ │ └── deploy
│ │ │ │ └── initialize-keypair.json
│ │ └── tests
│ │ │ └── initialize.js
│ └── app
│ │ ├── package.json
│ │ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ │ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── idl.json
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── reportWebVitals.js
│ │ └── setupTests.js
└── token-proxy
│ ├── README.md
│ ├── anchor
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── package.json
│ ├── programs
│ │ └── token-proxy
│ │ │ ├── Cargo.toml
│ │ │ ├── Xargo.toml
│ │ │ └── src
│ │ │ └── lib.rs
│ ├── target
│ │ └── deploy
│ │ │ └── token_proxy-keypair.json
│ └── tests
│ │ └── token-proxy.js
│ └── app
│ ├── README.md
│ ├── package.json
│ ├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
│ └── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── idl.json
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── reportWebVitals.js
│ └── setupTests.js
├── react
├── README.md
├── arweave
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── robots.txt
│ └── src
│ │ ├── App.css
│ │ ├── App.js
│ │ ├── App.test.js
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── logo.svg
│ │ ├── reportWebVitals.js
│ │ └── setupTests.js
├── connect_wallet
│ ├── README.md
│ ├── phantom
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── public
│ │ │ └── vite.svg
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── assets
│ │ │ │ └── react.svg
│ │ │ ├── index.css
│ │ │ ├── main.tsx
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
│ ├── solana-wallet-adapter_with_metaplex
│ │ ├── .gitignore
│ │ ├── index.html
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── components
│ │ │ │ ├── deprecatedMyNfts.tsx
│ │ │ │ ├── getAssetsByOwner.tsx
│ │ │ │ ├── sendSOLToRandomAddress.tsx
│ │ │ │ ├── transferAsset.tsx
│ │ │ │ └── wallet.tsx
│ │ │ ├── hooks
│ │ │ │ └── useUmi.ts
│ │ │ ├── index.css
│ │ │ ├── main.tsx
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
│ └── solana-wallet-adapter_without_metaplex
│ │ ├── .gitignore
│ │ ├── index.html
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── public
│ │ └── vite.svg
│ │ ├── src
│ │ ├── App.css
│ │ ├── App.tsx
│ │ ├── assets
│ │ │ └── react.svg
│ │ ├── components
│ │ │ ├── SignMessageButton.tsx
│ │ │ ├── Wallet.tsx
│ │ │ └── sendSOLToRandomAddress.tsx
│ │ ├── index.css
│ │ ├── main.tsx
│ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
├── mint_nft
│ └── README.md
├── sign_message
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ └── vite.svg
│ ├── src
│ │ ├── App.css
│ │ ├── App.tsx
│ │ ├── assets
│ │ │ └── react.svg
│ │ ├── components
│ │ │ ├── SignMessageButton.tsx
│ │ │ └── Wallet.tsx
│ │ ├── index.css
│ │ ├── main.tsx
│ │ └── vite-env.d.ts
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── transfer_sol
│ ├── phantom_vanilla
│ │ └── web3js-v1.44.1
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── package-lock.json
│ │ │ ├── package.json
│ │ │ ├── public
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── logo192.png
│ │ │ ├── logo512.png
│ │ │ ├── manifest.json
│ │ │ └── robots.txt
│ │ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.test.tsx
│ │ │ ├── App.tsx
│ │ │ ├── index.css
│ │ │ ├── index.tsx
│ │ │ ├── logo.svg
│ │ │ ├── react-app-env.d.ts
│ │ │ ├── reportWebVitals.ts
│ │ │ └── setupTests.ts
│ │ │ └── tsconfig.json
│ └── solana-wallet-adapter
│ │ ├── CRA-web3js-v1.39.1
│ │ ├── README.md
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── logo192.png
│ │ │ ├── logo512.png
│ │ │ ├── manifest.json
│ │ │ └── robots.txt
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.test.tsx
│ │ │ ├── App.tsx
│ │ │ ├── components
│ │ │ │ ├── SendOneLamportToRandomAddress.tsx
│ │ │ │ └── Wallet.tsx
│ │ │ ├── index.css
│ │ │ ├── index.tsx
│ │ │ ├── logo.svg
│ │ │ ├── react-app-env.d.ts
│ │ │ ├── reportWebVitals.ts
│ │ │ └── setupTests.ts
│ │ ├── tsconfig.json
│ │ └── yarn.lock
│ │ ├── README.md
│ │ ├── Vite-web3js-v1.63.1
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── public
│ │ │ └── vite.svg
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── assets
│ │ │ │ └── react.svg
│ │ │ ├── components
│ │ │ │ ├── SendOneLamportToRandomAddress.tsx
│ │ │ │ └── Wallet.tsx
│ │ │ ├── index.css
│ │ │ ├── main.tsx
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
│ │ └── docs
│ │ └── screenshot.png
└── transfer_token
│ ├── .gitignore
│ ├── README.md
│ ├── docs
│ └── screenshot.png
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ └── vite.svg
│ ├── src
│ ├── App.css
│ ├── App.tsx
│ ├── assets
│ │ └── react.svg
│ ├── components
│ │ ├── SendTokenToRandomAddress.tsx
│ │ └── Wallet.tsx
│ ├── index.css
│ ├── main.tsx
│ ├── modules
│ │ ├── createAssociatedTokenAccountInstruction.ts
│ │ ├── createTransferInstructions.ts
│ │ ├── getAccountInfo.ts
│ │ ├── getAssociatedTokenAddress.ts
│ │ └── getOrCreateAssociatedTokenAccount.ts
│ └── vite-env.d.ts
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── rust
├── .gitignore
├── README.md
├── get-nft-accounts
│ ├── using_metaboss
│ │ ├── Cargo.toml
│ │ └── src
│ │ │ └── main.rs
│ └── using_metaplex
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
└── lib
│ ├── Cargo.toml
│ ├── README.md
│ ├── src
│ ├── borsh.rs
│ ├── lib.rs
│ └── works_test.rs
│ └── sysvar
│ ├── Cargo.toml
│ ├── README.md
│ ├── Xargo.toml
│ ├── src
│ ├── entrypoint.rs
│ ├── lib.rs
│ └── processor.rs
│ └── tests
│ └── functional.rs
└── scripts
├── anchor
├── anchorWallet.ts
├── package-lock.json
└── package.json
├── arweave
├── README.md
├── arlocal_builtin_example.js
├── assets
│ ├── dummy.pdf
│ └── token_metadata_standard.json
├── create_tx.js
├── create_tx_and_sign.js
├── create_tx_sign_and_submit_json.js
├── create_tx_sign_and_submit_pdf.js
├── create_tx_sign_and_submit_text.js
├── create_tx_wallet_to_wallet.js
├── create_tx_with_tags.js
├── generate_key_file.js
├── generate_wallet_and_key.js
├── get_arweave_info.js
├── get_last_transaction_id.js
├── get_tx_data.js
├── get_tx_price.js
├── get_wallet_address.js
├── get_wallet_balance.js
├── key.json
├── package-lock.json
├── package.json
└── yarn.lock
├── circle
├── .env.example
├── .gitignore
├── package.json
├── src
│ ├── generateEntitySecretCiphertext.ts
│ └── test-api-key.ts
└── tsconfig.json
├── helius
├── .gitignore
└── compressed-nft
│ ├── .env.example
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ ├── src
│ ├── sdk
│ │ ├── getAssetProof.ts
│ │ └── getAssetsByOwner.ts
│ └── url
│ │ ├── getAssetById.ts
│ │ ├── getAssetProof.ts
│ │ ├── getAssetsByGroup.ts
│ │ ├── getAssetsByOwner.ts
│ │ ├── mintCompressedNFT.ts
│ │ ├── searchAssetsByCnft.ts
│ │ └── searchAssetsByGroup.ts
│ └── tsconfig.json
├── lib
├── .gitignore
├── Base58Vanilla.js
├── base58UsingBs58.ts
├── base64.ts
├── bn.js
├── buffer-layout.js
├── buffer.js
├── getRpcNameFromUrl.ts
├── getSolanaExplorerUrl.ts
├── getSolanaFmUrl.ts
├── package.json
├── sleep.ts
└── tsconfig.json
├── metaplex
├── .gitignore
├── README.md
├── archive
│ ├── bubblegum_CompressedNFT_mpl-bubblegum_v3.1.0
│ │ ├── .env.example
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── package.json
│ │ └── src
│ │ │ ├── approvingDelegateAuthority.ts
│ │ │ ├── createCustomInstructions.ts
│ │ │ ├── createMerkleTree.ts
│ │ │ ├── fetchMerkleTreeForCnft.ts
│ │ │ ├── findLeafAssetId.ts
│ │ │ ├── getAssetByAssetId.ts
│ │ │ ├── getAssetProof.ts
│ │ │ ├── getAssetsByAuthority.ts
│ │ │ ├── getAssetsByCollection.ts
│ │ │ ├── getAssetsByOwner.ts
│ │ │ ├── mintToCollection.ts
│ │ │ ├── mintWithoutCollection.ts
│ │ │ ├── parseLeafFromMintSignature.ts
│ │ │ ├── parseLeafFromMintToCollectionSignature.ts
│ │ │ ├── revokingDelegateAuthority.ts
│ │ │ ├── transferringCompressedNfts.ts
│ │ │ ├── unverifyCreatorForCnft.ts
│ │ │ └── verifyCreatorForCnft.ts
│ ├── candy-machine_v6-alpha_umi_v0.7.2
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── assets
│ │ │ │ ├── id-dummy.json
│ │ │ │ └── id.json
│ │ │ ├── mintWithGuardsAllowList.ts
│ │ │ ├── mintWithGuardsBasic.ts
│ │ │ └── mintWithNoGuards.ts
│ │ └── tsconfig.json
│ ├── metaplex-js-v0.19.x
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── assets
│ │ │ │ ├── id.json
│ │ │ │ ├── my-file.txt
│ │ │ │ └── my-image.png
│ │ │ ├── create.ts
│ │ │ ├── createAndVerifyCollection.ts
│ │ │ ├── createPrintNewEdition.ts
│ │ │ ├── createTransactionIstruction.ts
│ │ │ ├── createUpdate.ts
│ │ │ ├── createUploadFile.ts
│ │ │ ├── findAllByMintList.ts
│ │ │ ├── findAllByOwner.ts
│ │ │ ├── findByMint.ts
│ │ │ └── findMintedNfts.ts
│ │ └── tsconfig.json
│ └── metaplex-js-v0.20.x
│ │ ├── package.json
│ │ ├── src
│ │ ├── assets
│ │ │ ├── id.json
│ │ │ ├── my-file.txt
│ │ │ └── my-image.png
│ │ ├── create.ts
│ │ ├── createAndVerifyCollection.ts
│ │ ├── createPrintNewEdition.ts
│ │ ├── createTransactionIstruction.ts
│ │ ├── createUpdate.ts
│ │ ├── createUploadFile.ts
│ │ ├── findAllByMintList.ts
│ │ ├── findAllByOwner.ts
│ │ ├── findByMint.ts
│ │ └── findMintedNfts.ts
│ │ └── tsconfig.json
├── bubblegum_CompressedNFT
│ ├── .env.example
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ └── src
│ │ ├── approvingDelegateAuthority.ts
│ │ ├── createCustomInstructions.ts
│ │ ├── createMerkleTree.ts
│ │ ├── fetchMerkleTreeForCnft.ts
│ │ ├── findLeafAssetId.ts
│ │ ├── getAssetByAssetId.ts
│ │ ├── getAssetProof.ts
│ │ ├── getAssetsByAuthority.ts
│ │ ├── getAssetsByCollection.ts
│ │ ├── getAssetsByOwner.ts
│ │ ├── mintToCollection.ts
│ │ ├── mintWithoutCollection.ts
│ │ ├── parseLeafFromMintSignature.ts
│ │ ├── parseLeafFromMintToCollectionSignature.ts
│ │ ├── revokingDelegateAuthority.ts
│ │ ├── transferringCompressedNfts.ts
│ │ ├── unverifyCreatorForCnft.ts
│ │ └── verifyCreatorForCnft.ts
├── candy-machine_v6.0_umi_v0.8
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── assets
│ │ │ ├── id-dummy.json
│ │ │ └── id.json
│ │ ├── mintWithGuardsAllowList.ts
│ │ ├── mintWithGuardsBasic.ts
│ │ └── mintWithNoGuards.ts
│ └── tsconfig.json
├── core
│ ├── .env.example
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── creatingAsset.ts
│ │ ├── creatingAssetIntoCollection.ts
│ │ ├── creatingCollection.ts
│ │ ├── fetchingAssetByOwner.ts
│ │ ├── lib
│ │ │ └── sleep.ts
│ │ ├── modules
│ │ │ └── isConfirmed.ts
│ │ └── transferringAssetInCollection.ts
│ └── tsconfig.json
├── token-metadata
│ ├── .env.example
│ ├── .gitignore
│ ├── package.json
│ └── src
│ │ ├── createAccounts.ts
│ │ ├── createCollection.ts
│ │ ├── digital-assets-with-token
│ │ ├── fetchAllByOwner.ts
│ │ ├── fetchByMint.ts
│ │ └── fetchByMintAndOwner.ts
│ │ ├── digital-assets
│ │ ├── fetchAllByOwner.ts
│ │ ├── fetchAllByOwnerAndCollection.ts
│ │ └── fetchByMint.ts
│ │ └── mintTokens.ts
└── umi
│ ├── .env.example
│ ├── package.json
│ └── src
│ ├── addressLookupTable
│ ├── 1_createLut.ts
│ ├── 2_deactivateLut.ts
│ └── 3_closeLut.ts
│ ├── assets
│ └── nft-image.png
│ ├── convertToAndFromWeb3.jsTypes.ts
│ ├── irysUploader.ts
│ ├── memo.ts
│ ├── publickKeysAndSingers.ts
│ ├── serializers.ts
│ └── transactionBuilder.ts
├── mint_and_transfer_nft_using_arweave
├── .prettierrc.json
├── .vscode
│ └── tasks.json
├── README.md
├── jest.config.js
├── package-lock.json
├── package.json
├── src
│ ├── __tests__
│ │ └── modules
│ │ │ ├── mintEdition.test.ts
│ │ │ ├── mintNft.test.ts
│ │ │ ├── transferNft.test.ts
│ │ │ ├── uploadImage.test.ts
│ │ │ └── uploadMetadata.test.ts
│ ├── assets
│ │ ├── irasutoya-art.png
│ │ └── metadata.ts
│ ├── helpers
│ │ ├── arweave.ts
│ │ ├── solana.ts
│ │ └── utils.ts
│ ├── keys
│ │ ├── arweave.key.json
│ │ └── solana.key.json
│ ├── misc
│ │ └── helpers
│ │ │ ├── arweaveAirdrop.ts
│ │ │ └── solanaAirdrop.ts
│ ├── modules
│ │ ├── mintEdition.ts
│ │ ├── mintNft.ts
│ │ ├── transferNft.ts
│ │ ├── uploadImage.ts
│ │ └── uploadMetadata.ts
│ └── types
│ │ ├── arweave.ts
│ │ └── solana.ts
└── tsconfig.json
├── shyft
├── .env.example
├── .gitignore
├── README.md
├── package-lock.json
├── package.json
└── src
│ ├── cNftCreateMerkleTree.ts
│ ├── cNftMintToCollection.ts
│ ├── getAssetsByOwner.ts
│ ├── getNftByOwner.ts
│ ├── rpcGetAssetsByGroup.ts
│ └── walletTransaction.ts
└── solana
├── .gitignore
├── README.md
├── key.json
├── solana-kit
├── package.json
├── src
│ └── burnTokens.ts
└── tsconfig.json
├── token-extensions
├── README.md
├── metadata-pointer-extension-using-metaplex
│ ├── .env.example
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ └── src
│ │ ├── cat.png
│ │ ├── helpers.ts
│ │ ├── index.ts
│ │ ├── nft-with-embedded-metadata.ts
│ │ └── temp.json
├── metadata-pointer-extension-without-metaplex
│ ├── .env.example
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ └── src
│ │ └── index.ts
└── permanent-delegate
│ ├── .gitignore
│ ├── .prettierignore
│ ├── Anchor.toml
│ ├── Cargo.toml
│ ├── migrations
│ └── deploy.ts
│ ├── package.json
│ ├── pnpm-lock.yaml
│ ├── programs
│ └── permanent-delegate
│ │ ├── Cargo.toml
│ │ ├── Xargo.toml
│ │ └── src
│ │ └── lib.rs
│ ├── tests
│ └── permanent-delegate.ts
│ └── tsconfig.json
├── web3.js-v1.x
├── .env.example
├── .gitignore
├── package.json
├── src
│ ├── (Deprecated)getConfirmedSignaturesForAddress2(get_tx_history).ts
│ ├── addressLookupTable
│ │ ├── 1_createAddressLookupTable.ts
│ │ ├── 2_extendLookupTable.ts
│ │ ├── 3_deactivateLookupTable.ts
│ │ └── 4_closeLookupTable.ts
│ ├── changeComputeUnitBudgetPriorityFee.ts
│ ├── connection.ts
│ ├── createAccount.ts
│ ├── createAccountWithSeed.ts
│ ├── createAndCloseAssociatedTokenAccount.ts
│ ├── createAssociatedTokenAccountInstruction.ts
│ ├── createCustomPrograms.ts
│ ├── createPdaAccount.ts
│ ├── createStaking.ts
│ ├── createToken.ts
│ ├── createTransferInstruction.ts
│ ├── createVersionedTransactions.ts
│ ├── durableNonce
│ │ ├── 1_createNonceAccount.ts
│ │ ├── 2_getNonceAccount.ts
│ │ ├── 3_useNonceAccount.ts
│ │ └── 4_withdrawFromNonceAccount.ts
│ ├── generateKeypair.ts
│ ├── getAccountInfo.ts
│ ├── getAccountMintInfo.ts
│ ├── getAssociatedTokenAddress.ts
│ ├── getAssociatedTransactions.ts
│ ├── getParsedTransaction.ts
│ ├── getSignatureStatus.ts
│ ├── getSignaturesForAddress.ts
│ ├── getSimulateTransaction.ts
│ ├── getSolBalance.ts
│ ├── getTokenBalance.ts
│ ├── getTransaction.ts
│ ├── optimalComputeUnitsBudget.md
│ ├── sendMemo.ts
│ ├── sendMultiSigToken.ts
│ ├── sendMultipleTrunsactionsAllAtOnce.ts
│ ├── sendOfflineTransaction.ts
│ ├── sendPartialSignTransactionNativeSol.ts
│ ├── sendPartialSignTransactionToken.ts
│ ├── sendSignMessageUsingNaCl.ts
│ ├── transferSol.ts
│ ├── transferTokens.ts
│ └── watchSignatureStatus.ts
└── tsconfig.json
└── web3.js-v2.x
├── .env.example
├── .gitignore
├── README.md
├── package.json
└── tsconfig.json
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/README.md
--------------------------------------------------------------------------------
/anchor/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/.gitignore
--------------------------------------------------------------------------------
/anchor/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/README.md
--------------------------------------------------------------------------------
/anchor/counter/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/.prettierignore
--------------------------------------------------------------------------------
/anchor/counter/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/counter/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/Anchor.toml
--------------------------------------------------------------------------------
/anchor/counter/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/Cargo.toml
--------------------------------------------------------------------------------
/anchor/counter/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/README.md
--------------------------------------------------------------------------------
/anchor/counter/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/counter/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/package.json
--------------------------------------------------------------------------------
/anchor/counter/programs/counter/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/programs/counter/Cargo.toml
--------------------------------------------------------------------------------
/anchor/counter/programs/counter/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/programs/counter/Xargo.toml
--------------------------------------------------------------------------------
/anchor/counter/programs/counter/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/programs/counter/src/lib.rs
--------------------------------------------------------------------------------
/anchor/counter/target/deploy/counter-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/target/deploy/counter-keypair.json
--------------------------------------------------------------------------------
/anchor/counter/tests/counter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/tests/counter.ts
--------------------------------------------------------------------------------
/anchor/counter/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/counter/tsconfig.json
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/.prettierignore
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/Anchor.toml
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/Cargo.toml
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/README.md
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/package.json
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/programs/puppet-master/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/programs/puppet-master/Cargo.toml
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/programs/puppet-master/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/programs/puppet-master/Xargo.toml
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/programs/puppet-master/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/programs/puppet-master/src/lib.rs
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/programs/puppet/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/programs/puppet/Cargo.toml
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/programs/puppet/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/programs/puppet/Xargo.toml
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/programs/puppet/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/programs/puppet/src/lib.rs
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/target/deploy/puppet-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/target/deploy/puppet-keypair.json
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/target/deploy/puppet_master-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/target/deploy/puppet_master-keypair.json
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/tests/cpi.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/tests/cpi.ts
--------------------------------------------------------------------------------
/anchor/cpi_Cross_Program_Invocations/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/cpi_Cross_Program_Invocations/tsconfig.json
--------------------------------------------------------------------------------
/anchor/escrow/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/.prettierignore
--------------------------------------------------------------------------------
/anchor/escrow/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/escrow/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/Anchor.toml
--------------------------------------------------------------------------------
/anchor/escrow/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/Cargo.toml
--------------------------------------------------------------------------------
/anchor/escrow/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/README.md
--------------------------------------------------------------------------------
/anchor/escrow/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/escrow/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/package.json
--------------------------------------------------------------------------------
/anchor/escrow/programs/escrow/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/programs/escrow/Cargo.toml
--------------------------------------------------------------------------------
/anchor/escrow/programs/escrow/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/programs/escrow/Xargo.toml
--------------------------------------------------------------------------------
/anchor/escrow/programs/escrow/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/programs/escrow/src/lib.rs
--------------------------------------------------------------------------------
/anchor/escrow/target/deploy/escrow-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/target/deploy/escrow-keypair.json
--------------------------------------------------------------------------------
/anchor/escrow/tests/escrow.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/tests/escrow.ts
--------------------------------------------------------------------------------
/anchor/escrow/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/escrow/tsconfig.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/.prettierignore
--------------------------------------------------------------------------------
/anchor/guess_the_number/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/Anchor.toml
--------------------------------------------------------------------------------
/anchor/guess_the_number/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/Cargo.toml
--------------------------------------------------------------------------------
/anchor/guess_the_number/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/README.md
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/alphabet_a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/alphabet_a.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/alphabet_b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/alphabet_b.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/alphabet_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/alphabet_c.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/number_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/number_1.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/number_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/number_2.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/number_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/number_3.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/images/question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/images/question.png
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/programId/guess-keypair1.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/programId/guess-keypair1.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/assets/programId/guess-keypair2.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/assets/programId/guess-keypair2.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/airdrop.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/airdrop.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/createNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/createNfts.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/createPda.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/createPda.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/eligibleWinner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/eligibleWinner.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/initializeWallets.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/initializeWallets.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mintNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mintNfts.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mock/createNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mock/createNfts.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mock/createPda.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mock/createPda.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mock/mintNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mock/mintNfts.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mock/revealNft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mock/revealNft.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mock/reviewAnswers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mock/reviewAnswers.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/mock/updateToOriginalOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/mock/updateToOriginalOwner.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/pickupWinner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/pickupWinner.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/revealNft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/revealNft.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/setAuthorityEscrow.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/setAuthorityEscrow.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/transferReward.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/transferReward.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/app/modules/updateToOriginalOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/app/modules/updateToOriginalOwner.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/keys/payer.key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/keys/payer.key.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/keys/taker1.key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/keys/taker1.key.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/keys/taker2.key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/keys/taker2.key.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/package.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/programs/guess/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/programs/guess/Cargo.toml
--------------------------------------------------------------------------------
/anchor/guess_the_number/programs/guess/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/programs/guess/Xargo.toml
--------------------------------------------------------------------------------
/anchor/guess_the_number/programs/guess/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/programs/guess/src/lib.rs
--------------------------------------------------------------------------------
/anchor/guess_the_number/target/deploy/guess-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/target/deploy/guess-keypair.json
--------------------------------------------------------------------------------
/anchor/guess_the_number/tests/guess.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/tests/guess.ts
--------------------------------------------------------------------------------
/anchor/guess_the_number/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/guess_the_number/tsconfig.json
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .anchor
3 | .DS_Store
4 | target
5 | **/*.rs.bk
6 | node_modules
7 | test-ledger
8 |
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/.prettierignore
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/Anchor.toml
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/Cargo.toml
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/README.md
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/app/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/package.json
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/programs/myanc/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/programs/myanc/Cargo.toml
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/programs/myanc/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/programs/myanc/Xargo.toml
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/programs/myanc/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/programs/myanc/src/lib.rs
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/tests/myanc.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/tests/myanc.ts
--------------------------------------------------------------------------------
/anchor/mint_nft_using_metaplex_anchor_in_localnet/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/mint_nft_using_metaplex_anchor_in_localnet/tsconfig.json
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/.prettierignore
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/Anchor.toml
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/Cargo.toml
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/README.md
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/package.json
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/programs/game/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/programs/game/Cargo.toml
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/programs/game/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/programs/game/Xargo.toml
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/programs/game/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/programs/game/src/lib.rs
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/target/deploy/game-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/target/deploy/game-keypair.json
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/tests/game.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/tests/game.ts
--------------------------------------------------------------------------------
/anchor/pda_Program_Derived_Addresses/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/pda_Program_Derived_Addresses/tsconfig.json
--------------------------------------------------------------------------------
/anchor/post_to_earn/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/Anchor.toml
--------------------------------------------------------------------------------
/anchor/post_to_earn/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "programs/*"
4 | ]
5 |
--------------------------------------------------------------------------------
/anchor/post_to_earn/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/README.md
--------------------------------------------------------------------------------
/anchor/post_to_earn/docs/docs.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/docs/docs.pptx
--------------------------------------------------------------------------------
/anchor/post_to_earn/docs/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/docs/outline.png
--------------------------------------------------------------------------------
/anchor/post_to_earn/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/post_to_earn/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/package.json
--------------------------------------------------------------------------------
/anchor/post_to_earn/programs/post_to_earn/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/programs/post_to_earn/Cargo.toml
--------------------------------------------------------------------------------
/anchor/post_to_earn/programs/post_to_earn/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/programs/post_to_earn/Xargo.toml
--------------------------------------------------------------------------------
/anchor/post_to_earn/programs/post_to_earn/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/programs/post_to_earn/src/lib.rs
--------------------------------------------------------------------------------
/anchor/post_to_earn/target/deploy/post_to_earn-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/target/deploy/post_to_earn-keypair.json
--------------------------------------------------------------------------------
/anchor/post_to_earn/tests/post_to_earn.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/tests/post_to_earn.ts
--------------------------------------------------------------------------------
/anchor/post_to_earn/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/post_to_earn/tsconfig.json
--------------------------------------------------------------------------------
/anchor/token-proxy/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/.prettierignore
--------------------------------------------------------------------------------
/anchor/token-proxy/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/token-proxy/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/Anchor.toml
--------------------------------------------------------------------------------
/anchor/token-proxy/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/Cargo.toml
--------------------------------------------------------------------------------
/anchor/token-proxy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/README.md
--------------------------------------------------------------------------------
/anchor/token-proxy/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/token-proxy/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/package.json
--------------------------------------------------------------------------------
/anchor/token-proxy/programs/trsf/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/programs/trsf/Cargo.toml
--------------------------------------------------------------------------------
/anchor/token-proxy/programs/trsf/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/programs/trsf/Xargo.toml
--------------------------------------------------------------------------------
/anchor/token-proxy/programs/trsf/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/programs/trsf/src/lib.rs
--------------------------------------------------------------------------------
/anchor/token-proxy/target/deploy/trsf-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/target/deploy/trsf-keypair.json
--------------------------------------------------------------------------------
/anchor/token-proxy/tests/trsf.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/tests/trsf.ts
--------------------------------------------------------------------------------
/anchor/token-proxy/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/token-proxy/tsconfig.json
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .anchor
3 | .DS_Store
4 | target
5 | **/*.rs.bk
6 | node_modules
7 | test-ledger
8 |
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/.prettierignore
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/.vscode/tasks.json
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/Anchor.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/Cargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/README.md
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/app/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/package.json
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/programs/myanc/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/programs/myanc/Cargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/programs/myanc/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/programs/myanc/Xargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/programs/myanc/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/programs/myanc/src/lib.rs
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/tests/providerPda.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/tests/providerPda.ts
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/tests/userPda.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/tests/userPda.ts
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_invoke_signed/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_invoke_signed/tsconfig.json
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/.prettierignore
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/Anchor.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/Cargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/README.md
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/package.json
--------------------------------------------------------------------------------
/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol-from-pda_transfer_service_fee_lamports/tsconfig.json
--------------------------------------------------------------------------------
/anchor/transfer-sol/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .anchor
3 | .DS_Store
4 | target
5 | **/*.rs.bk
6 | node_modules
7 | test-ledger
8 | .yarn
9 |
--------------------------------------------------------------------------------
/anchor/transfer-sol/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/.prettierignore
--------------------------------------------------------------------------------
/anchor/transfer-sol/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/Anchor.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/Cargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/migrations/deploy.ts
--------------------------------------------------------------------------------
/anchor/transfer-sol/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/package.json
--------------------------------------------------------------------------------
/anchor/transfer-sol/programs/transfer-sol/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/programs/transfer-sol/Cargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol/programs/transfer-sol/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/programs/transfer-sol/Xargo.toml
--------------------------------------------------------------------------------
/anchor/transfer-sol/programs/transfer-sol/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/programs/transfer-sol/src/lib.rs
--------------------------------------------------------------------------------
/anchor/transfer-sol/tests/transfer-sol.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/tests/transfer-sol.ts
--------------------------------------------------------------------------------
/anchor/transfer-sol/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/anchor/transfer-sol/tsconfig.json
--------------------------------------------------------------------------------
/cli/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/.gitignore
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v1.2.1_cm_v2/2_mint_nft_then_verify_collection/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v1.2.1_cm_v2/2_mint_nft_then_verify_collection/README.md
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v1.2.1_cm_v2/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v1.2.1_cm_v2/README.md
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v1.2.1_cm_v2/docs/screenshot/example_mint_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v1.2.1_cm_v2/docs/screenshot/example_mint_address.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/README.md
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/README.md
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/0.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/0.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/0.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/1.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/1.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/1.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/collection.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/collection.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/collection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/assets/collection.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/cache.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/cache.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithGuard/config.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/README.md
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/0.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/0.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/0.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/1.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/1.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/1.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/collection.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/collection.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/collection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/assets/collection.png
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/cache.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/cache.json
--------------------------------------------------------------------------------
/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/metaplex_sugar/v2.1.1_cm_v3/mintWithNoGuard/config.json
--------------------------------------------------------------------------------
/cli/solana/createVanityKeypair.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/cli/solana/createVanityKeypair.md
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/.gitignore
--------------------------------------------------------------------------------
/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/README.md
--------------------------------------------------------------------------------
/docs/screenshot/escrow-overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/escrow-overview.png
--------------------------------------------------------------------------------
/docs/screenshot/magiceden-accounts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/magiceden-accounts.png
--------------------------------------------------------------------------------
/docs/screenshot/outline-example-dex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/outline-example-dex.png
--------------------------------------------------------------------------------
/docs/screenshot/outline-example-system-architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/outline-example-system-architecture.png
--------------------------------------------------------------------------------
/docs/screenshot/overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/overview.png
--------------------------------------------------------------------------------
/docs/screenshot/stepn-mapping-system.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/stepn-mapping-system.png
--------------------------------------------------------------------------------
/docs/screenshot/stepn-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/docs/screenshot/stepn-screenshot.png
--------------------------------------------------------------------------------
/full-stack/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/.gitignore
--------------------------------------------------------------------------------
/full-stack/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/README.md
--------------------------------------------------------------------------------
/full-stack/crud/anchor/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/Anchor.toml
--------------------------------------------------------------------------------
/full-stack/crud/anchor/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "programs/*"
4 | ]
5 |
--------------------------------------------------------------------------------
/full-stack/crud/anchor/README.md:
--------------------------------------------------------------------------------
1 | # CRUD
2 | ## Overview
3 | CRUD like programs.
4 |
--------------------------------------------------------------------------------
/full-stack/crud/anchor/migrations/deploy.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/migrations/deploy.js
--------------------------------------------------------------------------------
/full-stack/crud/anchor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/package.json
--------------------------------------------------------------------------------
/full-stack/crud/anchor/programs/crud/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/programs/crud/Cargo.toml
--------------------------------------------------------------------------------
/full-stack/crud/anchor/programs/crud/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/programs/crud/Xargo.toml
--------------------------------------------------------------------------------
/full-stack/crud/anchor/programs/crud/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/programs/crud/src/lib.rs
--------------------------------------------------------------------------------
/full-stack/crud/anchor/target/deploy/crud-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/target/deploy/crud-keypair.json
--------------------------------------------------------------------------------
/full-stack/crud/anchor/tests/crud.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/anchor/tests/crud.js
--------------------------------------------------------------------------------
/full-stack/crud/app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/package.json
--------------------------------------------------------------------------------
/full-stack/crud/app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/public/favicon.ico
--------------------------------------------------------------------------------
/full-stack/crud/app/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/public/index.html
--------------------------------------------------------------------------------
/full-stack/crud/app/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/public/logo192.png
--------------------------------------------------------------------------------
/full-stack/crud/app/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/public/logo512.png
--------------------------------------------------------------------------------
/full-stack/crud/app/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/public/manifest.json
--------------------------------------------------------------------------------
/full-stack/crud/app/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/public/robots.txt
--------------------------------------------------------------------------------
/full-stack/crud/app/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/App.css
--------------------------------------------------------------------------------
/full-stack/crud/app/src/App.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/App.js
--------------------------------------------------------------------------------
/full-stack/crud/app/src/App.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/App.test.js
--------------------------------------------------------------------------------
/full-stack/crud/app/src/idl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/idl.json
--------------------------------------------------------------------------------
/full-stack/crud/app/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/index.css
--------------------------------------------------------------------------------
/full-stack/crud/app/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/index.js
--------------------------------------------------------------------------------
/full-stack/crud/app/src/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/logo.svg
--------------------------------------------------------------------------------
/full-stack/crud/app/src/reportWebVitals.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/reportWebVitals.js
--------------------------------------------------------------------------------
/full-stack/crud/app/src/setupTests.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/crud/app/src/setupTests.js
--------------------------------------------------------------------------------
/full-stack/escrow/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/README.md
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/Anchor.toml
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "programs/*"
4 | ]
5 |
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/package.json
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/programs/escrow/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/programs/escrow/Cargo.toml
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/programs/escrow/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/programs/escrow/Xargo.toml
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/programs/escrow/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/programs/escrow/src/lib.rs
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/target/deploy/escrow-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/target/deploy/escrow-keypair.json
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/tests/escrow.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/tests/escrow.ts
--------------------------------------------------------------------------------
/full-stack/escrow/anchor/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/anchor/tsconfig.json
--------------------------------------------------------------------------------
/full-stack/escrow/app/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/.gitignore
--------------------------------------------------------------------------------
/full-stack/escrow/app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/package.json
--------------------------------------------------------------------------------
/full-stack/escrow/app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/public/favicon.ico
--------------------------------------------------------------------------------
/full-stack/escrow/app/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/public/index.html
--------------------------------------------------------------------------------
/full-stack/escrow/app/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/public/logo192.png
--------------------------------------------------------------------------------
/full-stack/escrow/app/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/public/logo512.png
--------------------------------------------------------------------------------
/full-stack/escrow/app/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/public/manifest.json
--------------------------------------------------------------------------------
/full-stack/escrow/app/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/public/robots.txt
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/App.css
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/App.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/App.test.tsx
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/App.tsx
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/idl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/idl.json
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/index.css
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/index.tsx
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/logo.svg
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/reportWebVitals.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/reportWebVitals.ts
--------------------------------------------------------------------------------
/full-stack/escrow/app/src/setupTests.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/src/setupTests.ts
--------------------------------------------------------------------------------
/full-stack/escrow/app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/escrow/app/tsconfig.json
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/Anchor.toml
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "programs/*"
4 | ]
5 |
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/README.md
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/migrations/deploy.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/migrations/deploy.js
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/package.json
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/programs/initialize/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/programs/initialize/Cargo.toml
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/programs/initialize/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/programs/initialize/Xargo.toml
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/programs/initialize/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/programs/initialize/src/lib.rs
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/target/deploy/initialize-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/target/deploy/initialize-keypair.json
--------------------------------------------------------------------------------
/full-stack/initialize/anchor/tests/initialize.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/anchor/tests/initialize.js
--------------------------------------------------------------------------------
/full-stack/initialize/app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/package.json
--------------------------------------------------------------------------------
/full-stack/initialize/app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/public/favicon.ico
--------------------------------------------------------------------------------
/full-stack/initialize/app/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/public/index.html
--------------------------------------------------------------------------------
/full-stack/initialize/app/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/public/logo192.png
--------------------------------------------------------------------------------
/full-stack/initialize/app/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/public/logo512.png
--------------------------------------------------------------------------------
/full-stack/initialize/app/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/public/manifest.json
--------------------------------------------------------------------------------
/full-stack/initialize/app/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/public/robots.txt
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/App.css
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/App.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/App.js
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/App.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/App.test.js
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/idl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/idl.json
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/index.css
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/index.js
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/reportWebVitals.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/reportWebVitals.js
--------------------------------------------------------------------------------
/full-stack/initialize/app/src/setupTests.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/initialize/app/src/setupTests.js
--------------------------------------------------------------------------------
/full-stack/token-proxy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/README.md
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/Anchor.toml
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "programs/*"
4 | ]
5 |
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/package.json
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/programs/token-proxy/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/programs/token-proxy/Cargo.toml
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/programs/token-proxy/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/programs/token-proxy/Xargo.toml
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/programs/token-proxy/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/programs/token-proxy/src/lib.rs
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/target/deploy/token_proxy-keypair.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/target/deploy/token_proxy-keypair.json
--------------------------------------------------------------------------------
/full-stack/token-proxy/anchor/tests/token-proxy.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/anchor/tests/token-proxy.js
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/README.md
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/package.json
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/public/favicon.ico
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/public/index.html
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/public/logo192.png
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/public/logo512.png
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/public/manifest.json
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/public/robots.txt
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/App.css
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/App.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/App.js
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/App.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/App.test.js
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/idl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/idl.json
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/index.css
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/index.js
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/logo.svg
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/reportWebVitals.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/reportWebVitals.js
--------------------------------------------------------------------------------
/full-stack/token-proxy/app/src/setupTests.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/full-stack/token-proxy/app/src/setupTests.js
--------------------------------------------------------------------------------
/react/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/README.md
--------------------------------------------------------------------------------
/react/arweave/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/README.md
--------------------------------------------------------------------------------
/react/arweave/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/package-lock.json
--------------------------------------------------------------------------------
/react/arweave/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/package.json
--------------------------------------------------------------------------------
/react/arweave/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/public/favicon.ico
--------------------------------------------------------------------------------
/react/arweave/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/public/index.html
--------------------------------------------------------------------------------
/react/arweave/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/public/logo192.png
--------------------------------------------------------------------------------
/react/arweave/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/public/logo512.png
--------------------------------------------------------------------------------
/react/arweave/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/public/manifest.json
--------------------------------------------------------------------------------
/react/arweave/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/public/robots.txt
--------------------------------------------------------------------------------
/react/arweave/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/App.css
--------------------------------------------------------------------------------
/react/arweave/src/App.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/App.js
--------------------------------------------------------------------------------
/react/arweave/src/App.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/App.test.js
--------------------------------------------------------------------------------
/react/arweave/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/index.css
--------------------------------------------------------------------------------
/react/arweave/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/index.js
--------------------------------------------------------------------------------
/react/arweave/src/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/logo.svg
--------------------------------------------------------------------------------
/react/arweave/src/reportWebVitals.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/reportWebVitals.js
--------------------------------------------------------------------------------
/react/arweave/src/setupTests.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/arweave/src/setupTests.js
--------------------------------------------------------------------------------
/react/connect_wallet/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/README.md
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/.gitignore
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/README.md
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/index.html
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/package-lock.json
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/package.json
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/public/vite.svg
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/src/App.css
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/src/App.tsx
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/src/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/src/assets/react.svg
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/src/index.css
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/src/main.tsx
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/tsconfig.json
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/tsconfig.node.json
--------------------------------------------------------------------------------
/react/connect_wallet/phantom/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/phantom/vite.config.ts
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/.gitignore
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/index.html
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/package-lock.json
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/package.json
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/App.css
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/App.tsx
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/index.css
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/main.tsx
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/tsconfig.json
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/tsconfig.node.json
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_with_metaplex/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_with_metaplex/vite.config.ts
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/.gitignore
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/index.html
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/package.json
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/public/vite.svg
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/App.css
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/App.tsx
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/index.css
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/main.tsx
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/tsconfig.json
--------------------------------------------------------------------------------
/react/connect_wallet/solana-wallet-adapter_without_metaplex/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/connect_wallet/solana-wallet-adapter_without_metaplex/vite.config.ts
--------------------------------------------------------------------------------
/react/mint_nft/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/mint_nft/README.md
--------------------------------------------------------------------------------
/react/sign_message/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/.gitignore
--------------------------------------------------------------------------------
/react/sign_message/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/README.md
--------------------------------------------------------------------------------
/react/sign_message/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/index.html
--------------------------------------------------------------------------------
/react/sign_message/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/package-lock.json
--------------------------------------------------------------------------------
/react/sign_message/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/package.json
--------------------------------------------------------------------------------
/react/sign_message/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/public/vite.svg
--------------------------------------------------------------------------------
/react/sign_message/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/App.css
--------------------------------------------------------------------------------
/react/sign_message/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/App.tsx
--------------------------------------------------------------------------------
/react/sign_message/src/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/assets/react.svg
--------------------------------------------------------------------------------
/react/sign_message/src/components/SignMessageButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/components/SignMessageButton.tsx
--------------------------------------------------------------------------------
/react/sign_message/src/components/Wallet.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/components/Wallet.tsx
--------------------------------------------------------------------------------
/react/sign_message/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/index.css
--------------------------------------------------------------------------------
/react/sign_message/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/src/main.tsx
--------------------------------------------------------------------------------
/react/sign_message/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/sign_message/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/tsconfig.json
--------------------------------------------------------------------------------
/react/sign_message/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/tsconfig.node.json
--------------------------------------------------------------------------------
/react/sign_message/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/sign_message/vite.config.ts
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/.gitignore
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/README.md
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/package-lock.json
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/package.json
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/favicon.ico
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/index.html
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/logo192.png
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/logo512.png
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/manifest.json
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/public/robots.txt
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/App.css
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/App.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/App.test.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/App.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/index.css
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/index.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/logo.svg
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/reportWebVitals.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/reportWebVitals.ts
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/setupTests.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/src/setupTests.ts
--------------------------------------------------------------------------------
/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/phantom_vanilla/web3js-v1.44.1/tsconfig.json
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/README.md
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/package.json
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/App.css
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/App.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/index.css
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/index.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/logo.svg
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/tsconfig.json
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/CRA-web3js-v1.39.1/yarn.lock
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/README.md
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/.gitignore
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/README.md
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/index.html
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/package.json
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/App.css
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/App.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/index.css
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/main.tsx
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/tsconfig.json
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/Vite-web3js-v1.63.1/vite.config.ts
--------------------------------------------------------------------------------
/react/transfer_sol/solana-wallet-adapter/docs/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_sol/solana-wallet-adapter/docs/screenshot.png
--------------------------------------------------------------------------------
/react/transfer_token/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/.gitignore
--------------------------------------------------------------------------------
/react/transfer_token/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/README.md
--------------------------------------------------------------------------------
/react/transfer_token/docs/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/docs/screenshot.png
--------------------------------------------------------------------------------
/react/transfer_token/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/index.html
--------------------------------------------------------------------------------
/react/transfer_token/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/package-lock.json
--------------------------------------------------------------------------------
/react/transfer_token/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/package.json
--------------------------------------------------------------------------------
/react/transfer_token/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/public/vite.svg
--------------------------------------------------------------------------------
/react/transfer_token/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/App.css
--------------------------------------------------------------------------------
/react/transfer_token/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/App.tsx
--------------------------------------------------------------------------------
/react/transfer_token/src/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/assets/react.svg
--------------------------------------------------------------------------------
/react/transfer_token/src/components/SendTokenToRandomAddress.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/components/SendTokenToRandomAddress.tsx
--------------------------------------------------------------------------------
/react/transfer_token/src/components/Wallet.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/components/Wallet.tsx
--------------------------------------------------------------------------------
/react/transfer_token/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/index.css
--------------------------------------------------------------------------------
/react/transfer_token/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/main.tsx
--------------------------------------------------------------------------------
/react/transfer_token/src/modules/createAssociatedTokenAccountInstruction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/modules/createAssociatedTokenAccountInstruction.ts
--------------------------------------------------------------------------------
/react/transfer_token/src/modules/createTransferInstructions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/modules/createTransferInstructions.ts
--------------------------------------------------------------------------------
/react/transfer_token/src/modules/getAccountInfo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/modules/getAccountInfo.ts
--------------------------------------------------------------------------------
/react/transfer_token/src/modules/getAssociatedTokenAddress.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/modules/getAssociatedTokenAddress.ts
--------------------------------------------------------------------------------
/react/transfer_token/src/modules/getOrCreateAssociatedTokenAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/src/modules/getOrCreateAssociatedTokenAccount.ts
--------------------------------------------------------------------------------
/react/transfer_token/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/react/transfer_token/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/tsconfig.json
--------------------------------------------------------------------------------
/react/transfer_token/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/tsconfig.node.json
--------------------------------------------------------------------------------
/react/transfer_token/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/react/transfer_token/vite.config.ts
--------------------------------------------------------------------------------
/rust/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/.gitignore
--------------------------------------------------------------------------------
/rust/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/README.md
--------------------------------------------------------------------------------
/rust/get-nft-accounts/using_metaboss/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/get-nft-accounts/using_metaboss/Cargo.toml
--------------------------------------------------------------------------------
/rust/get-nft-accounts/using_metaboss/src/main.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/get-nft-accounts/using_metaboss/src/main.rs
--------------------------------------------------------------------------------
/rust/get-nft-accounts/using_metaplex/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/get-nft-accounts/using_metaplex/Cargo.toml
--------------------------------------------------------------------------------
/rust/get-nft-accounts/using_metaplex/src/main.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/get-nft-accounts/using_metaplex/src/main.rs
--------------------------------------------------------------------------------
/rust/lib/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/Cargo.toml
--------------------------------------------------------------------------------
/rust/lib/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/README.md
--------------------------------------------------------------------------------
/rust/lib/src/borsh.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/src/borsh.rs
--------------------------------------------------------------------------------
/rust/lib/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/src/lib.rs
--------------------------------------------------------------------------------
/rust/lib/src/works_test.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/src/works_test.rs
--------------------------------------------------------------------------------
/rust/lib/sysvar/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/Cargo.toml
--------------------------------------------------------------------------------
/rust/lib/sysvar/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/README.md
--------------------------------------------------------------------------------
/rust/lib/sysvar/Xargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/Xargo.toml
--------------------------------------------------------------------------------
/rust/lib/sysvar/src/entrypoint.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/src/entrypoint.rs
--------------------------------------------------------------------------------
/rust/lib/sysvar/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/src/lib.rs
--------------------------------------------------------------------------------
/rust/lib/sysvar/src/processor.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/src/processor.rs
--------------------------------------------------------------------------------
/rust/lib/sysvar/tests/functional.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/rust/lib/sysvar/tests/functional.rs
--------------------------------------------------------------------------------
/scripts/anchor/anchorWallet.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/anchor/anchorWallet.ts
--------------------------------------------------------------------------------
/scripts/anchor/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/anchor/package-lock.json
--------------------------------------------------------------------------------
/scripts/anchor/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/anchor/package.json
--------------------------------------------------------------------------------
/scripts/arweave/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/README.md
--------------------------------------------------------------------------------
/scripts/arweave/arlocal_builtin_example.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/arlocal_builtin_example.js
--------------------------------------------------------------------------------
/scripts/arweave/assets/dummy.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/assets/dummy.pdf
--------------------------------------------------------------------------------
/scripts/arweave/assets/token_metadata_standard.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/assets/token_metadata_standard.json
--------------------------------------------------------------------------------
/scripts/arweave/create_tx.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx.js
--------------------------------------------------------------------------------
/scripts/arweave/create_tx_and_sign.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx_and_sign.js
--------------------------------------------------------------------------------
/scripts/arweave/create_tx_sign_and_submit_json.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx_sign_and_submit_json.js
--------------------------------------------------------------------------------
/scripts/arweave/create_tx_sign_and_submit_pdf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx_sign_and_submit_pdf.js
--------------------------------------------------------------------------------
/scripts/arweave/create_tx_sign_and_submit_text.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx_sign_and_submit_text.js
--------------------------------------------------------------------------------
/scripts/arweave/create_tx_wallet_to_wallet.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx_wallet_to_wallet.js
--------------------------------------------------------------------------------
/scripts/arweave/create_tx_with_tags.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/create_tx_with_tags.js
--------------------------------------------------------------------------------
/scripts/arweave/generate_key_file.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/generate_key_file.js
--------------------------------------------------------------------------------
/scripts/arweave/generate_wallet_and_key.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/generate_wallet_and_key.js
--------------------------------------------------------------------------------
/scripts/arweave/get_arweave_info.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/get_arweave_info.js
--------------------------------------------------------------------------------
/scripts/arweave/get_last_transaction_id.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/get_last_transaction_id.js
--------------------------------------------------------------------------------
/scripts/arweave/get_tx_data.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/get_tx_data.js
--------------------------------------------------------------------------------
/scripts/arweave/get_tx_price.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/get_tx_price.js
--------------------------------------------------------------------------------
/scripts/arweave/get_wallet_address.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/get_wallet_address.js
--------------------------------------------------------------------------------
/scripts/arweave/get_wallet_balance.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/get_wallet_balance.js
--------------------------------------------------------------------------------
/scripts/arweave/key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/key.json
--------------------------------------------------------------------------------
/scripts/arweave/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/package-lock.json
--------------------------------------------------------------------------------
/scripts/arweave/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/package.json
--------------------------------------------------------------------------------
/scripts/arweave/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/arweave/yarn.lock
--------------------------------------------------------------------------------
/scripts/circle/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/circle/.env.example
--------------------------------------------------------------------------------
/scripts/circle/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/circle/.gitignore
--------------------------------------------------------------------------------
/scripts/circle/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/circle/package.json
--------------------------------------------------------------------------------
/scripts/circle/src/generateEntitySecretCiphertext.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/circle/src/generateEntitySecretCiphertext.ts
--------------------------------------------------------------------------------
/scripts/circle/src/test-api-key.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/circle/src/test-api-key.ts
--------------------------------------------------------------------------------
/scripts/circle/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/circle/tsconfig.json
--------------------------------------------------------------------------------
/scripts/helius/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/.gitignore
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/.env.example
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/README.md
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/package.json
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/sdk/getAssetProof.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/sdk/getAssetProof.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/sdk/getAssetsByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/sdk/getAssetsByOwner.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/getAssetById.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/getAssetById.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/getAssetProof.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/getAssetProof.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/getAssetsByGroup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/getAssetsByGroup.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/getAssetsByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/getAssetsByOwner.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/mintCompressedNFT.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/mintCompressedNFT.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/searchAssetsByCnft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/searchAssetsByCnft.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/src/url/searchAssetsByGroup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/src/url/searchAssetsByGroup.ts
--------------------------------------------------------------------------------
/scripts/helius/compressed-nft/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/helius/compressed-nft/tsconfig.json
--------------------------------------------------------------------------------
/scripts/lib/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/.gitignore
--------------------------------------------------------------------------------
/scripts/lib/Base58Vanilla.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/Base58Vanilla.js
--------------------------------------------------------------------------------
/scripts/lib/base58UsingBs58.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/base58UsingBs58.ts
--------------------------------------------------------------------------------
/scripts/lib/base64.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/base64.ts
--------------------------------------------------------------------------------
/scripts/lib/bn.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/bn.js
--------------------------------------------------------------------------------
/scripts/lib/buffer-layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/buffer-layout.js
--------------------------------------------------------------------------------
/scripts/lib/buffer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/buffer.js
--------------------------------------------------------------------------------
/scripts/lib/getRpcNameFromUrl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/getRpcNameFromUrl.ts
--------------------------------------------------------------------------------
/scripts/lib/getSolanaExplorerUrl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/getSolanaExplorerUrl.ts
--------------------------------------------------------------------------------
/scripts/lib/getSolanaFmUrl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/getSolanaFmUrl.ts
--------------------------------------------------------------------------------
/scripts/lib/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/package.json
--------------------------------------------------------------------------------
/scripts/lib/sleep.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/sleep.ts
--------------------------------------------------------------------------------
/scripts/lib/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/lib/tsconfig.json
--------------------------------------------------------------------------------
/scripts/metaplex/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/.gitignore
--------------------------------------------------------------------------------
/scripts/metaplex/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/README.md
--------------------------------------------------------------------------------
/scripts/metaplex/archive/bubblegum_CompressedNFT_mpl-bubblegum_v3.1.0/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/metaplex/archive/candy-machine_v6-alpha_umi_v0.7.2/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/candy-machine_v6-alpha_umi_v0.7.2/README.md
--------------------------------------------------------------------------------
/scripts/metaplex/archive/candy-machine_v6-alpha_umi_v0.7.2/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/candy-machine_v6-alpha_umi_v0.7.2/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/candy-machine_v6-alpha_umi_v0.7.2/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/candy-machine_v6-alpha_umi_v0.7.2/tsconfig.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/assets/id.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/assets/id.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/assets/my-file.txt:
--------------------------------------------------------------------------------
1 | This is my-file.txt
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/assets/my-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/assets/my-image.png
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/create.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/create.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/createPrintNewEdition.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/createPrintNewEdition.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/createUpdate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/createUpdate.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/createUploadFile.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/createUploadFile.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findAllByMintList.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findAllByMintList.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findAllByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findAllByOwner.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findByMint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findByMint.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findMintedNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/src/findMintedNfts.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.19.x/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.19.x/tsconfig.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/assets/id.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/assets/id.json
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/assets/my-file.txt:
--------------------------------------------------------------------------------
1 | This is my-file.txt
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/assets/my-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/assets/my-image.png
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/create.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/create.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/createPrintNewEdition.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/createPrintNewEdition.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/createUpdate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/createUpdate.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/createUploadFile.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/createUploadFile.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findAllByMintList.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findAllByMintList.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findAllByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findAllByOwner.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findByMint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findByMint.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findMintedNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/src/findMintedNfts.ts
--------------------------------------------------------------------------------
/scripts/metaplex/archive/metaplex-js-v0.20.x/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/archive/metaplex-js-v0.20.x/tsconfig.json
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/.env.example
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/README.md
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/approvingDelegateAuthority.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/approvingDelegateAuthority.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/createCustomInstructions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/createCustomInstructions.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/createMerkleTree.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/createMerkleTree.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/fetchMerkleTreeForCnft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/fetchMerkleTreeForCnft.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/findLeafAssetId.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/findLeafAssetId.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetByAssetId.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetByAssetId.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetProof.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetProof.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetsByAuthority.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetsByAuthority.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetsByCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetsByCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetsByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/getAssetsByOwner.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/mintToCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/mintToCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/mintWithoutCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/mintWithoutCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/parseLeafFromMintSignature.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/parseLeafFromMintSignature.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/revokingDelegateAuthority.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/revokingDelegateAuthority.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/transferringCompressedNfts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/transferringCompressedNfts.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/unverifyCreatorForCnft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/unverifyCreatorForCnft.ts
--------------------------------------------------------------------------------
/scripts/metaplex/bubblegum_CompressedNFT/src/verifyCreatorForCnft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/bubblegum_CompressedNFT/src/verifyCreatorForCnft.ts
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/README.md
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/assets/id-dummy.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/assets/id-dummy.json
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/assets/id.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/assets/id.json
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/mintWithGuardsAllowList.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/mintWithGuardsAllowList.ts
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/mintWithGuardsBasic.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/mintWithGuardsBasic.ts
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/mintWithNoGuards.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/src/mintWithNoGuards.ts
--------------------------------------------------------------------------------
/scripts/metaplex/candy-machine_v6.0_umi_v0.8/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/candy-machine_v6.0_umi_v0.8/tsconfig.json
--------------------------------------------------------------------------------
/scripts/metaplex/core/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/.env.example
--------------------------------------------------------------------------------
/scripts/metaplex/core/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/metaplex/core/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/README.md
--------------------------------------------------------------------------------
/scripts/metaplex/core/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/creatingAsset.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/creatingAsset.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/creatingAssetIntoCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/creatingAssetIntoCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/creatingCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/creatingCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/fetchingAssetByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/fetchingAssetByOwner.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/lib/sleep.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/lib/sleep.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/modules/isConfirmed.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/modules/isConfirmed.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/src/transferringAssetInCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/src/transferringAssetInCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/core/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/core/tsconfig.json
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/.env.example
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/src/createAccounts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/src/createAccounts.ts
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/src/createCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/src/createCollection.ts
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/src/digital-assets/fetchAllByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/src/digital-assets/fetchAllByOwner.ts
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/src/digital-assets/fetchByMint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/src/digital-assets/fetchByMint.ts
--------------------------------------------------------------------------------
/scripts/metaplex/token-metadata/src/mintTokens.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/token-metadata/src/mintTokens.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/.env.example
--------------------------------------------------------------------------------
/scripts/metaplex/umi/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/package.json
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/addressLookupTable/1_createLut.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/addressLookupTable/1_createLut.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/addressLookupTable/2_deactivateLut.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/addressLookupTable/2_deactivateLut.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/addressLookupTable/3_closeLut.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/addressLookupTable/3_closeLut.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/assets/nft-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/assets/nft-image.png
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/convertToAndFromWeb3.jsTypes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/convertToAndFromWeb3.jsTypes.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/irysUploader.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/irysUploader.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/memo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/memo.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/publickKeysAndSingers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/publickKeysAndSingers.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/serializers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/serializers.ts
--------------------------------------------------------------------------------
/scripts/metaplex/umi/src/transactionBuilder.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/metaplex/umi/src/transactionBuilder.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/.vscode/tasks.json
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/README.md
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/jest.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/jest.config.js
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/package-lock.json
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/package.json
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/assets/irasutoya-art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/assets/irasutoya-art.png
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/assets/metadata.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/assets/metadata.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/helpers/arweave.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/helpers/arweave.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/helpers/solana.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/helpers/solana.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/helpers/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/helpers/utils.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/keys/arweave.key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/keys/arweave.key.json
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/keys/solana.key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/keys/solana.key.json
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/modules/mintEdition.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/modules/mintEdition.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/modules/mintNft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/modules/mintNft.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/modules/transferNft.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/modules/transferNft.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/modules/uploadImage.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/modules/uploadImage.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/modules/uploadMetadata.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/modules/uploadMetadata.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/types/arweave.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/types/arweave.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/src/types/solana.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/src/types/solana.ts
--------------------------------------------------------------------------------
/scripts/mint_and_transfer_nft_using_arweave/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/mint_and_transfer_nft_using_arweave/tsconfig.json
--------------------------------------------------------------------------------
/scripts/shyft/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/.env.example
--------------------------------------------------------------------------------
/scripts/shyft/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .env
3 |
4 | .DS_Store
--------------------------------------------------------------------------------
/scripts/shyft/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/README.md
--------------------------------------------------------------------------------
/scripts/shyft/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/package-lock.json
--------------------------------------------------------------------------------
/scripts/shyft/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/package.json
--------------------------------------------------------------------------------
/scripts/shyft/src/cNftCreateMerkleTree.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/src/cNftCreateMerkleTree.ts
--------------------------------------------------------------------------------
/scripts/shyft/src/cNftMintToCollection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/src/cNftMintToCollection.ts
--------------------------------------------------------------------------------
/scripts/shyft/src/getAssetsByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/src/getAssetsByOwner.ts
--------------------------------------------------------------------------------
/scripts/shyft/src/getNftByOwner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/src/getNftByOwner.ts
--------------------------------------------------------------------------------
/scripts/shyft/src/rpcGetAssetsByGroup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/src/rpcGetAssetsByGroup.ts
--------------------------------------------------------------------------------
/scripts/shyft/src/walletTransaction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/shyft/src/walletTransaction.ts
--------------------------------------------------------------------------------
/scripts/solana/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/.gitignore
--------------------------------------------------------------------------------
/scripts/solana/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/README.md
--------------------------------------------------------------------------------
/scripts/solana/key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/key.json
--------------------------------------------------------------------------------
/scripts/solana/solana-kit/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/solana-kit/package.json
--------------------------------------------------------------------------------
/scripts/solana/solana-kit/src/burnTokens.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/solana-kit/src/burnTokens.ts
--------------------------------------------------------------------------------
/scripts/solana/solana-kit/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/solana-kit/tsconfig.json
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/README.md
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/metadata-pointer-extension-using-metaplex/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 | .env
4 | test-ledger/
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/metadata-pointer-extension-without-metaplex/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 | .env
4 | test-ledger/
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/.gitignore:
--------------------------------------------------------------------------------
1 | .anchor
2 | .DS_Store
3 | target
4 | **/*.rs.bk
5 | node_modules
6 | test-ledger
7 | .yarn
8 |
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/.prettierignore
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/Anchor.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/Anchor.toml
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/Cargo.toml
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/migrations/deploy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/migrations/deploy.ts
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/package.json
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/pnpm-lock.yaml
--------------------------------------------------------------------------------
/scripts/solana/token-extensions/permanent-delegate/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/token-extensions/permanent-delegate/tsconfig.json
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/.env.example
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/package.json
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/addressLookupTable/2_extendLookupTable.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/addressLookupTable/2_extendLookupTable.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/addressLookupTable/4_closeLookupTable.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/addressLookupTable/4_closeLookupTable.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/changeComputeUnitBudgetPriorityFee.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/changeComputeUnitBudgetPriorityFee.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/connection.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/connection.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createAccountWithSeed.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createAccountWithSeed.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createAndCloseAssociatedTokenAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createAndCloseAssociatedTokenAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createAssociatedTokenAccountInstruction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createAssociatedTokenAccountInstruction.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createCustomPrograms.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createCustomPrograms.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createPdaAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createPdaAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createStaking.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createStaking.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createToken.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createToken.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createTransferInstruction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createTransferInstruction.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/createVersionedTransactions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/createVersionedTransactions.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/durableNonce/1_createNonceAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/durableNonce/1_createNonceAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/durableNonce/2_getNonceAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/durableNonce/2_getNonceAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/durableNonce/3_useNonceAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/durableNonce/3_useNonceAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/durableNonce/4_withdrawFromNonceAccount.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/durableNonce/4_withdrawFromNonceAccount.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/generateKeypair.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/generateKeypair.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getAccountInfo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getAccountInfo.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getAccountMintInfo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getAccountMintInfo.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getAssociatedTokenAddress.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getAssociatedTokenAddress.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getAssociatedTransactions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getAssociatedTransactions.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getParsedTransaction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getParsedTransaction.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getSignatureStatus.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getSignatureStatus.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getSignaturesForAddress.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getSignaturesForAddress.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getSimulateTransaction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getSimulateTransaction.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getSolBalance.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getSolBalance.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getTokenBalance.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getTokenBalance.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/getTransaction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/getTransaction.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/optimalComputeUnitsBudget.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/optimalComputeUnitsBudget.md
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendMemo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendMemo.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendMultiSigToken.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendMultiSigToken.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendMultipleTrunsactionsAllAtOnce.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendMultipleTrunsactionsAllAtOnce.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendOfflineTransaction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendOfflineTransaction.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendPartialSignTransactionNativeSol.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendPartialSignTransactionNativeSol.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendPartialSignTransactionToken.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendPartialSignTransactionToken.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/sendSignMessageUsingNaCl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/sendSignMessageUsingNaCl.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/transferSol.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/transferSol.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/transferTokens.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/transferTokens.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/src/watchSignatureStatus.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/src/watchSignatureStatus.ts
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v1.x/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v1.x/tsconfig.json
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v2.x/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v2.x/.env.example
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v2.x/.gitignore:
--------------------------------------------------------------------------------
1 | .env
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v2.x/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v2.x/README.md
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v2.x/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v2.x/package.json
--------------------------------------------------------------------------------
/scripts/solana/web3.js-v2.x/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/256hax/solana-anchor-react-minimal-example/HEAD/scripts/solana/web3.js-v2.x/tsconfig.json
--------------------------------------------------------------------------------