├── .eslintrc.yaml ├── .github └── workflows │ ├── build.yml │ ├── deploy.yml │ ├── frontend-cypress-tests.yml │ └── wallet-deploy.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── Anchor.toml ├── CNAME ├── CODE_OF_CONDUCT.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── _config.yml ├── docs └── cryptid_overview.svg ├── etc └── publish-all.sh ├── frontend-tests ├── cypress.json ├── cypress │ ├── downloads │ │ └── cryptid.bak │ ├── integration │ │ ├── specs │ │ │ └── test.feature │ │ └── step_definitions │ │ │ ├── common-steps.spec.ts │ │ │ └── src │ │ │ └── pages │ │ │ ├── DemoHome.page.ts │ │ │ ├── Elements.ts │ │ │ └── Page.ts │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.js │ │ ├── index.d.ts │ │ └── index.js │ ├── tsconfig.json │ ├── types.d.ts │ ├── videos │ │ └── specs │ │ │ └── test.feature.mp4 │ └── webpack.config.js ├── package.json └── yarn.lock ├── migrations └── deploy.ts ├── package.json ├── packages ├── client │ ├── cli │ │ ├── .gitignore │ │ ├── .mocharc.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── dev │ │ │ ├── dev.cmd │ │ │ ├── run │ │ │ └── run.cmd │ │ ├── package.json │ │ ├── src │ │ │ ├── commands │ │ │ │ ├── accounts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── set.ts │ │ │ │ ├── address.ts │ │ │ │ ├── airdrop.ts │ │ │ │ ├── alias.ts │ │ │ │ ├── balance.ts │ │ │ │ ├── base.ts │ │ │ │ ├── config │ │ │ │ │ ├── index.ts │ │ │ │ │ └── set.ts │ │ │ │ ├── controller │ │ │ │ │ └── index.ts │ │ │ │ ├── document.ts │ │ │ │ ├── init.ts │ │ │ │ ├── key │ │ │ │ │ ├── add.ts │ │ │ │ │ ├── remove.ts │ │ │ │ │ └── show.ts │ │ │ │ ├── token │ │ │ │ │ ├── balance.ts │ │ │ │ │ ├── show.ts │ │ │ │ │ └── transfer.ts │ │ │ │ └── transfer.ts │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── flags.ts │ │ │ │ └── solana.ts │ │ │ └── service │ │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ │ ├── cryptid │ │ │ │ └── index.ts │ │ │ │ └── did.ts │ │ ├── test │ │ │ ├── commands │ │ │ │ └── hello │ │ │ │ │ ├── index.test.ts │ │ │ │ │ └── world.test.ts │ │ │ ├── helpers │ │ │ │ └── init.js │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── core │ │ ├── package.json │ │ ├── src │ │ │ ├── api │ │ │ │ ├── abstractCryptidClient.ts │ │ │ │ ├── controlledCryptidClient.ts │ │ │ │ ├── cryptidBuilder.ts │ │ │ │ ├── cryptidClient.ts │ │ │ │ ├── simpleCryptidClient.ts │ │ │ │ └── unauthorizedCryptidClient.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── CryptidAccountDetails.ts │ │ │ │ ├── CryptidTransaction.ts │ │ │ │ ├── Middleware.ts │ │ │ │ ├── cryptid.ts │ │ │ │ ├── crypto.ts │ │ │ │ └── did.ts │ │ │ ├── service │ │ │ │ ├── cryptid.ts │ │ │ │ └── middlewareRegistry.ts │ │ │ ├── types.ts │ │ │ └── types │ │ │ │ ├── cryptid.ts │ │ │ │ ├── crypto.ts │ │ │ │ ├── lang.ts │ │ │ │ ├── middleware.ts │ │ │ │ └── solana.ts │ │ └── tsconfig.json │ ├── cryptid │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── idl │ │ ├── package.json │ │ ├── src │ │ │ ├── check_did.ts │ │ │ ├── check_pass.ts │ │ │ ├── check_recipient.ts │ │ │ ├── cryptid.ts │ │ │ ├── index.ts │ │ │ ├── superuser_check_signer.ts │ │ │ └── time_delay.ts │ │ └── tsconfig.json │ └── middleware │ │ ├── checkDid │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ │ ├── checkPass │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ │ ├── checkRecipient │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ │ ├── superuserCheckSigner │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ │ └── timeDelay │ │ ├── package.json │ │ ├── src │ │ └── index.ts │ │ └── tsconfig.json └── tests │ ├── fixtures │ ├── sol_did_3.1.1.so │ └── solana_gateway_program.so │ ├── package.json │ ├── src │ ├── close.ts │ ├── controller.ts │ ├── create.ts │ ├── directExecute.ts │ ├── extend.ts │ ├── middleware.ts │ ├── middleware │ │ ├── chaining.ts │ │ ├── checkDid.ts │ │ ├── checkPass.ts │ │ ├── checkRecipient.ts │ │ ├── superuserCheckSigner.ts │ │ └── timeDelay.ts │ ├── proposeExecute.ts │ ├── transfers.ts │ └── util │ │ ├── anchorUtils.ts │ │ ├── constants.ts │ │ ├── cryptid.ts │ │ ├── did.ts │ │ └── gatekeeperUtils.ts │ └── tsconfig.json ├── programs ├── cryptid │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ ├── error.rs │ │ ├── instructions │ │ ├── approve_execution.rs │ │ ├── close_transaction.rs │ │ ├── create_cryptid_account.rs │ │ ├── direct_execute.rs │ │ ├── execute_transaction.rs │ │ ├── extend_transaction.rs │ │ ├── mod.rs │ │ ├── propose_transaction.rs │ │ ├── superuser_approve_execution.rs │ │ └── util.rs │ │ ├── lib.rs │ │ ├── state │ │ ├── abbreviated_account_meta.rs │ │ ├── abbreviated_instruction_data.rs │ │ ├── account_meta_props.rs │ │ ├── cryptid_account.rs │ │ ├── did_reference.rs │ │ ├── instruction_size.rs │ │ ├── mod.rs │ │ ├── transaction_account.rs │ │ └── transaction_state.rs │ │ └── util │ │ ├── cpi.rs │ │ ├── mod.rs │ │ └── seeder.rs └── middleware │ ├── check_did │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ └── lib.rs │ ├── check_pass │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ └── lib.rs │ ├── check_recipient │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ └── lib.rs │ ├── superuser_check_signer │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ │ └── lib.rs │ └── time_delay │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ └── lib.rs ├── tsconfig.json ├── wallet ├── .cert │ ├── cert.pem │ └── key.pem ├── .editorconfig ├── .env.development ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── craco.config.js ├── etc │ └── deploy │ │ ├── create-stack.sh │ │ ├── deploy-site.sh │ │ └── secure-cloudfront-s3-website.yml ├── extension │ └── src │ │ ├── background.js │ │ ├── contentscript.js │ │ ├── manifest.json │ │ ├── script.js │ │ ├── sollet128.png │ │ ├── sollet_screenshot.png │ │ └── sollet_screenshot_1280x800.png ├── package.json ├── public │ ├── CNAME │ ├── civic_monogram.png │ ├── favicon.ico │ ├── index.html │ ├── logo300.png │ ├── logo600.png │ ├── manifest.json │ ├── robots.txt │ ├── title.png │ └── title.webp ├── src │ ├── App.test.js │ ├── App.tsx │ ├── components │ │ ├── AddAccountDialog.js │ │ ├── AddCustomClusterDialog.js │ │ ├── AddTokenDialog.tsx │ │ ├── AddressLink.tsx │ │ ├── BalancesList.tsx │ │ ├── CloseTokenAccountButton.js │ │ ├── ConnectionIcon.js │ │ ├── ConnectionsList.js │ │ ├── CopyableAddress.tsx │ │ ├── CopyableDisplay.tsx │ │ ├── Cryptid │ │ │ ├── AddKeyOrCryptidAccountModal.tsx │ │ │ ├── AliasAvatar.tsx │ │ │ ├── ControllerList.tsx │ │ │ ├── CryptidDetails.tsx │ │ │ ├── CryptidSummary.tsx │ │ │ ├── CryptidTypeSelector.tsx │ │ │ └── KeyList.tsx │ │ ├── DeleteMnemonicDialog.js │ │ ├── DepositDialog.tsx │ │ ├── DialogForm.tsx │ │ ├── EditAccountNameDialog.js │ │ ├── ExportAccountDialog.js │ │ ├── LoadingIndicator.js │ │ ├── NavigationFrame.tsx │ │ ├── SendDialog.tsx │ │ ├── SignFormContent.js │ │ ├── SignTransactionFormContent.js │ │ ├── SolanaIcon.tsx │ │ ├── TokenIcon.tsx │ │ ├── TokenInfoDialog.tsx │ │ ├── Wallet │ │ │ ├── WalletAvatar.tsx │ │ │ ├── WalletList.tsx │ │ │ └── WalletList2.tsx │ │ ├── balances │ │ │ ├── BalanceListItemDetails.tsx │ │ │ ├── BalanceListItemView.tsx │ │ │ ├── BalanceListView.tsx │ │ │ ├── CryptidButton.tsx │ │ │ └── TokenButtons.tsx │ │ ├── instructions │ │ │ ├── layout │ │ │ │ ├── InstructionView.tsx │ │ │ │ └── TransactionView.tsx │ │ │ └── views │ │ │ │ ├── DexInstruction.js │ │ │ │ ├── LabelValue.js │ │ │ │ ├── NewOrder.js │ │ │ │ ├── StakeInstruction.js │ │ │ │ ├── SystemInstruction.js │ │ │ │ ├── TokenInstruction.js │ │ │ │ └── UnknownInstruction.js │ │ ├── modals │ │ │ ├── AddControllerModal.tsx │ │ │ ├── AddMnenomicModal.tsx │ │ │ ├── WalletConnectModal.tsx │ │ │ └── modal.tsx │ │ └── selectors │ │ │ └── IdentitySelector.tsx │ ├── fonts │ │ └── osaka-sans-serif.regular.ttf │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── ConnectionsPage.js │ │ ├── IdentityPage.tsx │ │ ├── LoginPage.js │ │ ├── PopupPage.tsx │ │ ├── ProposedPage.tsx │ │ └── WalletPage.tsx │ ├── pollyfill │ │ └── buffer.js │ ├── react-app-env.d.ts │ ├── serviceWorker.js │ ├── setupTests.js │ ├── utils │ │ ├── Cryptid │ │ │ ├── MetaWalletProvider.tsx │ │ │ ├── cryptid-external-types.ts │ │ │ └── cryptid.tsx │ │ ├── Wallet │ │ │ └── AccountWallet.ts │ │ ├── clusters.ts │ │ ├── config.ts │ │ ├── connected-wallets.tsx │ │ ├── connection.tsx │ │ ├── fetch-loop.ts │ │ ├── markets.ts │ │ ├── name-service │ │ │ └── index.ts │ │ ├── notifications.tsx │ │ ├── page.tsx │ │ ├── tokens │ │ │ ├── data.ts │ │ │ ├── index.ts │ │ │ ├── instructions.ts │ │ │ └── names.tsx │ │ ├── transactions.ts │ │ ├── utils.ts │ │ ├── wallet-seed.ts │ │ └── wallet.tsx │ └── wdyr.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock └── yarn.lock /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/frontend-cypress-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.github/workflows/frontend-cypress-tests.yml -------------------------------------------------------------------------------- /.github/workflows/wallet-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.github/workflows/wallet-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 -------------------------------------------------------------------------------- /Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/Anchor.toml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | cryptid-docs.identity.com -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/cryptid_overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/docs/cryptid_overview.svg -------------------------------------------------------------------------------- /etc/publish-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/etc/publish-all.sh -------------------------------------------------------------------------------- /frontend-tests/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress.json -------------------------------------------------------------------------------- /frontend-tests/cypress/downloads/cryptid.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/downloads/cryptid.bak -------------------------------------------------------------------------------- /frontend-tests/cypress/integration/specs/test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/integration/specs/test.feature -------------------------------------------------------------------------------- /frontend-tests/cypress/integration/step_definitions/common-steps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/integration/step_definitions/common-steps.spec.ts -------------------------------------------------------------------------------- /frontend-tests/cypress/integration/step_definitions/src/pages/DemoHome.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/integration/step_definitions/src/pages/DemoHome.page.ts -------------------------------------------------------------------------------- /frontend-tests/cypress/integration/step_definitions/src/pages/Elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/integration/step_definitions/src/pages/Elements.ts -------------------------------------------------------------------------------- /frontend-tests/cypress/integration/step_definitions/src/pages/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/integration/step_definitions/src/pages/Page.ts -------------------------------------------------------------------------------- /frontend-tests/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/plugins/index.js -------------------------------------------------------------------------------- /frontend-tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/support/commands.js -------------------------------------------------------------------------------- /frontend-tests/cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/support/index.d.ts -------------------------------------------------------------------------------- /frontend-tests/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/support/index.js -------------------------------------------------------------------------------- /frontend-tests/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/tsconfig.json -------------------------------------------------------------------------------- /frontend-tests/cypress/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/types.d.ts -------------------------------------------------------------------------------- /frontend-tests/cypress/videos/specs/test.feature.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/videos/specs/test.feature.mp4 -------------------------------------------------------------------------------- /frontend-tests/cypress/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/cypress/webpack.config.js -------------------------------------------------------------------------------- /frontend-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/package.json -------------------------------------------------------------------------------- /frontend-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/frontend-tests/yarn.lock -------------------------------------------------------------------------------- /migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/migrations/deploy.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/package.json -------------------------------------------------------------------------------- /packages/client/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/.gitignore -------------------------------------------------------------------------------- /packages/client/cli/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/.mocharc.json -------------------------------------------------------------------------------- /packages/client/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/LICENSE -------------------------------------------------------------------------------- /packages/client/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/README.md -------------------------------------------------------------------------------- /packages/client/cli/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/bin/dev -------------------------------------------------------------------------------- /packages/client/cli/bin/dev.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\dev" %* -------------------------------------------------------------------------------- /packages/client/cli/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/bin/run -------------------------------------------------------------------------------- /packages/client/cli/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /packages/client/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/package.json -------------------------------------------------------------------------------- /packages/client/cli/src/commands/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/accounts/index.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/accounts/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/accounts/set.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/address.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/airdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/airdrop.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/alias.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/balance.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/base.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/config/index.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/config/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/config/set.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/controller/index.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/document.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/init.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/key/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/key/add.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/key/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/key/remove.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/key/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/key/show.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/token/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/token/balance.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/token/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/token/show.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/token/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/token/transfer.ts -------------------------------------------------------------------------------- /packages/client/cli/src/commands/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/commands/transfer.ts -------------------------------------------------------------------------------- /packages/client/cli/src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from "@oclif/core"; 2 | -------------------------------------------------------------------------------- /packages/client/cli/src/lib/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/lib/flags.ts -------------------------------------------------------------------------------- /packages/client/cli/src/lib/solana.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/lib/solana.ts -------------------------------------------------------------------------------- /packages/client/cli/src/service/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/service/config/index.ts -------------------------------------------------------------------------------- /packages/client/cli/src/service/cryptid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/service/cryptid/index.ts -------------------------------------------------------------------------------- /packages/client/cli/src/service/did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/src/service/did.ts -------------------------------------------------------------------------------- /packages/client/cli/test/commands/hello/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/test/commands/hello/index.test.ts -------------------------------------------------------------------------------- /packages/client/cli/test/commands/hello/world.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/test/commands/hello/world.test.ts -------------------------------------------------------------------------------- /packages/client/cli/test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/test/helpers/init.js -------------------------------------------------------------------------------- /packages/client/cli/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/test/tsconfig.json -------------------------------------------------------------------------------- /packages/client/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/client/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/package.json -------------------------------------------------------------------------------- /packages/client/core/src/api/abstractCryptidClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/api/abstractCryptidClient.ts -------------------------------------------------------------------------------- /packages/client/core/src/api/controlledCryptidClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/api/controlledCryptidClient.ts -------------------------------------------------------------------------------- /packages/client/core/src/api/cryptidBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/api/cryptidBuilder.ts -------------------------------------------------------------------------------- /packages/client/core/src/api/cryptidClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/api/cryptidClient.ts -------------------------------------------------------------------------------- /packages/client/core/src/api/simpleCryptidClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/api/simpleCryptidClient.ts -------------------------------------------------------------------------------- /packages/client/core/src/api/unauthorizedCryptidClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/api/unauthorizedCryptidClient.ts -------------------------------------------------------------------------------- /packages/client/core/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/constants.ts -------------------------------------------------------------------------------- /packages/client/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/index.ts -------------------------------------------------------------------------------- /packages/client/core/src/lib/CryptidAccountDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/lib/CryptidAccountDetails.ts -------------------------------------------------------------------------------- /packages/client/core/src/lib/CryptidTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/lib/CryptidTransaction.ts -------------------------------------------------------------------------------- /packages/client/core/src/lib/Middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/lib/Middleware.ts -------------------------------------------------------------------------------- /packages/client/core/src/lib/cryptid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/lib/cryptid.ts -------------------------------------------------------------------------------- /packages/client/core/src/lib/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/lib/crypto.ts -------------------------------------------------------------------------------- /packages/client/core/src/lib/did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/lib/did.ts -------------------------------------------------------------------------------- /packages/client/core/src/service/cryptid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/service/cryptid.ts -------------------------------------------------------------------------------- /packages/client/core/src/service/middlewareRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/service/middlewareRegistry.ts -------------------------------------------------------------------------------- /packages/client/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/types.ts -------------------------------------------------------------------------------- /packages/client/core/src/types/cryptid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/types/cryptid.ts -------------------------------------------------------------------------------- /packages/client/core/src/types/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/types/crypto.ts -------------------------------------------------------------------------------- /packages/client/core/src/types/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/types/lang.ts -------------------------------------------------------------------------------- /packages/client/core/src/types/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/types/middleware.ts -------------------------------------------------------------------------------- /packages/client/core/src/types/solana.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/src/types/solana.ts -------------------------------------------------------------------------------- /packages/client/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/core/tsconfig.json -------------------------------------------------------------------------------- /packages/client/cryptid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cryptid/README.md -------------------------------------------------------------------------------- /packages/client/cryptid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cryptid/package.json -------------------------------------------------------------------------------- /packages/client/cryptid/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cryptid/src/index.ts -------------------------------------------------------------------------------- /packages/client/cryptid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/cryptid/tsconfig.json -------------------------------------------------------------------------------- /packages/client/idl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/package.json -------------------------------------------------------------------------------- /packages/client/idl/src/check_did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/check_did.ts -------------------------------------------------------------------------------- /packages/client/idl/src/check_pass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/check_pass.ts -------------------------------------------------------------------------------- /packages/client/idl/src/check_recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/check_recipient.ts -------------------------------------------------------------------------------- /packages/client/idl/src/cryptid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/cryptid.ts -------------------------------------------------------------------------------- /packages/client/idl/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/index.ts -------------------------------------------------------------------------------- /packages/client/idl/src/superuser_check_signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/superuser_check_signer.ts -------------------------------------------------------------------------------- /packages/client/idl/src/time_delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/src/time_delay.ts -------------------------------------------------------------------------------- /packages/client/idl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/idl/tsconfig.json -------------------------------------------------------------------------------- /packages/client/middleware/checkDid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkDid/package.json -------------------------------------------------------------------------------- /packages/client/middleware/checkDid/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkDid/src/index.ts -------------------------------------------------------------------------------- /packages/client/middleware/checkDid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkDid/tsconfig.json -------------------------------------------------------------------------------- /packages/client/middleware/checkPass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkPass/package.json -------------------------------------------------------------------------------- /packages/client/middleware/checkPass/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkPass/src/index.ts -------------------------------------------------------------------------------- /packages/client/middleware/checkPass/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkPass/tsconfig.json -------------------------------------------------------------------------------- /packages/client/middleware/checkRecipient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkRecipient/package.json -------------------------------------------------------------------------------- /packages/client/middleware/checkRecipient/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkRecipient/src/index.ts -------------------------------------------------------------------------------- /packages/client/middleware/checkRecipient/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/checkRecipient/tsconfig.json -------------------------------------------------------------------------------- /packages/client/middleware/superuserCheckSigner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/superuserCheckSigner/package.json -------------------------------------------------------------------------------- /packages/client/middleware/superuserCheckSigner/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/superuserCheckSigner/src/index.ts -------------------------------------------------------------------------------- /packages/client/middleware/superuserCheckSigner/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/superuserCheckSigner/tsconfig.json -------------------------------------------------------------------------------- /packages/client/middleware/timeDelay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/timeDelay/package.json -------------------------------------------------------------------------------- /packages/client/middleware/timeDelay/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/timeDelay/src/index.ts -------------------------------------------------------------------------------- /packages/client/middleware/timeDelay/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/client/middleware/timeDelay/tsconfig.json -------------------------------------------------------------------------------- /packages/tests/fixtures/sol_did_3.1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/fixtures/sol_did_3.1.1.so -------------------------------------------------------------------------------- /packages/tests/fixtures/solana_gateway_program.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/fixtures/solana_gateway_program.so -------------------------------------------------------------------------------- /packages/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/package.json -------------------------------------------------------------------------------- /packages/tests/src/close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/close.ts -------------------------------------------------------------------------------- /packages/tests/src/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/controller.ts -------------------------------------------------------------------------------- /packages/tests/src/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/create.ts -------------------------------------------------------------------------------- /packages/tests/src/directExecute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/directExecute.ts -------------------------------------------------------------------------------- /packages/tests/src/extend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/extend.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware/chaining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware/chaining.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware/checkDid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware/checkDid.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware/checkPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware/checkPass.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware/checkRecipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware/checkRecipient.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware/superuserCheckSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware/superuserCheckSigner.ts -------------------------------------------------------------------------------- /packages/tests/src/middleware/timeDelay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/middleware/timeDelay.ts -------------------------------------------------------------------------------- /packages/tests/src/proposeExecute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/proposeExecute.ts -------------------------------------------------------------------------------- /packages/tests/src/transfers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/transfers.ts -------------------------------------------------------------------------------- /packages/tests/src/util/anchorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/util/anchorUtils.ts -------------------------------------------------------------------------------- /packages/tests/src/util/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/util/constants.ts -------------------------------------------------------------------------------- /packages/tests/src/util/cryptid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/util/cryptid.ts -------------------------------------------------------------------------------- /packages/tests/src/util/did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/util/did.ts -------------------------------------------------------------------------------- /packages/tests/src/util/gatekeeperUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/src/util/gatekeeperUtils.ts -------------------------------------------------------------------------------- /packages/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/packages/tests/tsconfig.json -------------------------------------------------------------------------------- /programs/cryptid/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/Cargo.toml -------------------------------------------------------------------------------- /programs/cryptid/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/Xargo.toml -------------------------------------------------------------------------------- /programs/cryptid/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/error.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/approve_execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/approve_execution.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/close_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/close_transaction.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/create_cryptid_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/create_cryptid_account.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/direct_execute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/direct_execute.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/execute_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/execute_transaction.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/extend_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/extend_transaction.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/mod.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/propose_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/propose_transaction.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/superuser_approve_execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/superuser_approve_execution.rs -------------------------------------------------------------------------------- /programs/cryptid/src/instructions/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/instructions/util.rs -------------------------------------------------------------------------------- /programs/cryptid/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/lib.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/abbreviated_account_meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/abbreviated_account_meta.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/abbreviated_instruction_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/abbreviated_instruction_data.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/account_meta_props.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/account_meta_props.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/cryptid_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/cryptid_account.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/did_reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/did_reference.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/instruction_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/instruction_size.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/mod.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/transaction_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/transaction_account.rs -------------------------------------------------------------------------------- /programs/cryptid/src/state/transaction_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/state/transaction_state.rs -------------------------------------------------------------------------------- /programs/cryptid/src/util/cpi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/util/cpi.rs -------------------------------------------------------------------------------- /programs/cryptid/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/util/mod.rs -------------------------------------------------------------------------------- /programs/cryptid/src/util/seeder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/cryptid/src/util/seeder.rs -------------------------------------------------------------------------------- /programs/middleware/check_did/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_did/Cargo.toml -------------------------------------------------------------------------------- /programs/middleware/check_did/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_did/Xargo.toml -------------------------------------------------------------------------------- /programs/middleware/check_did/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_did/src/lib.rs -------------------------------------------------------------------------------- /programs/middleware/check_pass/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_pass/Cargo.toml -------------------------------------------------------------------------------- /programs/middleware/check_pass/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_pass/Xargo.toml -------------------------------------------------------------------------------- /programs/middleware/check_pass/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_pass/src/lib.rs -------------------------------------------------------------------------------- /programs/middleware/check_recipient/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_recipient/Cargo.toml -------------------------------------------------------------------------------- /programs/middleware/check_recipient/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_recipient/Xargo.toml -------------------------------------------------------------------------------- /programs/middleware/check_recipient/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/check_recipient/src/lib.rs -------------------------------------------------------------------------------- /programs/middleware/superuser_check_signer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/superuser_check_signer/Cargo.toml -------------------------------------------------------------------------------- /programs/middleware/superuser_check_signer/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/superuser_check_signer/Xargo.toml -------------------------------------------------------------------------------- /programs/middleware/superuser_check_signer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/superuser_check_signer/src/lib.rs -------------------------------------------------------------------------------- /programs/middleware/time_delay/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/time_delay/Cargo.toml -------------------------------------------------------------------------------- /programs/middleware/time_delay/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/time_delay/Xargo.toml -------------------------------------------------------------------------------- /programs/middleware/time_delay/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/programs/middleware/time_delay/src/lib.rs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wallet/.cert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/.cert/cert.pem -------------------------------------------------------------------------------- /wallet/.cert/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/.cert/key.pem -------------------------------------------------------------------------------- /wallet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/.editorconfig -------------------------------------------------------------------------------- /wallet/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/.env.development -------------------------------------------------------------------------------- /wallet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/.gitignore -------------------------------------------------------------------------------- /wallet/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/.travis.yml -------------------------------------------------------------------------------- /wallet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/LICENSE -------------------------------------------------------------------------------- /wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/README.md -------------------------------------------------------------------------------- /wallet/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/craco.config.js -------------------------------------------------------------------------------- /wallet/etc/deploy/create-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/etc/deploy/create-stack.sh -------------------------------------------------------------------------------- /wallet/etc/deploy/deploy-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/etc/deploy/deploy-site.sh -------------------------------------------------------------------------------- /wallet/etc/deploy/secure-cloudfront-s3-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/etc/deploy/secure-cloudfront-s3-website.yml -------------------------------------------------------------------------------- /wallet/extension/src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/background.js -------------------------------------------------------------------------------- /wallet/extension/src/contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/contentscript.js -------------------------------------------------------------------------------- /wallet/extension/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/manifest.json -------------------------------------------------------------------------------- /wallet/extension/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/script.js -------------------------------------------------------------------------------- /wallet/extension/src/sollet128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/sollet128.png -------------------------------------------------------------------------------- /wallet/extension/src/sollet_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/sollet_screenshot.png -------------------------------------------------------------------------------- /wallet/extension/src/sollet_screenshot_1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/extension/src/sollet_screenshot_1280x800.png -------------------------------------------------------------------------------- /wallet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/package.json -------------------------------------------------------------------------------- /wallet/public/CNAME: -------------------------------------------------------------------------------- 1 | cryptid.identity.com 2 | -------------------------------------------------------------------------------- /wallet/public/civic_monogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/civic_monogram.png -------------------------------------------------------------------------------- /wallet/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/favicon.ico -------------------------------------------------------------------------------- /wallet/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/index.html -------------------------------------------------------------------------------- /wallet/public/logo300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/logo300.png -------------------------------------------------------------------------------- /wallet/public/logo600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/logo600.png -------------------------------------------------------------------------------- /wallet/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/manifest.json -------------------------------------------------------------------------------- /wallet/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/robots.txt -------------------------------------------------------------------------------- /wallet/public/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/title.png -------------------------------------------------------------------------------- /wallet/public/title.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/public/title.webp -------------------------------------------------------------------------------- /wallet/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/App.test.js -------------------------------------------------------------------------------- /wallet/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/App.tsx -------------------------------------------------------------------------------- /wallet/src/components/AddAccountDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/AddAccountDialog.js -------------------------------------------------------------------------------- /wallet/src/components/AddCustomClusterDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/AddCustomClusterDialog.js -------------------------------------------------------------------------------- /wallet/src/components/AddTokenDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/AddTokenDialog.tsx -------------------------------------------------------------------------------- /wallet/src/components/AddressLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/AddressLink.tsx -------------------------------------------------------------------------------- /wallet/src/components/BalancesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/BalancesList.tsx -------------------------------------------------------------------------------- /wallet/src/components/CloseTokenAccountButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/CloseTokenAccountButton.js -------------------------------------------------------------------------------- /wallet/src/components/ConnectionIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/ConnectionIcon.js -------------------------------------------------------------------------------- /wallet/src/components/ConnectionsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/ConnectionsList.js -------------------------------------------------------------------------------- /wallet/src/components/CopyableAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/CopyableAddress.tsx -------------------------------------------------------------------------------- /wallet/src/components/CopyableDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/CopyableDisplay.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/AddKeyOrCryptidAccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/AddKeyOrCryptidAccountModal.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/AliasAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/AliasAvatar.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/ControllerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/ControllerList.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/CryptidDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/CryptidDetails.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/CryptidSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/CryptidSummary.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/CryptidTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/CryptidTypeSelector.tsx -------------------------------------------------------------------------------- /wallet/src/components/Cryptid/KeyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Cryptid/KeyList.tsx -------------------------------------------------------------------------------- /wallet/src/components/DeleteMnemonicDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/DeleteMnemonicDialog.js -------------------------------------------------------------------------------- /wallet/src/components/DepositDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/DepositDialog.tsx -------------------------------------------------------------------------------- /wallet/src/components/DialogForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/DialogForm.tsx -------------------------------------------------------------------------------- /wallet/src/components/EditAccountNameDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/EditAccountNameDialog.js -------------------------------------------------------------------------------- /wallet/src/components/ExportAccountDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/ExportAccountDialog.js -------------------------------------------------------------------------------- /wallet/src/components/LoadingIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/LoadingIndicator.js -------------------------------------------------------------------------------- /wallet/src/components/NavigationFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/NavigationFrame.tsx -------------------------------------------------------------------------------- /wallet/src/components/SendDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/SendDialog.tsx -------------------------------------------------------------------------------- /wallet/src/components/SignFormContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/SignFormContent.js -------------------------------------------------------------------------------- /wallet/src/components/SignTransactionFormContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/SignTransactionFormContent.js -------------------------------------------------------------------------------- /wallet/src/components/SolanaIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/SolanaIcon.tsx -------------------------------------------------------------------------------- /wallet/src/components/TokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/TokenIcon.tsx -------------------------------------------------------------------------------- /wallet/src/components/TokenInfoDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/TokenInfoDialog.tsx -------------------------------------------------------------------------------- /wallet/src/components/Wallet/WalletAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Wallet/WalletAvatar.tsx -------------------------------------------------------------------------------- /wallet/src/components/Wallet/WalletList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Wallet/WalletList.tsx -------------------------------------------------------------------------------- /wallet/src/components/Wallet/WalletList2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/Wallet/WalletList2.tsx -------------------------------------------------------------------------------- /wallet/src/components/balances/BalanceListItemDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/balances/BalanceListItemDetails.tsx -------------------------------------------------------------------------------- /wallet/src/components/balances/BalanceListItemView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/balances/BalanceListItemView.tsx -------------------------------------------------------------------------------- /wallet/src/components/balances/BalanceListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/balances/BalanceListView.tsx -------------------------------------------------------------------------------- /wallet/src/components/balances/CryptidButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/balances/CryptidButton.tsx -------------------------------------------------------------------------------- /wallet/src/components/balances/TokenButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/balances/TokenButtons.tsx -------------------------------------------------------------------------------- /wallet/src/components/instructions/layout/InstructionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/layout/InstructionView.tsx -------------------------------------------------------------------------------- /wallet/src/components/instructions/layout/TransactionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/layout/TransactionView.tsx -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/DexInstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/DexInstruction.js -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/LabelValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/LabelValue.js -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/NewOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/NewOrder.js -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/StakeInstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/StakeInstruction.js -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/SystemInstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/SystemInstruction.js -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/TokenInstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/TokenInstruction.js -------------------------------------------------------------------------------- /wallet/src/components/instructions/views/UnknownInstruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/instructions/views/UnknownInstruction.js -------------------------------------------------------------------------------- /wallet/src/components/modals/AddControllerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/modals/AddControllerModal.tsx -------------------------------------------------------------------------------- /wallet/src/components/modals/AddMnenomicModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/modals/AddMnenomicModal.tsx -------------------------------------------------------------------------------- /wallet/src/components/modals/WalletConnectModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/modals/WalletConnectModal.tsx -------------------------------------------------------------------------------- /wallet/src/components/modals/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/modals/modal.tsx -------------------------------------------------------------------------------- /wallet/src/components/selectors/IdentitySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/components/selectors/IdentitySelector.tsx -------------------------------------------------------------------------------- /wallet/src/fonts/osaka-sans-serif.regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/fonts/osaka-sans-serif.regular.ttf -------------------------------------------------------------------------------- /wallet/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/index.css -------------------------------------------------------------------------------- /wallet/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/index.js -------------------------------------------------------------------------------- /wallet/src/pages/ConnectionsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pages/ConnectionsPage.js -------------------------------------------------------------------------------- /wallet/src/pages/IdentityPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pages/IdentityPage.tsx -------------------------------------------------------------------------------- /wallet/src/pages/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pages/LoginPage.js -------------------------------------------------------------------------------- /wallet/src/pages/PopupPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pages/PopupPage.tsx -------------------------------------------------------------------------------- /wallet/src/pages/ProposedPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pages/ProposedPage.tsx -------------------------------------------------------------------------------- /wallet/src/pages/WalletPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pages/WalletPage.tsx -------------------------------------------------------------------------------- /wallet/src/pollyfill/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/pollyfill/buffer.js -------------------------------------------------------------------------------- /wallet/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /wallet/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/serviceWorker.js -------------------------------------------------------------------------------- /wallet/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/setupTests.js -------------------------------------------------------------------------------- /wallet/src/utils/Cryptid/MetaWalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/Cryptid/MetaWalletProvider.tsx -------------------------------------------------------------------------------- /wallet/src/utils/Cryptid/cryptid-external-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/Cryptid/cryptid-external-types.ts -------------------------------------------------------------------------------- /wallet/src/utils/Cryptid/cryptid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/Cryptid/cryptid.tsx -------------------------------------------------------------------------------- /wallet/src/utils/Wallet/AccountWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/Wallet/AccountWallet.ts -------------------------------------------------------------------------------- /wallet/src/utils/clusters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/clusters.ts -------------------------------------------------------------------------------- /wallet/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/config.ts -------------------------------------------------------------------------------- /wallet/src/utils/connected-wallets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/connected-wallets.tsx -------------------------------------------------------------------------------- /wallet/src/utils/connection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/connection.tsx -------------------------------------------------------------------------------- /wallet/src/utils/fetch-loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/fetch-loop.ts -------------------------------------------------------------------------------- /wallet/src/utils/markets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/markets.ts -------------------------------------------------------------------------------- /wallet/src/utils/name-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/name-service/index.ts -------------------------------------------------------------------------------- /wallet/src/utils/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/notifications.tsx -------------------------------------------------------------------------------- /wallet/src/utils/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/page.tsx -------------------------------------------------------------------------------- /wallet/src/utils/tokens/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/tokens/data.ts -------------------------------------------------------------------------------- /wallet/src/utils/tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/tokens/index.ts -------------------------------------------------------------------------------- /wallet/src/utils/tokens/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/tokens/instructions.ts -------------------------------------------------------------------------------- /wallet/src/utils/tokens/names.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/tokens/names.tsx -------------------------------------------------------------------------------- /wallet/src/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/transactions.ts -------------------------------------------------------------------------------- /wallet/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/utils.ts -------------------------------------------------------------------------------- /wallet/src/utils/wallet-seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/wallet-seed.ts -------------------------------------------------------------------------------- /wallet/src/utils/wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/utils/wallet.tsx -------------------------------------------------------------------------------- /wallet/src/wdyr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/src/wdyr.ts -------------------------------------------------------------------------------- /wallet/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/tailwind.config.js -------------------------------------------------------------------------------- /wallet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/tsconfig.json -------------------------------------------------------------------------------- /wallet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/wallet/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/identity-com/cryptid/HEAD/yarn.lock --------------------------------------------------------------------------------