├── .codesandbox └── workspace.json ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public └── index.html ├── src ├── App.tsx ├── components │ ├── Button │ │ └── index.tsx │ ├── Logs │ │ ├── Log.tsx │ │ └── index.tsx │ ├── NoProvider │ │ └── index.tsx │ ├── Sidebar │ │ └── index.tsx │ └── index.tsx ├── constants.ts ├── index.tsx ├── react-app-env.d.ts ├── types.ts └── utils │ ├── createAddressLookupTable.ts │ ├── createTransferTransaction.ts │ ├── createTransferTransactionV0.ts │ ├── extendAddressLookupTable.ts │ ├── getProvider.ts │ ├── hexToRGB.ts │ ├── index.ts │ ├── pollSignatureStatus.ts │ ├── signAllTransactions.ts │ ├── signAndSendTransaction.ts │ ├── signAndSendTransactionV0WithLookupTable.ts │ ├── signMessage.ts │ └── signTransaction.ts ├── tsconfig.json └── yarn.lock /.codesandbox/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/.codesandbox/workspace.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Logs/Log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/components/Logs/Log.tsx -------------------------------------------------------------------------------- /src/components/Logs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/components/Logs/index.tsx -------------------------------------------------------------------------------- /src/components/NoProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/components/NoProvider/index.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/components/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/createAddressLookupTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/createAddressLookupTable.ts -------------------------------------------------------------------------------- /src/utils/createTransferTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/createTransferTransaction.ts -------------------------------------------------------------------------------- /src/utils/createTransferTransactionV0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/createTransferTransactionV0.ts -------------------------------------------------------------------------------- /src/utils/extendAddressLookupTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/extendAddressLookupTable.ts -------------------------------------------------------------------------------- /src/utils/getProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/getProvider.ts -------------------------------------------------------------------------------- /src/utils/hexToRGB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/hexToRGB.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/pollSignatureStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/pollSignatureStatus.ts -------------------------------------------------------------------------------- /src/utils/signAllTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/signAllTransactions.ts -------------------------------------------------------------------------------- /src/utils/signAndSendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/signAndSendTransaction.ts -------------------------------------------------------------------------------- /src/utils/signAndSendTransactionV0WithLookupTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/signAndSendTransactionV0WithLookupTable.ts -------------------------------------------------------------------------------- /src/utils/signMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/signMessage.ts -------------------------------------------------------------------------------- /src/utils/signTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/src/utils/signTransaction.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom/sandbox/HEAD/yarn.lock --------------------------------------------------------------------------------