gitextract_wogrekbi/ ├── .ci/ │ ├── .exclude_files │ └── scripts.py ├── .devcontainer/ │ ├── Dockerfile │ └── devcontainer.json ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── python.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .prettierignore ├── CONTRIBUTING.md ├── README.md ├── code/ │ ├── account-maps/ │ │ ├── deriving-pda/ │ │ │ ├── anchor-pda-map.preview.rs │ │ │ ├── anchor-pda-map.rs │ │ │ ├── client.preview.ts │ │ │ ├── client.ts │ │ │ ├── vanilla-pda-map.preview.rs │ │ │ └── vanilla-pda-map.rs │ │ └── trivial/ │ │ ├── client.preview.ts │ │ ├── client.ts │ │ ├── vanilla-trivial-map.preview.rs │ │ └── vanilla-trivial-map.rs │ ├── accounts/ │ │ ├── close-account/ │ │ │ ├── client/ │ │ │ │ ├── close-account.adapter.en.tsx │ │ │ │ ├── close-account.adapter.preview.en.tsx │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ └── program/ │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ ├── create-account-with-seed/ │ │ │ ├── creation/ │ │ │ │ ├── main.en.rs │ │ │ │ ├── main.en.ts │ │ │ │ ├── main.preview.en.rs │ │ │ │ └── main.preview.en.ts │ │ │ ├── generate/ │ │ │ │ ├── main.en.rs │ │ │ │ ├── main.en.ts │ │ │ │ ├── main.preview.en.rs │ │ │ │ └── main.preview.en.ts │ │ │ └── transfer/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── create-system-account/ │ │ │ ├── create-system-account.en.rs │ │ │ ├── create-system-account.en.ts │ │ │ ├── create-system-account.preview.en.rs │ │ │ └── create-system-account.preview.en.ts │ │ ├── get-balance/ │ │ │ ├── main.en.cpp │ │ │ ├── main.en.py │ │ │ ├── main.en.rs │ │ │ ├── main.en.ts │ │ │ ├── main.preview.en.cpp │ │ │ ├── main.preview.en.py │ │ │ ├── main.preview.en.rs │ │ │ └── main.preview.en.ts │ │ ├── program-derived-address/ │ │ │ ├── create-a-pda/ │ │ │ │ ├── client/ │ │ │ │ │ ├── main.en.ts │ │ │ │ │ └── main.preview.en.ts │ │ │ │ └── program/ │ │ │ │ ├── Cargo.toml │ │ │ │ ├── Xargo.toml │ │ │ │ └── src/ │ │ │ │ ├── lib.preview.rs │ │ │ │ └── lib.rs │ │ │ ├── derived-a-pda/ │ │ │ │ ├── find-program-address.en.rs │ │ │ │ └── find-program-address.en.ts │ │ │ └── sign-a-pda/ │ │ │ ├── client/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ └── program/ │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ └── rent-exemption/ │ │ ├── rent-exemption.en.rs │ │ ├── rent-exemption.en.sh │ │ └── rent-exemption.en.ts │ ├── anchor/ │ │ ├── calculating-account-space-size/ │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src/ │ │ │ ├── account.preview.lib.rs │ │ │ ├── deserializer.preview.lib.rs │ │ │ ├── implementation-space.preview.lib.rs │ │ │ └── lib.rs │ │ ├── define-program/ │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src/ │ │ │ ├── define-account.preview.lib.rs │ │ │ ├── define-deserializer.preview.lib.rs │ │ │ ├── define-program-and-instructions.preview.lib.rs │ │ │ └── lib.rs │ │ └── testing-with-anchor/ │ │ ├── client/ │ │ │ ├── testing-with-anchor.js │ │ │ └── testing_with_anchor.py │ │ └── program/ │ │ ├── Cargo.toml │ │ ├── Xargo.toml │ │ └── src/ │ │ ├── define-increment.preview.lib.rs │ │ └── lib.rs │ ├── basic-transactions/ │ │ ├── calc-tx-cost/ │ │ │ ├── calc-tx-cost.en.ts │ │ │ ├── calc-tx-cost.preview.en.ts │ │ │ ├── calc-tx-est-fees-for-message.en.ts │ │ │ ├── calc-tx-est-fees-for-message.preview.en.ts │ │ │ ├── calc-tx-est-fees.en.ts │ │ │ └── calc-tx-est-fees.preview.en.ts │ │ ├── compute-budget/ │ │ │ ├── computeBudget.en.rs │ │ │ ├── computeBudget.en.tsx │ │ │ ├── computeBudget.preview.en.rs │ │ │ ├── computeBudget.preview.en.tsx │ │ │ ├── log_output.txt │ │ │ └── solana_program.rs │ │ ├── memo/ │ │ │ ├── memo.adapter.en.tsx │ │ │ ├── memo.adapter.preview.en.tsx │ │ │ ├── memo.en.sh │ │ │ ├── memo.en.ts │ │ │ └── memo.preview.en.ts │ │ ├── sending-sol/ │ │ │ ├── sending-sol.adapter.en.tsx │ │ │ ├── sending-sol.adapter.preview.en.tsx │ │ │ ├── sending-sol.en.py │ │ │ ├── sending-sol.en.rs │ │ │ ├── sending-sol.en.sh │ │ │ ├── sending-sol.en.ts │ │ │ ├── sending-sol.preview.en.py │ │ │ ├── sending-sol.preview.en.ts │ │ │ └── sending-sol.preview.rs │ │ └── sending-spl-token/ │ │ ├── sending-spl-token.adapter.en.tsx │ │ ├── sending-spl-token.adapter.preview.en.tsx │ │ ├── sending-spl-token.en.sh │ │ ├── sending-spl-token.en.ts │ │ └── sending-spl-token.preview.en.ts │ ├── data-migration/ │ │ ├── account-v0.en.rs │ │ ├── account-v0.preview.en.rs │ │ ├── account-v1.en.rs │ │ ├── account-v1.preview.en.rs │ │ ├── rust.instruction.en.rs │ │ ├── rust.instruction.preview.en.rs │ │ ├── rust.instruction1.en.rs │ │ ├── rust.processor.en.rs │ │ ├── rust.processor.preview.en.rs │ │ └── rust.processor1.en.rs │ ├── feature-parity-testing/ │ │ ├── deactivate_one.rs │ │ ├── deactivate_scfs.rs │ │ ├── deactivate_two.rs │ │ ├── preamble.rs │ │ └── preamble_short.rs │ ├── get-program-accounts/ │ │ ├── basic/ │ │ │ ├── basic.en.rs │ │ │ ├── basic.en.sh │ │ │ └── basic.en.ts │ │ ├── dataSlice/ │ │ │ ├── dataSlice.en.rs │ │ │ ├── dataSlice.en.sh │ │ │ └── dataSlice.en.ts │ │ └── memcmp/ │ │ ├── memcmp.en.rs │ │ ├── memcmp.en.sh │ │ └── memcmp.en.ts │ ├── jupiter/ │ │ ├── executeapi/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── getRoutesapi/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── getTxapi/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── inputSetup/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── installationapi/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── loading-instance/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── providerSetup/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── react-token-list/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── reactSwap/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── retriveapi/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── route-map/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── routes/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── swap/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── token-list/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ └── useJupiter/ │ │ ├── main.en.ts │ │ └── main.preview.en.ts │ ├── keypairs-and-wallets/ │ │ ├── check-valid-publickey/ │ │ │ ├── check-valid-publickey.cpp │ │ │ ├── check-valid-publickey.preview.cpp │ │ │ ├── check-valid-publickey.preview.py │ │ │ ├── check-valid-publickey.preview.rs │ │ │ ├── check-valid-publickey.preview.ts │ │ │ ├── check-valid-publickey.py │ │ │ ├── check-valid-publickey.rs │ │ │ └── check-valid-publickey.ts │ │ ├── connect-to-wallet/ │ │ │ ├── connect-to-wallet-react.en.tsx │ │ │ ├── connect-to-wallet-react.preview.en.tsx │ │ │ ├── connect-to-wallet-svelte.en.html │ │ │ ├── connect-to-wallet-svelte.preview.en.html │ │ │ ├── connect-to-wallet-vue.en.vue │ │ │ └── connect-to-wallet-vue.preview.en.vue │ │ ├── generate-keypair/ │ │ │ ├── generate-keypair.en.cpp │ │ │ ├── generate-keypair.en.py │ │ │ ├── generate-keypair.en.rs │ │ │ ├── generate-keypair.en.sh │ │ │ ├── generate-keypair.en.ts │ │ │ ├── generate-keypair.preview.en.cpp │ │ │ ├── generate-keypair.preview.en.py │ │ │ ├── generate-keypair.preview.en.rs │ │ │ ├── generate-keypair.preview.en.sh │ │ │ └── generate-keypair.preview.en.ts │ │ ├── generate-mnemonic/ │ │ │ ├── from-bip39.preview.py │ │ │ ├── from-bip39.preview.ts │ │ │ ├── from-bip39.py │ │ │ ├── from-bip39.sh │ │ │ └── from-bip39.ts │ │ ├── keypair-from-secret/ │ │ │ ├── from-bs58.en.py │ │ │ ├── from-bs58.en.rs │ │ │ ├── from-bs58.en.ts │ │ │ ├── from-bs58.preview.en.py │ │ │ ├── from-bs58.preview.en.rs │ │ │ ├── from-bs58.preview.en.ts │ │ │ ├── keypair-from-secret.en.cpp │ │ │ ├── keypair-from-secret.en.py │ │ │ ├── keypair-from-secret.en.rs │ │ │ ├── keypair-from-secret.en.sh │ │ │ ├── keypair-from-secret.en.ts │ │ │ ├── keypair-from-secret.preview.en.cpp │ │ │ ├── keypair-from-secret.preview.en.py │ │ │ ├── keypair-from-secret.preview.en.rs │ │ │ └── keypair-from-secret.preview.en.ts │ │ ├── mnemonic-to-keypair/ │ │ │ ├── from-bip39.preview.py │ │ │ ├── from-bip39.preview.ts │ │ │ ├── from-bip39.py │ │ │ ├── from-bip39.sh │ │ │ ├── from-bip39.ts │ │ │ ├── from-bip44.preview.py │ │ │ ├── from-bip44.preview.ts │ │ │ ├── from-bip44.py │ │ │ ├── from-bip44.sh │ │ │ └── from-bip44.ts │ │ ├── sign-verify-message/ │ │ │ ├── sign-verify-message.en.py │ │ │ ├── sign-verify-message.en.ts │ │ │ ├── sign-verify-message.preview.en.py │ │ │ └── sign-verify-message.preview.en.ts │ │ ├── vanity-publickeys/ │ │ │ ├── vanity-publickeys.en.cpp │ │ │ ├── vanity-publickeys.en.py │ │ │ ├── vanity-publickeys.en.sh │ │ │ ├── vanity-publickeys.en.ts │ │ │ ├── vanity-publickeys.preview.en.cpp │ │ │ ├── vanity-publickeys.preview.en.py │ │ │ └── vanity-publickeys.preview.en.ts │ │ └── verify-keypair/ │ │ ├── verify-keypair.en.cpp │ │ ├── verify-keypair.en.py │ │ ├── verify-keypair.en.sh │ │ ├── verify-keypair.en.ts │ │ ├── verify-keypair.preview.en.cpp │ │ ├── verify-keypair.preview.en.py │ │ └── verify-keypair.preview.en.ts │ ├── local-development/ │ │ ├── airdropping-sol/ │ │ │ ├── airdropping-sol.en.cpp │ │ │ ├── airdropping-sol.en.py │ │ │ ├── airdropping-sol.en.rs │ │ │ ├── airdropping-sol.en.sh │ │ │ ├── airdropping-sol.en.ts │ │ │ ├── airdropping-sol.preview.en.cpp │ │ │ ├── airdropping-sol.preview.en.py │ │ │ ├── airdropping-sol.preview.en.rs │ │ │ ├── airdropping-sol.preview.en.sh │ │ │ └── airdropping-sol.preview.en.ts │ │ ├── connecting-cluster/ │ │ │ ├── connecting-cluster.en.cpp │ │ │ ├── connecting-cluster.en.py │ │ │ ├── connecting-cluster.en.rs │ │ │ ├── connecting-cluster.en.sh │ │ │ ├── connecting-cluster.en.ts │ │ │ ├── connecting-cluster.preview.en.cpp │ │ │ ├── connecting-cluster.preview.en.py │ │ │ ├── connecting-cluster.preview.en.rs │ │ │ └── connecting-cluster.preview.en.ts │ │ ├── connecting-private-cluster/ │ │ │ ├── connecting-private-cluster.en.cpp │ │ │ ├── connecting-private-cluster.en.py │ │ │ ├── connecting-private-cluster.en.rs │ │ │ ├── connecting-private-cluster.en.sh │ │ │ ├── connecting-private-cluster.en.ts │ │ │ ├── connecting-private-cluster.preview.en.cpp │ │ │ ├── connecting-private-cluster.preview.en.py │ │ │ ├── connecting-private-cluster.preview.en.rs │ │ │ └── connecting-private-cluster.preview.en.ts │ │ ├── connecting-websocket/ │ │ │ ├── connecting-websocket.en.cpp │ │ │ ├── connecting-websocket.en.py │ │ │ ├── connecting-websocket.en.rs │ │ │ ├── connecting-websocket.en.ts │ │ │ ├── connecting-websocket.preview.en.cpp │ │ │ ├── connecting-websocket.preview.en.py │ │ │ ├── connecting-websocket.preview.en.rs │ │ │ └── connecting-websocket.preview.en.ts │ │ └── using-mainnet-accounts/ │ │ ├── dump-accounts.en.sh │ │ ├── dump-accounts.preview.en.sh │ │ ├── dump-programs.en.sh │ │ ├── dump-programs.preview.en.sh │ │ ├── load-accounts.en.sh │ │ ├── load-accounts.preview.en.sh │ │ ├── load-programs.en.sh │ │ └── load-programs.preview.en.sh │ ├── mango/ │ │ ├── create-account/ │ │ │ ├── create-account.en.rs │ │ │ ├── create-account.en.ts │ │ │ ├── create-account.preview.en.rs │ │ │ └── create-account.preview.en.ts │ │ ├── deposit/ │ │ │ ├── deposit.en.ts │ │ │ └── deposit.preview.en.ts │ │ ├── load-asks/ │ │ │ ├── load-asks.en.ts │ │ │ └── load-asks.preview.en.ts │ │ ├── load-bids/ │ │ │ ├── load-bids.en.ts │ │ │ └── load-bids.preview.en.ts │ │ ├── load-group/ │ │ │ ├── load-group.en.ts │ │ │ └── load-group.preview.en.ts │ │ └── place-spot-order/ │ │ ├── place-spot-order.en.ts │ │ └── place-spot-order.preview.en.ts │ ├── name-service/ │ │ ├── find-for-owner/ │ │ │ ├── find-for-owner.en.ts │ │ │ └── find-for-owner.preview.en.ts │ │ ├── resolve-sol-domain/ │ │ │ ├── resolve-sol-domain.en.ts │ │ │ └── resolve-sol-domain.preview.en.ts │ │ ├── resolve-sub-domain/ │ │ │ ├── resolve-sub-domain.en.ts │ │ │ └── resolve-sub-domain.preview.en.ts │ │ ├── resolve-twitter/ │ │ │ ├── resolve-twitter.en.ts │ │ │ └── resolve-twitter.preview.en.ts │ │ ├── reverse-look-up-domain/ │ │ │ ├── reverse-look-up-domain.en.ts │ │ │ └── reverse-look-up-domain.preview.en.ts │ │ ├── reverse-look-up-twitter/ │ │ │ ├── reverse-look-up-twitter.en.ts │ │ │ └── reverse-look-up-twitter.preview.en.ts │ │ └── schema/ │ │ ├── schema.en.ts │ │ └── schema.preview.en.ts │ ├── nfts/ │ │ ├── candy-machine/ │ │ │ ├── create-candy-machine.en.ts │ │ │ ├── create-candy-machine.preview.en.ts │ │ │ ├── delete-candy-machine.en.ts │ │ │ ├── delete-candy-machine.preview.en.ts │ │ │ ├── find-minted-nfts.en.ts │ │ │ ├── find-minted-nfts.preview.en.ts │ │ │ ├── find-via-address.en.ts │ │ │ ├── find-via-address.preview.en.ts │ │ │ ├── find-via-authority.en.ts │ │ │ ├── find-via-authority.preview.en.ts │ │ │ ├── find-via-wallet.en.ts │ │ │ ├── find-via-wallet.preview.en.ts │ │ │ ├── insert-items.en.ts │ │ │ ├── insert-items.preview.en.ts │ │ │ ├── mint-nft.en.ts │ │ │ └── mint-nft.preview.en.ts │ │ ├── create-nft-token/ │ │ │ ├── create-nft-token.en.ts │ │ │ └── create-nft-token.preview.en.ts │ │ ├── get-all-nfts/ │ │ │ ├── get-all-nfts.en.ts │ │ │ └── get-all-nfts.preview.en.ts │ │ ├── get-metadata/ │ │ │ ├── get-metadata.en.ts │ │ │ └── get-metadata.preview.en.ts │ │ ├── get-owner/ │ │ │ ├── get-owner.en.ts │ │ │ └── get-owner.preview.en.ts │ │ ├── mint-nft/ │ │ │ ├── mint-nft.en.ts │ │ │ └── mint-nft.preview.en.ts │ │ ├── nfts-mint-addresses/ │ │ │ ├── mint-addresses-preview-v2.en.ts │ │ │ ├── mint-addresses-preview.en.ts │ │ │ ├── mint-addresses-v2.en.ts │ │ │ └── mint-addresses.en.ts │ │ └── upload-arweave/ │ │ ├── upload-arweave.en.py │ │ ├── upload-arweave.en.ts │ │ ├── upload-arweave.preview.en.py │ │ └── upload-arweave.preview.en.ts │ ├── offline-transactions/ │ │ ├── durable-nonce/ │ │ │ ├── create-nonce-account/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ ├── get-nonce-account/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ └── use-nonce-account/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── partial-sign/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ └── sign-transaction/ │ │ ├── main.en.ts │ │ └── main.preview.en.ts │ ├── programs/ │ │ ├── cpi-transfer/ │ │ │ ├── client/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ ├── client-system/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ ├── program/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ ├── lib.preview.rs │ │ │ │ └── lib.rs │ │ │ └── program-system/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ ├── create-pda/ │ │ │ ├── client/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ └── program/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ ├── get-clock/ │ │ │ ├── method-one/ │ │ │ │ ├── client/ │ │ │ │ │ ├── main.en.ts │ │ │ │ │ └── main.preview.en.ts │ │ │ │ └── program/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ ├── lib.preview.rs │ │ │ │ └── lib.rs │ │ │ └── method-two/ │ │ │ ├── client/ │ │ │ │ ├── main.en.ts │ │ │ │ └── main.preview.en.ts │ │ │ └── program/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ ├── read-account/ │ │ │ └── program/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ ├── read-multiple-instructions/ │ │ │ └── program/ │ │ │ ├── lib.preview.rs │ │ │ └── lib.rs │ │ ├── realloc/ │ │ │ ├── realloc.en.rs │ │ │ └── realloc.preview.en.rs │ │ ├── transferring-lamports/ │ │ │ └── transferring-lamports.rs │ │ └── verify-account/ │ │ └── program/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── lib.preview.rs │ │ └── lib.rs │ ├── pyth/ │ │ ├── client/ │ │ │ ├── client.en.ts │ │ │ └── client.preview.en.ts │ │ └── on-chain/ │ │ ├── on-chain.en.rs │ │ └── on-chain.preview.en.rs │ ├── retrying-transactions/ │ │ ├── retry.en.ts │ │ └── retry.preview.en.ts │ ├── serialization/ │ │ ├── clientdata/ │ │ │ ├── python.client.data.py │ │ │ ├── rust.client.data.en.rs │ │ │ └── ts.client.data.en.ts │ │ ├── coption/ │ │ │ ├── demo_coption.en.ts │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── instruction/ │ │ │ ├── python.client.py │ │ │ ├── rust.client.mint.en.rs │ │ │ ├── rust.program.instruction.en.rs │ │ │ └── ts.client.mint.en.ts │ │ ├── primitives/ │ │ │ ├── demo_primitives.en.ts │ │ │ ├── python.demo_primitives.py │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── program/ │ │ │ ├── rust.program.initialize.en.rs │ │ │ ├── rust.program.mint.en.rs │ │ │ ├── rust.program.packimpl.en.rs │ │ │ └── rust.program.serdeser.en.rs │ │ └── setup/ │ │ ├── Cargo.cli.en.toml │ │ ├── Cargo.program.en.toml │ │ ├── Node.package.en.json │ │ └── requirements.txt │ ├── serum/ │ │ ├── get-books/ │ │ │ ├── get-books.en.ts │ │ │ └── get-books.preview.en.ts │ │ ├── get-orders/ │ │ │ ├── get-orders.en.ts │ │ │ └── get-orders.preview.en.ts │ │ └── load-market/ │ │ ├── load-market.en.ts │ │ └── load-market.preview.en.ts │ ├── staking/ │ │ ├── create-stake-account/ │ │ │ ├── create-stake-account.en.ts │ │ │ └── create-stake-account.preview.en.ts │ │ ├── deactivate-stake/ │ │ │ ├── deactivate-stake.en.ts │ │ │ └── deactivate-stake.preview.en.ts │ │ ├── delegate-stake/ │ │ │ ├── delegate-stake.en.ts │ │ │ └── delegate-stake.preview.en.ts │ │ ├── get-current-validators/ │ │ │ ├── get-current-validators.en.sh │ │ │ └── get-current-validators.en.ts │ │ ├── get-delegators-by-validators/ │ │ │ ├── get-delegators-by-validators.en.ts │ │ │ └── get-delegators-by-validators.preview.en.ts │ │ ├── get-stake-amount/ │ │ │ ├── get-stake-amount.en.ts │ │ │ └── get-stake-amount.preview.en.ts │ │ └── withdraw-stake/ │ │ ├── withdraw-stake.en.ts │ │ └── withdraw-stake.preview.en.ts │ ├── strata/ │ │ ├── fully-managed/ │ │ │ ├── buy-token.en.ts │ │ │ ├── buy-token.preview.en.ts │ │ │ ├── create-token.en.ts │ │ │ ├── create-token.preview.en.ts │ │ │ ├── sell-token.en.ts │ │ │ └── sell-token.preview.en.ts │ │ └── lbc/ │ │ ├── create.en.ts │ │ └── create.preview.en.ts │ ├── switchboard/ │ │ ├── client/ │ │ │ ├── create.client.en.ts │ │ │ ├── create.client.preview.en.ts │ │ │ ├── create.oracle.client.en.ts │ │ │ ├── create.oracle.client.preview.en.ts │ │ │ ├── create.vrf.client.en.ts │ │ │ ├── create.vrf.client.preview.en.ts │ │ │ ├── read.client.en.ts │ │ │ ├── read.client.preview.en.ts │ │ │ ├── read.vrf.client.en.ts │ │ │ ├── read.vrf.client.preview.en.ts │ │ │ ├── request.vrf.client.en.ts │ │ │ └── request.vrf.client.preview.en.ts │ │ ├── local/ │ │ │ └── docker-compose.oracle.local.en.yml │ │ └── on-chain/ │ │ ├── read.on-chain.en.rs │ │ ├── read.on-chain.preview.en.rs │ │ ├── read.vrf.on-chain.en.rs │ │ ├── read.vrf.on-chain.preview.en.rs │ │ ├── request.vrf.on-chain.en.rs │ │ └── request.vrf.on-chain.preview.en.rs │ ├── token/ │ │ ├── approve/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── burn-token/ │ │ │ ├── burn-token.en.ts │ │ │ └── burn-token.preview.en.ts │ │ ├── close-token-account/ │ │ │ ├── close-token-account.en.ts │ │ │ └── close-token-account.preview.en.ts │ │ ├── create-mint-account/ │ │ │ ├── create-mint-account.en.ts │ │ │ ├── create-mint-account.preview.en.ts │ │ │ └── create-mint-account.sh │ │ ├── create-token-account/ │ │ │ ├── ata.en.ts │ │ │ ├── ata.preview.en.ts │ │ │ ├── random.en.ts │ │ │ └── random.preview.en.ts │ │ ├── get-mint-account/ │ │ │ ├── get-mint-account.en.ts │ │ │ └── get-mint-account.preview.en.ts │ │ ├── get-token-account/ │ │ │ ├── get-token-account.en.ts │ │ │ └── get-token-account.preview.en.ts │ │ ├── get-token-account-by-owner/ │ │ │ ├── all.en.ts │ │ │ ├── all.preview.en.ts │ │ │ ├── by-mint.en.ts │ │ │ └── by-mint.preview.en.ts │ │ ├── get-token-balance/ │ │ │ ├── get-token-balance.en.rs │ │ │ ├── get-token-balance.en.ts │ │ │ ├── get-token-balance.preview.en.rs │ │ │ └── get-token-balance.preview.en.ts │ │ ├── mint-token/ │ │ │ ├── mint-token.en.ts │ │ │ └── mint-token.preview.en.ts │ │ ├── revoke/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── set-authority/ │ │ │ ├── main.en.ts │ │ │ └── main.preview.en.ts │ │ ├── transfer-token/ │ │ │ ├── transfer-token.en.ts │ │ │ └── transfer-token.preview.en.ts │ │ └── wrapped-sol/ │ │ ├── add-balance-by-sol.en.ts │ │ ├── add-balance-by-sol.preview.en.ts │ │ ├── add-balance-by-token.en.ts │ │ └── add-balance-by-token.preview.en.ts │ └── wallet/ │ └── Web3Auth/ │ ├── initialize-instance.en.ts │ ├── initialize-instance.preview.en.ts │ ├── login.en.ts │ ├── login.preview.en.ts │ ├── logout.en.ts │ ├── logout.preview.en.ts │ ├── send-transaction.en.ts │ ├── send-transaction.preview.en.ts │ ├── sign-message.en.ts │ ├── sign-message.preview.en.ts │ ├── topup.en.ts │ ├── topup.preview.en.ts │ ├── user-info.en.ts │ └── user-info.preview.en.ts ├── docs/ │ ├── .vuepress/ │ │ ├── clientAppEnhance.js │ │ ├── components/ │ │ │ ├── SolanaCodeGroup.vue │ │ │ └── SolanaCodeGroupItem.vue │ │ ├── config.ts │ │ ├── dist/ │ │ │ ├── 404.html │ │ │ ├── assets/ │ │ │ │ ├── 404.e671120d.js │ │ │ │ ├── 404.html.1873b0e7.js │ │ │ │ ├── 404.html.f166316b.js │ │ │ │ ├── Layout.4ba2f342.js │ │ │ │ ├── account-maps.html.17bd8d7d.js │ │ │ │ ├── account-maps.html.2bc51567.js │ │ │ │ ├── account-maps.html.2bcb32db.js │ │ │ │ ├── account-maps.html.2fa44b58.js │ │ │ │ ├── account-maps.html.47c84b4e.js │ │ │ │ ├── account-maps.html.54fde3f5.js │ │ │ │ ├── account-maps.html.5696ae7f.js │ │ │ │ ├── account-maps.html.573ed2b1.js │ │ │ │ ├── account-maps.html.6070c007.js │ │ │ │ ├── account-maps.html.61224aa4.js │ │ │ │ ├── account-maps.html.62c5a232.js │ │ │ │ ├── account-maps.html.6ef9e96e.js │ │ │ │ ├── account-maps.html.84532932.js │ │ │ │ ├── account-maps.html.84595114.js │ │ │ │ ├── account-maps.html.84c98fd3.js │ │ │ │ ├── account-maps.html.8c6e008e.js │ │ │ │ ├── account-maps.html.938d8c12.js │ │ │ │ ├── account-maps.html.a6d163f8.js │ │ │ │ ├── account-maps.html.a75e89c2.js │ │ │ │ ├── account-maps.html.bdfb893c.js │ │ │ │ ├── account-maps.html.c1ccf667.js │ │ │ │ ├── account-maps.html.c84ca06e.js │ │ │ │ ├── account-maps.html.c9249bbc.js │ │ │ │ ├── account-maps.html.cd84fe7b.js │ │ │ │ ├── account-maps.html.d79562dd.js │ │ │ │ ├── account-maps.html.ec99597b.js │ │ │ │ ├── account-maps.html.f32682b9.js │ │ │ │ ├── account-maps.html.f4daf1b2.js │ │ │ │ ├── accounts.html.05949c32.js │ │ │ │ ├── accounts.html.0636922d.js │ │ │ │ ├── accounts.html.0cab14f0.js │ │ │ │ ├── accounts.html.149df989.js │ │ │ │ ├── accounts.html.17535e68.js │ │ │ │ ├── accounts.html.1c2ce3f3.js │ │ │ │ ├── accounts.html.25738f4e.js │ │ │ │ ├── accounts.html.27fae06b.js │ │ │ │ ├── accounts.html.339a7b82.js │ │ │ │ ├── accounts.html.34134782.js │ │ │ │ ├── accounts.html.369da584.js │ │ │ │ ├── accounts.html.3d33092a.js │ │ │ │ ├── accounts.html.4965c1bb.js │ │ │ │ ├── accounts.html.527d0e94.js │ │ │ │ ├── accounts.html.5a2213a5.js │ │ │ │ ├── accounts.html.5a5d0844.js │ │ │ │ ├── accounts.html.5ae3ae45.js │ │ │ │ ├── accounts.html.5affc5f4.js │ │ │ │ ├── accounts.html.629a8060.js │ │ │ │ ├── accounts.html.62c56dc7.js │ │ │ │ ├── accounts.html.6a7a3655.js │ │ │ │ ├── accounts.html.705daa54.js │ │ │ │ ├── accounts.html.70ea6ada.js │ │ │ │ ├── accounts.html.79c0ca0e.js │ │ │ │ ├── accounts.html.7d878d86.js │ │ │ │ ├── accounts.html.85e3e0a4.js │ │ │ │ ├── accounts.html.8879a9c1.js │ │ │ │ ├── accounts.html.89eb8977.js │ │ │ │ ├── accounts.html.8c2c7d40.js │ │ │ │ ├── accounts.html.8e89eb52.js │ │ │ │ ├── accounts.html.8f47d5db.js │ │ │ │ ├── accounts.html.91bec01d.js │ │ │ │ ├── accounts.html.928ccf41.js │ │ │ │ ├── accounts.html.9a24f48b.js │ │ │ │ ├── accounts.html.9bb37cd5.js │ │ │ │ ├── accounts.html.9e729942.js │ │ │ │ ├── accounts.html.b3e83490.js │ │ │ │ ├── accounts.html.b91c3a6f.js │ │ │ │ ├── accounts.html.bcf82d40.js │ │ │ │ ├── accounts.html.c4066a49.js │ │ │ │ ├── accounts.html.c9e84ab5.js │ │ │ │ ├── accounts.html.cf985a2a.js │ │ │ │ ├── accounts.html.d07565e6.js │ │ │ │ ├── accounts.html.d0cb3dfd.js │ │ │ │ ├── accounts.html.d16b618e.js │ │ │ │ ├── accounts.html.d5fa2c98.js │ │ │ │ ├── accounts.html.d65e9141.js │ │ │ │ ├── accounts.html.d72d5885.js │ │ │ │ ├── accounts.html.dde6cff9.js │ │ │ │ ├── accounts.html.e2d2d050.js │ │ │ │ ├── accounts.html.e2d854ed.js │ │ │ │ ├── accounts.html.ef2241b1.js │ │ │ │ ├── accounts.html.f6ab334e.js │ │ │ │ ├── accounts.html.fab56f07.js │ │ │ │ ├── accounts.html.fedf3c54.js │ │ │ │ ├── accounts.html.ff5e6a4d.js │ │ │ │ ├── app.07ce7a66.js │ │ │ │ ├── auto-approve.html.00c95edb.js │ │ │ │ ├── auto-approve.html.1e147577.js │ │ │ │ ├── auto-approve.html.4e3677ac.js │ │ │ │ ├── auto-approve.html.78a21927.js │ │ │ │ ├── auto-approve.html.e352de0c.js │ │ │ │ ├── auto-approve.html.f8eb4c51.js │ │ │ │ ├── basic-transactions.html.13d601ed.js │ │ │ │ ├── basic-transactions.html.145d9f79.js │ │ │ │ ├── basic-transactions.html.18d8290f.js │ │ │ │ ├── basic-transactions.html.1913df43.js │ │ │ │ ├── basic-transactions.html.1abb92a6.js │ │ │ │ ├── basic-transactions.html.22d5c3fa.js │ │ │ │ ├── basic-transactions.html.351c7904.js │ │ │ │ ├── basic-transactions.html.3e9e6a63.js │ │ │ │ ├── basic-transactions.html.508e4c5e.js │ │ │ │ ├── basic-transactions.html.598e40ad.js │ │ │ │ ├── basic-transactions.html.710d7d5d.js │ │ │ │ ├── basic-transactions.html.75aca1d6.js │ │ │ │ ├── basic-transactions.html.8104955c.js │ │ │ │ ├── basic-transactions.html.81d4c6bc.js │ │ │ │ ├── basic-transactions.html.85ad631b.js │ │ │ │ ├── basic-transactions.html.8d04a74c.js │ │ │ │ ├── basic-transactions.html.9492ba81.js │ │ │ │ ├── basic-transactions.html.a069dbca.js │ │ │ │ ├── basic-transactions.html.ab11cb9f.js │ │ │ │ ├── basic-transactions.html.ae0f79a3.js │ │ │ │ ├── basic-transactions.html.b8e697ee.js │ │ │ │ ├── basic-transactions.html.c93eecf9.js │ │ │ │ ├── basic-transactions.html.dfe4490b.js │ │ │ │ ├── basic-transactions.html.e416b8f1.js │ │ │ │ ├── basic-transactions.html.e4233694.js │ │ │ │ ├── basic-transactions.html.e7edd2e8.js │ │ │ │ ├── basic-transactions.html.f38dcb54.js │ │ │ │ ├── basic-transactions.html.f7122c53.js │ │ │ │ ├── cpi.html.1a2d6d74.js │ │ │ │ ├── cpi.html.25f2d5bd.js │ │ │ │ ├── cpi.html.667a7166.js │ │ │ │ ├── cpi.html.68e45f97.js │ │ │ │ ├── cpi.html.7575fce3.js │ │ │ │ ├── cpi.html.9d257983.js │ │ │ │ ├── cpi.html.a071110c.js │ │ │ │ ├── cpi.html.a340693f.js │ │ │ │ ├── cpi.html.dc41f18c.js │ │ │ │ ├── cpi.html.fc0ddd7a.js │ │ │ │ ├── data-migration.html.06870b65.js │ │ │ │ ├── data-migration.html.07b84548.js │ │ │ │ ├── data-migration.html.084ac250.js │ │ │ │ ├── data-migration.html.159d137d.js │ │ │ │ ├── data-migration.html.352a418b.js │ │ │ │ ├── data-migration.html.42889ad1.js │ │ │ │ ├── data-migration.html.50964a4b.js │ │ │ │ ├── data-migration.html.51e5d8f8.js │ │ │ │ ├── data-migration.html.611a3316.js │ │ │ │ ├── data-migration.html.6e4730c8.js │ │ │ │ ├── data-migration.html.6ed17ef4.js │ │ │ │ ├── data-migration.html.81a46ce7.js │ │ │ │ ├── data-migration.html.8520d86d.js │ │ │ │ ├── data-migration.html.86082ff9.js │ │ │ │ ├── data-migration.html.95cc310f.js │ │ │ │ ├── data-migration.html.9963dda2.js │ │ │ │ ├── data-migration.html.a0b30eb8.js │ │ │ │ ├── data-migration.html.aa7491d7.js │ │ │ │ ├── data-migration.html.ac61c119.js │ │ │ │ ├── data-migration.html.c9b6d0c5.js │ │ │ │ ├── data-migration.html.cd8a5967.js │ │ │ │ ├── data-migration.html.ce4aed9f.js │ │ │ │ ├── data-migration.html.d0acee8e.js │ │ │ │ ├── data-migration.html.d5010d02.js │ │ │ │ ├── data-migration.html.db91eb39.js │ │ │ │ ├── data-migration.html.e0a081db.js │ │ │ │ ├── data-migration.html.ec2afdd1.js │ │ │ │ ├── data-migration.html.f3e868ea.js │ │ │ │ ├── debugging-solana-programs.html.02363b40.js │ │ │ │ ├── debugging-solana-programs.html.125832d7.js │ │ │ │ ├── debugging-solana-programs.html.1d099feb.js │ │ │ │ ├── debugging-solana-programs.html.24149e6d.js │ │ │ │ ├── debugging-solana-programs.html.29a6acd8.js │ │ │ │ ├── debugging-solana-programs.html.2a0d6ae2.js │ │ │ │ ├── debugging-solana-programs.html.2f9160d7.js │ │ │ │ ├── debugging-solana-programs.html.30d528f0.js │ │ │ │ ├── debugging-solana-programs.html.3408b860.js │ │ │ │ ├── debugging-solana-programs.html.3aacc1a8.js │ │ │ │ ├── debugging-solana-programs.html.3eeeb833.js │ │ │ │ ├── debugging-solana-programs.html.43aa08db.js │ │ │ │ ├── debugging-solana-programs.html.56d02641.js │ │ │ │ ├── debugging-solana-programs.html.696e8511.js │ │ │ │ ├── debugging-solana-programs.html.6d280979.js │ │ │ │ ├── debugging-solana-programs.html.73a43e11.js │ │ │ │ ├── debugging-solana-programs.html.a0e3b858.js │ │ │ │ ├── debugging-solana-programs.html.a9ad9801.js │ │ │ │ ├── debugging-solana-programs.html.afe6a517.js │ │ │ │ ├── debugging-solana-programs.html.b7fb9288.js │ │ │ │ ├── debugging-solana-programs.html.be9db9a6.js │ │ │ │ ├── debugging-solana-programs.html.c57d7b64.js │ │ │ │ ├── debugging-solana-programs.html.c5eb5f04.js │ │ │ │ ├── debugging-solana-programs.html.d0ab2086.js │ │ │ │ ├── debugging-solana-programs.html.d82f151d.js │ │ │ │ ├── debugging-solana-programs.html.ede954b0.js │ │ │ │ ├── debugging-solana-programs.html.f0229576.js │ │ │ │ ├── debugging-solana-programs.html.ff3a8325.js │ │ │ │ ├── distribution.html.1a2e0c57.js │ │ │ │ ├── distribution.html.1e4a8b99.js │ │ │ │ ├── distribution.html.5054629b.js │ │ │ │ ├── distribution.html.566e7a4c.js │ │ │ │ ├── distribution.html.e6e2641f.js │ │ │ │ ├── distribution.html.ebcec652.js │ │ │ │ ├── energy-system.html.1af785c7.js │ │ │ │ ├── energy-system.html.247dc971.js │ │ │ │ ├── energy-system.html.36ae62eb.js │ │ │ │ ├── energy-system.html.446d0efc.js │ │ │ │ ├── energy-system.html.71e02b64.js │ │ │ │ ├── energy-system.html.c939c46f.js │ │ │ │ ├── feature-parity-testing.html.0478ce69.js │ │ │ │ ├── feature-parity-testing.html.110a0e04.js │ │ │ │ ├── feature-parity-testing.html.1da58904.js │ │ │ │ ├── feature-parity-testing.html.270f9679.js │ │ │ │ ├── feature-parity-testing.html.2d03e4b5.js │ │ │ │ ├── feature-parity-testing.html.441250fa.js │ │ │ │ ├── feature-parity-testing.html.5be01a44.js │ │ │ │ ├── feature-parity-testing.html.60d0cda5.js │ │ │ │ ├── feature-parity-testing.html.61551d89.js │ │ │ │ ├── feature-parity-testing.html.61786585.js │ │ │ │ ├── feature-parity-testing.html.64de3bfa.js │ │ │ │ ├── feature-parity-testing.html.6b5afb2f.js │ │ │ │ ├── feature-parity-testing.html.7eebcb7c.js │ │ │ │ ├── feature-parity-testing.html.8332b8fc.js │ │ │ │ ├── feature-parity-testing.html.90d3050b.js │ │ │ │ ├── feature-parity-testing.html.93063fd3.js │ │ │ │ ├── feature-parity-testing.html.94cf4ee3.js │ │ │ │ ├── feature-parity-testing.html.9895d411.js │ │ │ │ ├── feature-parity-testing.html.9edac1d3.js │ │ │ │ ├── feature-parity-testing.html.a793ec94.js │ │ │ │ ├── feature-parity-testing.html.a8a66110.js │ │ │ │ ├── feature-parity-testing.html.abd7566e.js │ │ │ │ ├── feature-parity-testing.html.b2696a90.js │ │ │ │ ├── feature-parity-testing.html.c3ce27d5.js │ │ │ │ ├── feature-parity-testing.html.c4705572.js │ │ │ │ ├── feature-parity-testing.html.d784a27d.js │ │ │ │ ├── feature-parity-testing.html.e7b6289c.js │ │ │ │ ├── feature-parity-testing.html.e87e0e6e.js │ │ │ │ ├── game-examples.html.2dcfe766.js │ │ │ │ ├── game-examples.html.40ac5dd2.js │ │ │ │ ├── game-examples.html.4c517700.js │ │ │ │ ├── game-examples.html.4e1c4e80.js │ │ │ │ ├── game-examples.html.8ba930cd.js │ │ │ │ ├── game-examples.html.e048eba1.js │ │ │ │ ├── game-sdks.html.3a17cfa1.js │ │ │ │ ├── game-sdks.html.75e8b177.js │ │ │ │ ├── game-sdks.html.92d7e729.js │ │ │ │ ├── game-sdks.html.b7b1489e.js │ │ │ │ ├── game-sdks.html.c0176ba6.js │ │ │ │ ├── game-sdks.html.d18bd9d2.js │ │ │ │ ├── get-program-accounts.html.01717eeb.js │ │ │ │ ├── get-program-accounts.html.05c9c5aa.js │ │ │ │ ├── get-program-accounts.html.1208b27a.js │ │ │ │ ├── get-program-accounts.html.18585c23.js │ │ │ │ ├── get-program-accounts.html.19ef2dee.js │ │ │ │ ├── get-program-accounts.html.2b6451b4.js │ │ │ │ ├── get-program-accounts.html.2d157240.js │ │ │ │ ├── get-program-accounts.html.34a6b3c3.js │ │ │ │ ├── get-program-accounts.html.382d13c1.js │ │ │ │ ├── get-program-accounts.html.43b20beb.js │ │ │ │ ├── get-program-accounts.html.4f4498ed.js │ │ │ │ ├── get-program-accounts.html.58aa1eba.js │ │ │ │ ├── get-program-accounts.html.5f716fa3.js │ │ │ │ ├── get-program-accounts.html.703fb6bd.js │ │ │ │ ├── get-program-accounts.html.7e74d8ff.js │ │ │ │ ├── get-program-accounts.html.88cda781.js │ │ │ │ ├── get-program-accounts.html.94ffca18.js │ │ │ │ ├── get-program-accounts.html.a9d0e53c.js │ │ │ │ ├── get-program-accounts.html.b068cc8a.js │ │ │ │ ├── get-program-accounts.html.bc5b3f33.js │ │ │ │ ├── get-program-accounts.html.bcc96381.js │ │ │ │ ├── get-program-accounts.html.beec38ff.js │ │ │ │ ├── get-program-accounts.html.c29868e4.js │ │ │ │ ├── get-program-accounts.html.d60be8fc.js │ │ │ │ ├── get-program-accounts.html.d8ef5734.js │ │ │ │ ├── get-program-accounts.html.dfc1f9ed.js │ │ │ │ ├── get-program-accounts.html.f1b24dac.js │ │ │ │ ├── get-program-accounts.html.f563091d.js │ │ │ │ ├── hello-world.html.46100458.js │ │ │ │ ├── hello-world.html.7962bd1c.js │ │ │ │ ├── hello-world.html.97d1eb37.js │ │ │ │ ├── hello-world.html.dbee0508.js │ │ │ │ ├── hello-world.html.e42a81e2.js │ │ │ │ ├── hello-world.html.e99409d5.js │ │ │ │ ├── index.html.10c6341f.js │ │ │ │ ├── index.html.2017fef1.js │ │ │ │ ├── index.html.25f20e37.js │ │ │ │ ├── index.html.4943c0a7.js │ │ │ │ ├── index.html.4eb1f1ba.js │ │ │ │ ├── index.html.550d93c2.js │ │ │ │ ├── index.html.5b3f2ada.js │ │ │ │ ├── index.html.60dd15bd.js │ │ │ │ ├── index.html.618f6255.js │ │ │ │ ├── index.html.7ae71288.js │ │ │ │ ├── index.html.7d9ea062.js │ │ │ │ ├── index.html.8977d14d.js │ │ │ │ ├── index.html.92035043.js │ │ │ │ ├── index.html.9bb2504f.js │ │ │ │ ├── index.html.9bb5a8db.js │ │ │ │ ├── index.html.abf8251d.js │ │ │ │ ├── index.html.b4991d27.js │ │ │ │ ├── index.html.b594f3cc.js │ │ │ │ ├── index.html.b6c39787.js │ │ │ │ ├── index.html.c5a39464.js │ │ │ │ ├── index.html.c8f43f44.js │ │ │ │ ├── index.html.ca0d0ddc.js │ │ │ │ ├── index.html.caa2e1b4.js │ │ │ │ ├── index.html.d04c9063.js │ │ │ │ ├── index.html.dd541d3c.js │ │ │ │ ├── index.html.e7deec39.js │ │ │ │ ├── index.html.ed59c6f5.js │ │ │ │ ├── index.html.f4a1e63e.js │ │ │ │ ├── installation.html.04bddf91.js │ │ │ │ ├── installation.html.0539cd42.js │ │ │ │ ├── installation.html.0fd43b03.js │ │ │ │ ├── installation.html.1f30223e.js │ │ │ │ ├── installation.html.2e4550cf.js │ │ │ │ ├── installation.html.33a0283b.js │ │ │ │ ├── installation.html.3865f03a.js │ │ │ │ ├── installation.html.3b279ba8.js │ │ │ │ ├── installation.html.3ee204bb.js │ │ │ │ ├── installation.html.447c9172.js │ │ │ │ ├── installation.html.4e98836a.js │ │ │ │ ├── installation.html.5338573c.js │ │ │ │ ├── installation.html.5e200cbd.js │ │ │ │ ├── installation.html.75866756.js │ │ │ │ ├── installation.html.7b74d3ce.js │ │ │ │ ├── installation.html.81cc1ff4.js │ │ │ │ ├── installation.html.91886c17.js │ │ │ │ ├── installation.html.98badae7.js │ │ │ │ ├── installation.html.9dc89678.js │ │ │ │ ├── installation.html.a516e599.js │ │ │ │ ├── installation.html.aa25ac0f.js │ │ │ │ ├── installation.html.aa3edf44.js │ │ │ │ ├── installation.html.cff7de51.js │ │ │ │ ├── installation.html.dad10efa.js │ │ │ │ ├── installation.html.eeb039ec.js │ │ │ │ ├── installation.html.ef551b6c.js │ │ │ │ ├── installation.html.f389c1e2.js │ │ │ │ ├── installation.html.fd583852.js │ │ │ │ ├── interact-with-tokens.html.2bce6086.js │ │ │ │ ├── interact-with-tokens.html.3c85d257.js │ │ │ │ ├── interact-with-tokens.html.4c6e3333.js │ │ │ │ ├── interact-with-tokens.html.64318398.js │ │ │ │ ├── interact-with-tokens.html.98196941.js │ │ │ │ ├── interact-with-tokens.html.f2419630.js │ │ │ │ ├── intro.html.48bcd940.js │ │ │ │ ├── intro.html.51f00446.js │ │ │ │ ├── intro.html.5c2ad8c4.js │ │ │ │ ├── intro.html.afd41fab.js │ │ │ │ ├── intro.html.cccca287.js │ │ │ │ ├── intro.html.e782eb8d.js │ │ │ │ ├── keypairs-and-wallets.html.06b48140.js │ │ │ │ ├── keypairs-and-wallets.html.06ba1dde.js │ │ │ │ ├── keypairs-and-wallets.html.35579864.js │ │ │ │ ├── keypairs-and-wallets.html.41fab86d.js │ │ │ │ ├── keypairs-and-wallets.html.4fa11b3e.js │ │ │ │ ├── keypairs-and-wallets.html.51f378e3.js │ │ │ │ ├── keypairs-and-wallets.html.52178133.js │ │ │ │ ├── keypairs-and-wallets.html.5d3230ee.js │ │ │ │ ├── keypairs-and-wallets.html.61911f3c.js │ │ │ │ ├── keypairs-and-wallets.html.67ed01d6.js │ │ │ │ ├── keypairs-and-wallets.html.68a4f8a1.js │ │ │ │ ├── keypairs-and-wallets.html.7c422ff4.js │ │ │ │ ├── keypairs-and-wallets.html.7c453b59.js │ │ │ │ ├── keypairs-and-wallets.html.7c474929.js │ │ │ │ ├── keypairs-and-wallets.html.87a50ba3.js │ │ │ │ ├── keypairs-and-wallets.html.8a36f79a.js │ │ │ │ ├── keypairs-and-wallets.html.8d42bf89.js │ │ │ │ ├── keypairs-and-wallets.html.96505086.js │ │ │ │ ├── keypairs-and-wallets.html.9ba5746a.js │ │ │ │ ├── keypairs-and-wallets.html.af37857f.js │ │ │ │ ├── keypairs-and-wallets.html.c98a65c6.js │ │ │ │ ├── keypairs-and-wallets.html.caac507d.js │ │ │ │ ├── keypairs-and-wallets.html.cc8fbf04.js │ │ │ │ ├── keypairs-and-wallets.html.cc9959ad.js │ │ │ │ ├── keypairs-and-wallets.html.de41b5c5.js │ │ │ │ ├── keypairs-and-wallets.html.e67c0c51.js │ │ │ │ ├── keypairs-and-wallets.html.f22c3901.js │ │ │ │ ├── keypairs-and-wallets.html.f62ce6aa.js │ │ │ │ ├── local-development.html.04b39972.js │ │ │ │ ├── local-development.html.0592ee0b.js │ │ │ │ ├── local-development.html.0eff045a.js │ │ │ │ ├── local-development.html.2a116d81.js │ │ │ │ ├── local-development.html.2abc6315.js │ │ │ │ ├── local-development.html.3d4bf8da.js │ │ │ │ ├── local-development.html.46e27ce6.js │ │ │ │ ├── local-development.html.56a49f49.js │ │ │ │ ├── local-development.html.57651167.js │ │ │ │ ├── local-development.html.5b9c11f5.js │ │ │ │ ├── local-development.html.61336a2a.js │ │ │ │ ├── local-development.html.6fe99a83.js │ │ │ │ ├── local-development.html.720fba0c.js │ │ │ │ ├── local-development.html.7e1bd7bf.js │ │ │ │ ├── local-development.html.83d30cd3.js │ │ │ │ ├── local-development.html.87708b9b.js │ │ │ │ ├── local-development.html.8d6577e9.js │ │ │ │ ├── local-development.html.94d5f03d.js │ │ │ │ ├── local-development.html.987c051d.js │ │ │ │ ├── local-development.html.a46df64b.js │ │ │ │ ├── local-development.html.b97186da.js │ │ │ │ ├── local-development.html.c30f3958.js │ │ │ │ ├── local-development.html.c3972821.js │ │ │ │ ├── local-development.html.c5836b09.js │ │ │ │ ├── local-development.html.d92b65d2.js │ │ │ │ ├── local-development.html.edd1e5da.js │ │ │ │ ├── local-development.html.f5643536.js │ │ │ │ ├── local-development.html.fd41bc0d.js │ │ │ │ ├── name-service.html.1a8fc34e.js │ │ │ │ ├── name-service.html.2a6127d5.js │ │ │ │ ├── name-service.html.2caf8c15.js │ │ │ │ ├── name-service.html.31d70b32.js │ │ │ │ ├── name-service.html.326a6c13.js │ │ │ │ ├── name-service.html.34b8f57a.js │ │ │ │ ├── name-service.html.38938728.js │ │ │ │ ├── name-service.html.40d37cf7.js │ │ │ │ ├── name-service.html.5051d1dd.js │ │ │ │ ├── name-service.html.569777a7.js │ │ │ │ ├── name-service.html.625e197d.js │ │ │ │ ├── name-service.html.65503a5f.js │ │ │ │ ├── name-service.html.73354d4f.js │ │ │ │ ├── name-service.html.7f713da1.js │ │ │ │ ├── name-service.html.84a68d08.js │ │ │ │ ├── name-service.html.87ead710.js │ │ │ │ ├── name-service.html.8945e238.js │ │ │ │ ├── name-service.html.8fa8af28.js │ │ │ │ ├── name-service.html.9126ccbb.js │ │ │ │ ├── name-service.html.92fe381f.js │ │ │ │ ├── name-service.html.b1fdc398.js │ │ │ │ ├── name-service.html.c487eb0f.js │ │ │ │ ├── name-service.html.c5f60f0b.js │ │ │ │ ├── name-service.html.d6069fdf.js │ │ │ │ ├── name-service.html.e0d6e448.js │ │ │ │ ├── name-service.html.e670bb57.js │ │ │ │ ├── name-service.html.ea9b0216.js │ │ │ │ ├── name-service.html.f9dd90b0.js │ │ │ │ ├── nfts-in-games.html.2b65cbf5.js │ │ │ │ ├── nfts-in-games.html.31ac6411.js │ │ │ │ ├── nfts-in-games.html.46772392.js │ │ │ │ ├── nfts-in-games.html.5898ff02.js │ │ │ │ ├── nfts-in-games.html.cbea4492.js │ │ │ │ ├── nfts-in-games.html.e1b77b87.js │ │ │ │ ├── nfts.html.06449cbe.js │ │ │ │ ├── nfts.html.0870f8d4.js │ │ │ │ ├── nfts.html.1e42ca51.js │ │ │ │ ├── nfts.html.2c1ad270.js │ │ │ │ ├── nfts.html.39ed8786.js │ │ │ │ ├── nfts.html.3a4dc806.js │ │ │ │ ├── nfts.html.4488b5bf.js │ │ │ │ ├── nfts.html.522cff97.js │ │ │ │ ├── nfts.html.595f8f64.js │ │ │ │ ├── nfts.html.61f329ef.js │ │ │ │ ├── nfts.html.6cf05cb7.js │ │ │ │ ├── nfts.html.73b95415.js │ │ │ │ ├── nfts.html.75a819e1.js │ │ │ │ ├── nfts.html.8062119a.js │ │ │ │ ├── nfts.html.88b22980.js │ │ │ │ ├── nfts.html.8ab155e7.js │ │ │ │ ├── nfts.html.8f57b7b1.js │ │ │ │ ├── nfts.html.93f43d02.js │ │ │ │ ├── nfts.html.965a9b0c.js │ │ │ │ ├── nfts.html.b43c7325.js │ │ │ │ ├── nfts.html.cb306959.js │ │ │ │ ├── nfts.html.cf97bb6d.js │ │ │ │ ├── nfts.html.d0725425.js │ │ │ │ ├── nfts.html.d679a608.js │ │ │ │ ├── nfts.html.d9599439.js │ │ │ │ ├── nfts.html.f28f6d5c.js │ │ │ │ ├── nfts.html.f3815a10.js │ │ │ │ ├── nfts.html.fdb7230c.js │ │ │ │ ├── offline-transactions.html.0ba69adc.js │ │ │ │ ├── offline-transactions.html.0bf4dc0d.js │ │ │ │ ├── offline-transactions.html.1cebdb75.js │ │ │ │ ├── offline-transactions.html.1d7f75c0.js │ │ │ │ ├── offline-transactions.html.269432a1.js │ │ │ │ ├── offline-transactions.html.26de122f.js │ │ │ │ ├── offline-transactions.html.328bb708.js │ │ │ │ ├── offline-transactions.html.411f2083.js │ │ │ │ ├── offline-transactions.html.5d4f9b52.js │ │ │ │ ├── offline-transactions.html.62c2bb84.js │ │ │ │ ├── offline-transactions.html.694e5a9c.js │ │ │ │ ├── offline-transactions.html.6bb56d3c.js │ │ │ │ ├── offline-transactions.html.7dc3f34e.js │ │ │ │ ├── offline-transactions.html.805d36b8.js │ │ │ │ ├── offline-transactions.html.81a50c51.js │ │ │ │ ├── offline-transactions.html.8d1d2de8.js │ │ │ │ ├── offline-transactions.html.93364c85.js │ │ │ │ ├── offline-transactions.html.9b30c0d6.js │ │ │ │ ├── offline-transactions.html.9e334e4b.js │ │ │ │ ├── offline-transactions.html.a7cb4369.js │ │ │ │ ├── offline-transactions.html.afa81fed.js │ │ │ │ ├── offline-transactions.html.c95a953c.js │ │ │ │ ├── offline-transactions.html.cd22f1cb.js │ │ │ │ ├── offline-transactions.html.cff454eb.js │ │ │ │ ├── offline-transactions.html.d0d3f6bf.js │ │ │ │ ├── offline-transactions.html.d4e0be3d.js │ │ │ │ ├── offline-transactions.html.dad115e4.js │ │ │ │ ├── offline-transactions.html.ef38def6.js │ │ │ │ ├── pdas.html.02bdc9f3.js │ │ │ │ ├── pdas.html.08e26e07.js │ │ │ │ ├── pdas.html.19706e9c.js │ │ │ │ ├── pdas.html.1bf322c2.js │ │ │ │ ├── pdas.html.27a51730.js │ │ │ │ ├── pdas.html.2b207b9f.js │ │ │ │ ├── pdas.html.35c6152a.js │ │ │ │ ├── pdas.html.360db77f.js │ │ │ │ ├── pdas.html.3b9289a8.js │ │ │ │ ├── pdas.html.4a946dac.js │ │ │ │ ├── pdas.html.56ea1967.js │ │ │ │ ├── pdas.html.580eb019.js │ │ │ │ ├── pdas.html.6cdffc98.js │ │ │ │ ├── pdas.html.6d743213.js │ │ │ │ ├── pdas.html.6fd7b3e7.js │ │ │ │ ├── pdas.html.77efba8f.js │ │ │ │ ├── pdas.html.8ac3fb57.js │ │ │ │ ├── pdas.html.9841e8a1.js │ │ │ │ ├── pdas.html.a117908d.js │ │ │ │ ├── pdas.html.a4275910.js │ │ │ │ ├── pdas.html.b3879735.js │ │ │ │ ├── pdas.html.cf2a36cd.js │ │ │ │ ├── pdas.html.da9ce228.js │ │ │ │ ├── pdas.html.dd1806d8.js │ │ │ │ ├── pdas.html.e5cff056.js │ │ │ │ ├── pdas.html.ea02eb75.js │ │ │ │ ├── pdas.html.eaddc26f.js │ │ │ │ ├── pdas.html.eca9a894.js │ │ │ │ ├── porting-anchor-to-unity.html.29a097d5.js │ │ │ │ ├── porting-anchor-to-unity.html.2d7da15e.js │ │ │ │ ├── porting-anchor-to-unity.html.8ad16b00.js │ │ │ │ ├── porting-anchor-to-unity.html.a3b74cb4.js │ │ │ │ ├── porting-anchor-to-unity.html.a9555d2b.js │ │ │ │ ├── porting-anchor-to-unity.html.d93d3149.js │ │ │ │ ├── programs.html.01e229c2.js │ │ │ │ ├── programs.html.072a911a.js │ │ │ │ ├── programs.html.09c93a73.js │ │ │ │ ├── programs.html.11032af6.js │ │ │ │ ├── programs.html.12722776.js │ │ │ │ ├── programs.html.135d8a1e.js │ │ │ │ ├── programs.html.23836cb0.js │ │ │ │ ├── programs.html.23a73b36.js │ │ │ │ ├── programs.html.2a06f575.js │ │ │ │ ├── programs.html.2d618e60.js │ │ │ │ ├── programs.html.340e959e.js │ │ │ │ ├── programs.html.34dde9fb.js │ │ │ │ ├── programs.html.39ac6b79.js │ │ │ │ ├── programs.html.3c48317e.js │ │ │ │ ├── programs.html.3d46bb1d.js │ │ │ │ ├── programs.html.3f12c384.js │ │ │ │ ├── programs.html.48b1db94.js │ │ │ │ ├── programs.html.4d7d8768.js │ │ │ │ ├── programs.html.55412d52.js │ │ │ │ ├── programs.html.555fde3c.js │ │ │ │ ├── programs.html.5860dd01.js │ │ │ │ ├── programs.html.602c11ba.js │ │ │ │ ├── programs.html.6801ed73.js │ │ │ │ ├── programs.html.6895a158.js │ │ │ │ ├── programs.html.6d41107a.js │ │ │ │ ├── programs.html.6e6eaba0.js │ │ │ │ ├── programs.html.740744ad.js │ │ │ │ ├── programs.html.7c34ad36.js │ │ │ │ ├── programs.html.7db6ff71.js │ │ │ │ ├── programs.html.90aa36af.js │ │ │ │ ├── programs.html.96701793.js │ │ │ │ ├── programs.html.96b262ce.js │ │ │ │ ├── programs.html.98e92214.js │ │ │ │ ├── programs.html.98fb8b49.js │ │ │ │ ├── programs.html.9cdb4de3.js │ │ │ │ ├── programs.html.a2b54a7a.js │ │ │ │ ├── programs.html.a673792c.js │ │ │ │ ├── programs.html.b67b45cc.js │ │ │ │ ├── programs.html.bc91a8b3.js │ │ │ │ ├── programs.html.c4b45e07.js │ │ │ │ ├── programs.html.d01e378b.js │ │ │ │ ├── programs.html.d0219ea7.js │ │ │ │ ├── programs.html.d21ae222.js │ │ │ │ ├── programs.html.d77781f0.js │ │ │ │ ├── programs.html.d7e559f7.js │ │ │ │ ├── programs.html.db98f647.js │ │ │ │ ├── programs.html.dd60d7aa.js │ │ │ │ ├── programs.html.dec531fb.js │ │ │ │ ├── programs.html.e8e9b38e.js │ │ │ │ ├── programs.html.ea9dd7e3.js │ │ │ │ ├── programs.html.ebf949b0.js │ │ │ │ ├── programs.html.ee69815a.js │ │ │ │ ├── programs.html.f54b94ed.js │ │ │ │ ├── programs.html.f73d3347.js │ │ │ │ ├── programs.html.fb2104eb.js │ │ │ │ ├── programs.html.fcfb4c07.js │ │ │ │ ├── retrying-transactions.html.63745293.js │ │ │ │ ├── retrying-transactions.html.8880b234.js │ │ │ │ ├── saving-game-state.html.0656b997.js │ │ │ │ ├── saving-game-state.html.2ee97311.js │ │ │ │ ├── saving-game-state.html.40bb41f5.js │ │ │ │ ├── saving-game-state.html.9d6e5e66.js │ │ │ │ ├── saving-game-state.html.aa5750ab.js │ │ │ │ ├── saving-game-state.html.e30bfd02.js │ │ │ │ ├── serialization.html.0d68a263.js │ │ │ │ ├── serialization.html.0fd086ee.js │ │ │ │ ├── serialization.html.279a312f.js │ │ │ │ ├── serialization.html.32c33a1b.js │ │ │ │ ├── serialization.html.4b397ef0.js │ │ │ │ ├── serialization.html.4cfc0d5a.js │ │ │ │ ├── serialization.html.6a6635c1.js │ │ │ │ ├── serialization.html.7c84274e.js │ │ │ │ ├── serialization.html.7fc385dd.js │ │ │ │ ├── serialization.html.89a2791f.js │ │ │ │ ├── serialization.html.8a29cfeb.js │ │ │ │ ├── serialization.html.932862af.js │ │ │ │ ├── serialization.html.99337bc6.js │ │ │ │ ├── serialization.html.a08f50dc.js │ │ │ │ ├── serialization.html.a34c46cf.js │ │ │ │ ├── serialization.html.a93f580e.js │ │ │ │ ├── serialization.html.aa4dde2f.js │ │ │ │ ├── serialization.html.b36b4ad5.js │ │ │ │ ├── serialization.html.b936ab13.js │ │ │ │ ├── serialization.html.baac0ece.js │ │ │ │ ├── serialization.html.bb0b6d3d.js │ │ │ │ ├── serialization.html.cd6e6685.js │ │ │ │ ├── serialization.html.d1ade7c6.js │ │ │ │ ├── serialization.html.d1b35c96.js │ │ │ │ ├── serialization.html.d3083af5.js │ │ │ │ ├── serialization.html.f6d36f31.js │ │ │ │ ├── serialization.html.fc2b2085.js │ │ │ │ ├── serialization.html.ff6ce54c.js │ │ │ │ ├── staking.html.04e151a8.js │ │ │ │ ├── staking.html.0e9ae4bd.js │ │ │ │ ├── staking.html.0fd3c3b6.js │ │ │ │ ├── staking.html.122e3dd7.js │ │ │ │ ├── staking.html.192ee479.js │ │ │ │ ├── staking.html.420a515f.js │ │ │ │ ├── staking.html.48d1bd77.js │ │ │ │ ├── staking.html.4f958a15.js │ │ │ │ ├── staking.html.59211856.js │ │ │ │ ├── staking.html.5cf7a6ff.js │ │ │ │ ├── staking.html.6485c86f.js │ │ │ │ ├── staking.html.65c2cb9f.js │ │ │ │ ├── staking.html.6dbe22bd.js │ │ │ │ ├── staking.html.76101920.js │ │ │ │ ├── staking.html.79740434.js │ │ │ │ ├── staking.html.7be45709.js │ │ │ │ ├── staking.html.87a92c5a.js │ │ │ │ ├── staking.html.8f95d604.js │ │ │ │ ├── staking.html.8fb2ba56.js │ │ │ │ ├── staking.html.9a3a894a.js │ │ │ │ ├── staking.html.9da955fb.js │ │ │ │ ├── staking.html.a5ae14b2.js │ │ │ │ ├── staking.html.ad2f2638.js │ │ │ │ ├── staking.html.bbc62dff.js │ │ │ │ ├── staking.html.bbf4c1ac.js │ │ │ │ ├── staking.html.cffbd136.js │ │ │ │ ├── staking.html.e8c26eca.js │ │ │ │ ├── staking.html.f374e09a.js │ │ │ │ ├── store-sol-in-pda.html.11610e9c.js │ │ │ │ ├── store-sol-in-pda.html.4ff617de.js │ │ │ │ ├── store-sol-in-pda.html.9ee3497a.js │ │ │ │ ├── store-sol-in-pda.html.c79c00ec.js │ │ │ │ ├── store-sol-in-pda.html.e343d4f5.js │ │ │ │ ├── store-sol-in-pda.html.e4ee6008.js │ │ │ │ ├── style.fecd2c41.css │ │ │ │ ├── token.html.060a50ce.js │ │ │ │ ├── token.html.0e5aea93.js │ │ │ │ ├── token.html.12804e59.js │ │ │ │ ├── token.html.1da2f0eb.js │ │ │ │ ├── token.html.36202d18.js │ │ │ │ ├── token.html.3affc20f.js │ │ │ │ ├── token.html.43db4402.js │ │ │ │ ├── token.html.495dbb1a.js │ │ │ │ ├── token.html.59c78a7f.js │ │ │ │ ├── token.html.5b1ae1a2.js │ │ │ │ ├── token.html.64ba1d3c.js │ │ │ │ ├── token.html.77adbbb4.js │ │ │ │ ├── token.html.7f6e6e11.js │ │ │ │ ├── token.html.858f2429.js │ │ │ │ ├── token.html.87c9f9ba.js │ │ │ │ ├── token.html.997564bc.js │ │ │ │ ├── token.html.a4239a10.js │ │ │ │ ├── token.html.abb20884.js │ │ │ │ ├── token.html.b6c1e5ff.js │ │ │ │ ├── token.html.c555b525.js │ │ │ │ ├── token.html.c6b0e0c2.js │ │ │ │ ├── token.html.cb53fbdc.js │ │ │ │ ├── token.html.de032bea.js │ │ │ │ ├── token.html.e135cbcd.js │ │ │ │ ├── token.html.e2d8e013.js │ │ │ │ ├── token.html.ea1f1398.js │ │ │ │ ├── token.html.edd7bd6b.js │ │ │ │ ├── token.html.edf00ffd.js │ │ │ │ ├── transactions.html.0168eb8a.js │ │ │ │ ├── transactions.html.0b44a37d.js │ │ │ │ ├── transactions.html.188c913a.js │ │ │ │ ├── transactions.html.1cb6f901.js │ │ │ │ ├── transactions.html.263aeafa.js │ │ │ │ ├── transactions.html.46bc8b92.js │ │ │ │ ├── transactions.html.48ea2bf1.js │ │ │ │ ├── transactions.html.4904b5fe.js │ │ │ │ ├── transactions.html.50802ba1.js │ │ │ │ ├── transactions.html.5f4184a8.js │ │ │ │ ├── transactions.html.63c9ce66.js │ │ │ │ ├── transactions.html.73b8d7c4.js │ │ │ │ ├── transactions.html.74d43318.js │ │ │ │ ├── transactions.html.8e008dcb.js │ │ │ │ ├── transactions.html.93abdb49.js │ │ │ │ ├── transactions.html.999eb3d9.js │ │ │ │ ├── transactions.html.a1a988c9.js │ │ │ │ ├── transactions.html.a94c32b0.js │ │ │ │ ├── transactions.html.aceea138.js │ │ │ │ ├── transactions.html.b7388dfe.js │ │ │ │ ├── transactions.html.ba8c17fa.js │ │ │ │ ├── transactions.html.bc7f0379.js │ │ │ │ ├── transactions.html.cfd147cc.js │ │ │ │ ├── transactions.html.e6d9a389.js │ │ │ │ ├── transactions.html.ee5db7dc.js │ │ │ │ ├── transactions.html.f33ee4e9.js │ │ │ │ ├── transactions.html.f505a02d.js │ │ │ │ ├── transactions.html.f5f36a28.js │ │ │ │ ├── versioned-transactions.html.027ceb3d.js │ │ │ │ ├── versioned-transactions.html.1e1e264b.js │ │ │ │ ├── versioned-transactions.html.1e457979.js │ │ │ │ ├── versioned-transactions.html.20e4c983.js │ │ │ │ ├── versioned-transactions.html.5b1ec8d4.js │ │ │ │ ├── versioned-transactions.html.7131c1ef.js │ │ │ │ ├── versioned-transactions.html.7972f188.js │ │ │ │ ├── versioned-transactions.html.82642eca.js │ │ │ │ ├── versioned-transactions.html.8ddb12df.js │ │ │ │ ├── versioned-transactions.html.8ea1a104.js │ │ │ │ ├── versioned-transactions.html.acaac8aa.js │ │ │ │ ├── versioned-transactions.html.cb88ab6b.js │ │ │ │ ├── versioned-transactions.html.dc527468.js │ │ │ │ ├── versioned-transactions.html.dd6b2982.js │ │ │ │ ├── versioned-transactions.html.e1209342.js │ │ │ │ └── versioned-transactions.html.f7668ac4.js │ │ │ ├── core-concepts/ │ │ │ │ ├── accounts.html │ │ │ │ ├── cpi.html │ │ │ │ ├── pdas.html │ │ │ │ ├── programs.html │ │ │ │ └── transactions.html │ │ │ ├── de/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── retrying-transactions.html │ │ │ │ │ └── serialization.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── es/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ └── serialization.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── fil/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── cpi.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── gaming/ │ │ │ │ │ ├── auto-approve.html │ │ │ │ │ ├── distribution.html │ │ │ │ │ ├── energy-system.html │ │ │ │ │ ├── game-examples.html │ │ │ │ │ ├── game-sdks.html │ │ │ │ │ ├── hello-world.html │ │ │ │ │ ├── interact-with-tokens.html │ │ │ │ │ ├── intro.html │ │ │ │ │ ├── nfts-in-games.html │ │ │ │ │ ├── porting-anchor-to-unity.html │ │ │ │ │ ├── saving-game-state.html │ │ │ │ │ └── store-sol-in-pda.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── serialization.html │ │ │ │ │ └── versioned-transactions.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── fr/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── cpi.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── gaming/ │ │ │ │ │ ├── auto-approve.html │ │ │ │ │ ├── distribution.html │ │ │ │ │ ├── energy-system.html │ │ │ │ │ ├── game-examples.html │ │ │ │ │ ├── game-sdks.html │ │ │ │ │ ├── hello-world.html │ │ │ │ │ ├── interact-with-tokens.html │ │ │ │ │ ├── intro.html │ │ │ │ │ ├── nfts-in-games.html │ │ │ │ │ ├── porting-anchor-to-unity.html │ │ │ │ │ ├── saving-game-state.html │ │ │ │ │ └── store-sol-in-pda.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── serialization.html │ │ │ │ │ └── versioned-transactions.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── gaming/ │ │ │ │ ├── auto-approve.html │ │ │ │ ├── distribution.html │ │ │ │ ├── energy-system.html │ │ │ │ ├── game-examples.html │ │ │ │ ├── game-sdks.html │ │ │ │ ├── hello-world.html │ │ │ │ ├── interact-with-tokens.html │ │ │ │ ├── intro.html │ │ │ │ ├── nfts-in-games.html │ │ │ │ ├── porting-anchor-to-unity.html │ │ │ │ ├── saving-game-state.html │ │ │ │ └── store-sol-in-pda.html │ │ │ ├── getting-started/ │ │ │ │ └── installation.html │ │ │ ├── guides/ │ │ │ │ ├── account-maps.html │ │ │ │ ├── data-migration.html │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ ├── feature-parity-testing.html │ │ │ │ ├── get-program-accounts.html │ │ │ │ ├── serialization.html │ │ │ │ └── versioned-transactions.html │ │ │ ├── id/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ └── serialization.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── index.html │ │ │ ├── ja/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── cpi.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── serialization.html │ │ │ │ │ └── versioned-transactions.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── kr/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ └── serialization.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── pt/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── cpi.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── serialization.html │ │ │ │ │ └── versioned-transactions.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── th/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── serialization.html │ │ │ │ │ └── versioned-transactions.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── tr/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ └── serialization.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── vi/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ └── serialization.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ ├── zh/ │ │ │ │ ├── core-concepts/ │ │ │ │ │ ├── accounts.html │ │ │ │ │ ├── pdas.html │ │ │ │ │ ├── programs.html │ │ │ │ │ └── transactions.html │ │ │ │ ├── getting-started/ │ │ │ │ │ └── installation.html │ │ │ │ ├── guides/ │ │ │ │ │ ├── account-maps.html │ │ │ │ │ ├── data-migration.html │ │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ │ ├── feature-parity-testing.html │ │ │ │ │ ├── get-program-accounts.html │ │ │ │ │ ├── serialization.html │ │ │ │ │ └── versioned-transactions.html │ │ │ │ ├── index.html │ │ │ │ └── references/ │ │ │ │ ├── accounts.html │ │ │ │ ├── basic-transactions.html │ │ │ │ ├── keypairs-and-wallets.html │ │ │ │ ├── local-development.html │ │ │ │ ├── name-service.html │ │ │ │ ├── nfts.html │ │ │ │ ├── offline-transactions.html │ │ │ │ ├── programs.html │ │ │ │ ├── staking.html │ │ │ │ └── token.html │ │ │ └── zh_t/ │ │ │ ├── core-concepts/ │ │ │ │ ├── accounts.html │ │ │ │ ├── pdas.html │ │ │ │ ├── programs.html │ │ │ │ └── transactions.html │ │ │ ├── getting-started/ │ │ │ │ └── installation.html │ │ │ ├── guides/ │ │ │ │ ├── account-maps.html │ │ │ │ ├── data-migration.html │ │ │ │ ├── debugging-solana-programs.html │ │ │ │ ├── feature-parity-testing.html │ │ │ │ ├── get-program-accounts.html │ │ │ │ ├── serialization.html │ │ │ │ └── versioned-transactions.html │ │ │ ├── index.html │ │ │ └── references/ │ │ │ ├── accounts.html │ │ │ ├── basic-transactions.html │ │ │ ├── keypairs-and-wallets.html │ │ │ ├── local-development.html │ │ │ ├── name-service.html │ │ │ ├── nfts.html │ │ │ ├── offline-transactions.html │ │ │ ├── programs.html │ │ │ ├── staking.html │ │ │ └── token.html │ │ └── styles/ │ │ └── index.scss │ ├── README.md │ ├── core-concepts/ │ │ ├── accounts.md │ │ ├── cpi.md │ │ ├── pdas.md │ │ ├── programs.md │ │ └── transactions.md │ ├── de/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── retrying-transactions.md │ │ │ └── serialization.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── es/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ └── serialization.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── fil/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── cpi.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── gaming/ │ │ │ ├── auto-approve.md │ │ │ ├── distribution.md │ │ │ ├── energy-system.md │ │ │ ├── game-examples.md │ │ │ ├── game-sdks.md │ │ │ ├── hello-world.md │ │ │ ├── interact-with-tokens.md │ │ │ ├── intro.md │ │ │ ├── nfts-in-games.md │ │ │ ├── porting-anchor-to-unity.md │ │ │ ├── saving-game-state.md │ │ │ └── store-sol-in-pda.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── serialization.md │ │ │ └── versioned-transactions.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── fr/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── cpi.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── gaming/ │ │ │ ├── auto-approve.md │ │ │ ├── distribution.md │ │ │ ├── energy-system.md │ │ │ ├── game-examples.md │ │ │ ├── game-sdks.md │ │ │ ├── hello-world.md │ │ │ ├── interact-with-tokens.md │ │ │ ├── intro.md │ │ │ ├── nfts-in-games.md │ │ │ ├── porting-anchor-to-unity.md │ │ │ ├── saving-game-state.md │ │ │ └── store-sol-in-pda.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── serialization.md │ │ │ └── versioned-transactions.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── gaming/ │ │ ├── auto-approve.md │ │ ├── distribution.md │ │ ├── energy-system.md │ │ ├── game-examples.md │ │ ├── game-sdks.md │ │ ├── hello-world.md │ │ ├── interact-with-tokens.md │ │ ├── intro.md │ │ ├── nfts-in-games.md │ │ ├── porting-anchor-to-unity.md │ │ ├── saving-game-state.md │ │ └── store-sol-in-pda.md │ ├── getting-started/ │ │ └── installation.md │ ├── guides/ │ │ ├── account-maps.md │ │ ├── data-migration.md │ │ ├── debugging-solana-programs.md │ │ ├── feature-parity-testing.md │ │ ├── get-program-accounts.md │ │ ├── serialization.md │ │ └── versioned-transactions.md │ ├── id/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ └── serialization.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── ja/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── cpi.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── serialization.md │ │ │ └── versioned-transactions.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── kr/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ └── serialization.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── pt/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── cpi.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── serialization.md │ │ │ └── versioned-transactions.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── th/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── serialization.md │ │ │ └── versioned-transactions.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── tr/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ └── serialization.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── vi/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ └── serialization.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ ├── zh/ │ │ ├── README.md │ │ ├── core-concepts/ │ │ │ ├── accounts.md │ │ │ ├── pdas.md │ │ │ ├── programs.md │ │ │ └── transactions.md │ │ ├── getting-started/ │ │ │ └── installation.md │ │ ├── guides/ │ │ │ ├── account-maps.md │ │ │ ├── data-migration.md │ │ │ ├── debugging-solana-programs.md │ │ │ ├── feature-parity-testing.md │ │ │ ├── get-program-accounts.md │ │ │ ├── serialization.md │ │ │ └── versioned-transactions.md │ │ └── references/ │ │ ├── accounts.md │ │ ├── basic-transactions.md │ │ ├── keypairs-and-wallets.md │ │ ├── local-development.md │ │ ├── name-service.md │ │ ├── nfts.md │ │ ├── offline-transactions.md │ │ ├── programs.md │ │ ├── staking.md │ │ └── token.md │ └── zh_t/ │ ├── README.md │ ├── core-concepts/ │ │ ├── accounts.md │ │ ├── pdas.md │ │ ├── programs.md │ │ └── transactions.md │ ├── getting-started/ │ │ └── installation.md │ ├── guides/ │ │ ├── account-maps.md │ │ ├── data-migration.md │ │ ├── debugging-solana-programs.md │ │ ├── feature-parity-testing.md │ │ ├── get-program-accounts.md │ │ ├── serialization.md │ │ └── versioned-transactions.md │ └── references/ │ ├── accounts.md │ ├── basic-transactions.md │ ├── keypairs-and-wallets.md │ ├── local-development.md │ ├── name-service.md │ ├── nfts.md │ ├── offline-transactions.md │ ├── programs.md │ ├── staking.md │ └── token.md ├── package.json ├── requirements.txt └── vercel.json