├── .gitignore ├── README.md ├── package.json ├── public ├── CNAME ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.test.tsx ├── App.tsx ├── components │ ├── Me.tsx │ ├── Stake.tsx │ ├── common │ │ ├── BootstrapProvider.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Layout.tsx │ │ ├── MyNode.tsx │ │ ├── Notification.tsx │ │ ├── OwnedTokenAccountsSelect.tsx │ │ ├── RegistrarSelect.tsx │ │ ├── Scroll.tsx │ │ ├── VestingAccountsSelect.tsx │ │ └── WalletProvider.tsx │ ├── lockups │ │ ├── NewVesting.tsx │ │ ├── VestingAccountCard.tsx │ │ └── Vestings.tsx │ ├── multisig │ │ └── Multisig.tsx │ └── rewards │ │ ├── ClaimRewardButton.tsx │ │ ├── DropRewardButton.tsx │ │ ├── Rewards.tsx │ │ └── RewardsList.tsx ├── idl │ ├── lockup.ts │ ├── multisig.ts │ └── registry.ts ├── index.css ├── index.tsx ├── pages │ ├── Lockup.tsx │ ├── Multisig.tsx │ └── MyNode.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupTests.ts ├── skin │ └── index.ts ├── store │ ├── actions.ts │ ├── config.ts │ ├── index.ts │ └── reducer.ts └── utils │ ├── idl.ts │ ├── loader.ts │ ├── lockup.ts │ ├── registry.ts │ └── tokens.tsx ├── tsconfig.json ├── types └── buffer-layout │ └── index.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | stake.projectserum.com -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Me.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/Me.tsx -------------------------------------------------------------------------------- /src/components/Stake.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/Stake.tsx -------------------------------------------------------------------------------- /src/components/common/BootstrapProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/BootstrapProvider.tsx -------------------------------------------------------------------------------- /src/components/common/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/Footer.tsx -------------------------------------------------------------------------------- /src/components/common/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/Header.tsx -------------------------------------------------------------------------------- /src/components/common/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/Layout.tsx -------------------------------------------------------------------------------- /src/components/common/MyNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/MyNode.tsx -------------------------------------------------------------------------------- /src/components/common/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/Notification.tsx -------------------------------------------------------------------------------- /src/components/common/OwnedTokenAccountsSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/OwnedTokenAccountsSelect.tsx -------------------------------------------------------------------------------- /src/components/common/RegistrarSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/RegistrarSelect.tsx -------------------------------------------------------------------------------- /src/components/common/Scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/Scroll.tsx -------------------------------------------------------------------------------- /src/components/common/VestingAccountsSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/VestingAccountsSelect.tsx -------------------------------------------------------------------------------- /src/components/common/WalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/common/WalletProvider.tsx -------------------------------------------------------------------------------- /src/components/lockups/NewVesting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/lockups/NewVesting.tsx -------------------------------------------------------------------------------- /src/components/lockups/VestingAccountCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/lockups/VestingAccountCard.tsx -------------------------------------------------------------------------------- /src/components/lockups/Vestings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/lockups/Vestings.tsx -------------------------------------------------------------------------------- /src/components/multisig/Multisig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/multisig/Multisig.tsx -------------------------------------------------------------------------------- /src/components/rewards/ClaimRewardButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/rewards/ClaimRewardButton.tsx -------------------------------------------------------------------------------- /src/components/rewards/DropRewardButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/rewards/DropRewardButton.tsx -------------------------------------------------------------------------------- /src/components/rewards/Rewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/rewards/Rewards.tsx -------------------------------------------------------------------------------- /src/components/rewards/RewardsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/components/rewards/RewardsList.tsx -------------------------------------------------------------------------------- /src/idl/lockup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/idl/lockup.ts -------------------------------------------------------------------------------- /src/idl/multisig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/idl/multisig.ts -------------------------------------------------------------------------------- /src/idl/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/idl/registry.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Lockup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/pages/Lockup.tsx -------------------------------------------------------------------------------- /src/pages/Multisig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/pages/Multisig.tsx -------------------------------------------------------------------------------- /src/pages/MyNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/pages/MyNode.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/skin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/skin/index.ts -------------------------------------------------------------------------------- /src/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/store/actions.ts -------------------------------------------------------------------------------- /src/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/store/config.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/store/reducer.ts -------------------------------------------------------------------------------- /src/utils/idl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/utils/idl.ts -------------------------------------------------------------------------------- /src/utils/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/utils/loader.ts -------------------------------------------------------------------------------- /src/utils/lockup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/utils/lockup.ts -------------------------------------------------------------------------------- /src/utils/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/utils/registry.ts -------------------------------------------------------------------------------- /src/utils/tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/src/utils/tokens.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/buffer-layout/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/types/buffer-layout/index.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/stake-ui/HEAD/yarn.lock --------------------------------------------------------------------------------