GEAR


@gear-js/api

A JavaScript library that enables connection to the Gear node and allows interaction with it.

Refer to the api docs for details.

npm package

@gear-js/txwrapper

A package designed to provide helper functions for generating offline transactions using @substrate/txwrapper-core package specifically tailored for the Gear pallet.

Refer to the txwrapper docs for details.

npm package

@gear-js/ui

React UI components used across Gear applications.

Refer to the gear-ui docs for details.

npm package

Gear Idea

The source code of the portal for smart-contract developers and backend microservices - idea.gear-tech.io.

frontend

A React application that serves as a get-familiar with Gear to help developers write, test and upload smart contracts to a test network as well as manage accounts, balances, events and more.

indexer

A microservice responsible for blockchain indexing and storing information about programs and their messages as well as for storing programs metadata.

test-balance

A microservice that provides the opportunity to obtain test tokens.

api-gateway

A microservice that provides any interaction between data-storage / test-balance services and an external user.


..
/idea/api-gateway/
/idea/api-gateway/.env.example
/idea/api-gateway/.eslintrc.js
/idea/api-gateway/.gitignore
/idea/api-gateway/.prettierrc
/idea/api-gateway/Dockerfile
/idea/api-gateway/README.md
/idea/api-gateway/package.json
/idea/api-gateway/src/
/idea/api-gateway/src/config.ts
/idea/api-gateway/src/main.ts
/idea/api-gateway/src/middleware/
/idea/api-gateway/src/middleware/check-genesis.middleware.ts
/idea/api-gateway/src/middleware/index.ts
/idea/api-gateway/src/middleware/test-balance.middleware.ts
/idea/api-gateway/src/middleware/validate-json-rpc-request.middleware.ts
/idea/api-gateway/src/rmq.ts
/idea/api-gateway/src/server.ts
/idea/api-gateway/src/utils/
/idea/api-gateway/src/utils/get-response.ts
/idea/api-gateway/src/utils/index.ts
/idea/api-gateway/tsconfig.json
/idea/common/
/idea/common/.gitignore
/idea/common/README.md
/idea/common/package.json
/idea/common/src/
/idea/common/src/enums/
/idea/common/src/enums/add-events.enum.ts
/idea/common/src/enums/api-methods.enum.ts
/idea/common/src/enums/code-status.enum.ts
/idea/common/src/enums/index.ts
/idea/common/src/enums/message-read-reason.enum.ts
/idea/common/src/enums/msg-type.enum.ts
/idea/common/src/enums/program-status.enum.ts
/idea/common/src/enums/rmq.ts
/idea/common/src/enums/rpc-error-code.enum.ts
/idea/common/src/errors/
/idea/common/src/errors/base.ts
/idea/common/src/errors/code.ts
/idea/common/src/errors/index.ts
/idea/common/src/errors/jsonrpc-errors.ts
/idea/common/src/errors/message.ts
/idea/common/src/errors/meta-storage.ts
/idea/common/src/errors/program.ts
/idea/common/src/errors/signature.ts
/idea/common/src/errors/state.ts
/idea/common/src/form-response.decorator.ts
/idea/common/src/index.ts
/idea/common/src/interfaces/
/idea/common/src/interfaces/api-response.ts
/idea/common/src/interfaces/code.ts
/idea/common/src/interfaces/common.ts
/idea/common/src/interfaces/index.ts
/idea/common/src/interfaces/message.ts
/idea/common/src/interfaces/pagination.ts
/idea/common/src/interfaces/program.ts
/idea/common/src/interfaces/rmq.ts
/idea/common/src/interfaces/rpc-request/
/idea/common/src/interfaces/rpc-request/index.ts
/idea/common/src/interfaces/rpc-request/indexer.ts
/idea/common/src/interfaces/rpc-request/meta-storage.ts
/idea/common/src/interfaces/rpc-request/test-balance.ts
/idea/common/src/interfaces/state.ts
/idea/common/src/logger.ts
/idea/common/tsconfig.json
/idea/explorer/
/idea/explorer/Dockerfile
/idea/explorer/README.md
/idea/explorer/package.json
/idea/explorer/src/
/idea/explorer/src/config.ts
/idea/explorer/src/decorators/
/idea/explorer/src/decorators/index.ts
/idea/explorer/src/decorators/method.ts
/idea/explorer/src/decorators/pagination.ts
/idea/explorer/src/decorators/required.ts
/idea/explorer/src/decorators/validation.ts
/idea/explorer/src/errors/
/idea/explorer/src/errors/base.ts
/idea/explorer/src/errors/code.ts
/idea/explorer/src/errors/event.ts
/idea/explorer/src/errors/index.ts
/idea/explorer/src/errors/jsonrpc.ts
/idea/explorer/src/errors/message.ts
/idea/explorer/src/errors/program.ts
/idea/explorer/src/jsonrpc.ts
/idea/explorer/src/main.ts
/idea/explorer/src/middlewares/
/idea/explorer/src/middlewares/caching.ts
/idea/explorer/src/middlewares/index.ts
/idea/explorer/src/middlewares/redis.ts
/idea/explorer/src/middlewares/retry.ts
/idea/explorer/src/services/
/idea/explorer/src/services/all-in-one.ts
/idea/explorer/src/services/code.ts
/idea/explorer/src/services/event.ts
/idea/explorer/src/services/index.ts
/idea/explorer/src/services/message.ts
/idea/explorer/src/services/program.ts
/idea/explorer/src/types/
/idea/explorer/src/types/index.ts
/idea/explorer/src/types/jsonrpc.ts
/idea/explorer/src/types/requests/
/idea/explorer/src/types/requests/code.ts
/idea/explorer/src/types/requests/common.ts
/idea/explorer/src/types/requests/event.ts
/idea/explorer/src/types/requests/index.ts
/idea/explorer/src/types/requests/message.ts
/idea/explorer/src/types/requests/program.ts
/idea/explorer/src/types/responses/
/idea/explorer/src/types/responses/common.ts
/idea/explorer/src/types/responses/index.ts
/idea/explorer/tsconfig.json
/idea/frontend/
/idea/frontend/.env.example
/idea/frontend/.eslintrc
/idea/frontend/.gitignore
/idea/frontend/Dockerfile
/idea/frontend/README.md
/idea/frontend/index.html
/idea/frontend/package.json
/idea/frontend/public/
/idea/frontend/public/favicon.png
/idea/frontend/src/
/idea/frontend/src/api/
/idea/frontend/src/api/balance/
/idea/frontend/src/api/balance/index.ts
/idea/frontend/src/api/balance/requests.ts
/idea/frontend/src/api/balance/types.ts
/idea/frontend/src/api/consts.ts
/idea/frontend/src/api/index.ts
/idea/frontend/src/api/metadata/
/idea/frontend/src/api/metadata/index.ts
/idea/frontend/src/api/metadata/requests.ts
/idea/frontend/src/api/types.ts
/idea/frontend/src/api/utils.ts
/idea/frontend/src/app/
/idea/frontend/src/app/App.scss
/idea/frontend/src/app/App.tsx
/idea/frontend/src/app/index.ts
/idea/frontend/src/app/providers/
/idea/frontend/src/app/providers/alert/
/idea/frontend/src/app/providers/alert/Provider.tsx
/idea/frontend/src/app/providers/alert/index.ts
/idea/frontend/src/app/providers/api/
/idea/frontend/src/app/providers/api/Provider.tsx
/idea/frontend/src/app/providers/api/index.ts
/idea/frontend/src/app/providers/blocks/
/idea/frontend/src/app/providers/blocks/Context.ts
/idea/frontend/src/app/providers/blocks/Provider.tsx
/idea/frontend/src/app/providers/blocks/helpers.ts
/idea/frontend/src/app/providers/blocks/index.ts
/idea/frontend/src/app/providers/chain/
/idea/frontend/src/app/providers/chain/Context.ts
/idea/frontend/src/app/providers/chain/Provider.tsx
/idea/frontend/src/app/providers/chain/index.ts
/idea/frontend/src/app/providers/events/
/idea/frontend/src/app/providers/events/Context.ts
/idea/frontend/src/app/providers/events/Provider.tsx
/idea/frontend/src/app/providers/events/index.ts
/idea/frontend/src/app/providers/index.ts
/idea/frontend/src/app/providers/modal/
/idea/frontend/src/app/providers/modal/Context.ts
/idea/frontend/src/app/providers/modal/Provider.tsx
/idea/frontend/src/app/providers/modal/consts.ts
/idea/frontend/src/app/providers/modal/index.ts
/idea/frontend/src/app/providers/modal/types.ts
/idea/frontend/src/app/providers/onboarding/
/idea/frontend/src/app/providers/onboarding/Context.ts
/idea/frontend/src/app/providers/onboarding/Provider.tsx
/idea/frontend/src/app/providers/onboarding/helpers.ts
/idea/frontend/src/app/providers/onboarding/index.ts
/idea/frontend/src/app/providers/query/
/idea/frontend/src/app/providers/query/index.tsx
/idea/frontend/src/app/providers/withProviders.tsx
/idea/frontend/src/app/styles/
/idea/frontend/src/app/styles/index.scss
/idea/frontend/src/entities/
/idea/frontend/src/entities/formPayload/
/idea/frontend/src/entities/formPayload/index.ts
/idea/frontend/src/entities/formPayload/model/
/idea/frontend/src/entities/formPayload/model/types.ts
/idea/frontend/src/entities/hooks/
/idea/frontend/src/entities/hooks/index.ts
/idea/frontend/src/entities/hooks/model/
/idea/frontend/src/entities/hooks/model/types.ts
/idea/frontend/src/entities/metadata/
/idea/frontend/src/entities/metadata/index.ts
/idea/frontend/src/entities/metadata/model/
/idea/frontend/src/entities/metadata/model/index.ts
/idea/frontend/src/entities/metadata/model/types.ts
/idea/frontend/src/entities/modal/
/idea/frontend/src/entities/modal/index.ts
/idea/frontend/src/entities/modal/model/
/idea/frontend/src/entities/modal/model/types.ts
/idea/frontend/src/entities/node/
/idea/frontend/src/entities/node/index.ts
/idea/frontend/src/entities/node/model/
/idea/frontend/src/entities/node/model/types.ts
/idea/frontend/src/entities/placeholder/
/idea/frontend/src/entities/placeholder/index.ts
/idea/frontend/src/entities/placeholder/ui/
/idea/frontend/src/entities/placeholder/ui/Placeholder.module.scss
/idea/frontend/src/entities/placeholder/ui/Placeholder.tsx
/idea/frontend/src/features/
/idea/frontend/src/features/api/
/idea/frontend/src/features/api/consts.ts
/idea/frontend/src/features/api/index.ts
/idea/frontend/src/features/api/utils.ts
/idea/frontend/src/features/balance/
/idea/frontend/src/features/balance/assets/
/idea/frontend/src/features/balance/assets/plus.svg
/idea/frontend/src/features/balance/assets/submit.svg
/idea/frontend/src/features/balance/assets/transfer.svg
/idea/frontend/src/features/balance/index.ts
/idea/frontend/src/features/balance/ui/
/idea/frontend/src/features/balance/ui/balance/
/idea/frontend/src/features/balance/ui/balance/balance.module.scss
/idea/frontend/src/features/balance/ui/balance/balance.tsx
/idea/frontend/src/features/balance/ui/balance/index.ts
/idea/frontend/src/features/balance/ui/index.ts
/idea/frontend/src/features/balance/ui/program-balance/
/idea/frontend/src/features/balance/ui/program-balance/index.ts
/idea/frontend/src/features/balance/ui/program-balance/program-balance.module.scss
/idea/frontend/src/features/balance/ui/program-balance/program-balance.tsx
/idea/frontend/src/features/balance/ui/transfer-balance/
/idea/frontend/src/features/balance/ui/transfer-balance/index.ts
/idea/frontend/src/features/balance/ui/transfer-balance/transfer-balance.module.scss
/idea/frontend/src/features/balance/ui/transfer-balance/transfer-balance.tsx
/idea/frontend/src/features/balance/ui/transfer-balance-modal/
/idea/frontend/src/features/balance/ui/transfer-balance-modal/index.ts
/idea/frontend/src/features/balance/ui/transfer-balance-modal/transfer-balance-modal.module.scss
/idea/frontend/src/features/balance/ui/transfer-balance-modal/transfer-balance-modal.tsx
/idea/frontend/src/features/blocks/
/idea/frontend/src/features/blocks/hooks/
/idea/frontend/src/features/blocks/hooks/index.ts
/idea/frontend/src/features/blocks/hooks/use-block-number.ts
/idea/frontend/src/features/blocks/index.ts
/idea/frontend/src/features/code/
/idea/frontend/src/features/code/api/
/idea/frontend/src/features/code/api/consts.ts
/idea/frontend/src/features/code/api/hooks/
/idea/frontend/src/features/code/api/hooks/index.ts
/idea/frontend/src/features/code/api/hooks/use-code.tsx
/idea/frontend/src/features/code/api/hooks/use-codes.tsx
/idea/frontend/src/features/code/api/index.ts
/idea/frontend/src/features/code/api/requests.ts
/idea/frontend/src/features/code/api/types.ts
/idea/frontend/src/features/code/consts/
/idea/frontend/src/features/code/consts/file.ts
/idea/frontend/src/features/code/consts/index.ts
/idea/frontend/src/features/code/hooks/
/idea/frontend/src/features/code/hooks/index.ts
/idea/frontend/src/features/code/hooks/use-wasm-file-handler.tsx
/idea/frontend/src/features/code/hooks/use-wasm-file.tsx
/idea/frontend/src/features/code/index.ts
/idea/frontend/src/features/code/types/
/idea/frontend/src/features/code/types/file.ts
/idea/frontend/src/features/code/types/index.ts
/idea/frontend/src/features/code/ui/
/idea/frontend/src/features/code/ui/code-card/
/idea/frontend/src/features/code/ui/code-card/code-card.module.scss
/idea/frontend/src/features/code/ui/code-card/code-card.tsx
/idea/frontend/src/features/code/ui/code-card/index.ts
/idea/frontend/src/features/code/ui/code-table/
/idea/frontend/src/features/code/ui/code-table/code-table.tsx
/idea/frontend/src/features/code/ui/code-table/index.ts
/idea/frontend/src/features/code/ui/index.ts
/idea/frontend/src/features/dns/
/idea/frontend/src/features/dns/assets/
/idea/frontend/src/features/dns/assets/dns-card-placeholder.svg
/idea/frontend/src/features/dns/consts/
/idea/frontend/src/features/dns/consts/index.ts
/idea/frontend/src/features/dns/consts/sails.ts
/idea/frontend/src/features/dns/hooks/
/idea/frontend/src/features/dns/hooks/index.ts
/idea/frontend/src/features/dns/hooks/use-dns-filters.ts
/idea/frontend/src/features/dns/hooks/use-dns-schema.ts
/idea/frontend/src/features/dns/hooks/use-dns.ts
/idea/frontend/src/features/dns/hooks/use-send-dns-transaction.ts
/idea/frontend/src/features/dns/index.ts
/idea/frontend/src/features/dns/types.ts
/idea/frontend/src/features/dns/ui/
/idea/frontend/src/features/dns/ui/create-dns/
/idea/frontend/src/features/dns/ui/create-dns/create-dns.tsx
/idea/frontend/src/features/dns/ui/create-dns/index.ts
/idea/frontend/src/features/dns/ui/delete-dns/
/idea/frontend/src/features/dns/ui/delete-dns/delete-dns.module.scss
/idea/frontend/src/features/dns/ui/delete-dns/delete-dns.tsx
/idea/frontend/src/features/dns/ui/delete-dns/index.ts
/idea/frontend/src/features/dns/ui/dns-card/
/idea/frontend/src/features/dns/ui/dns-card/dns-card.module.scss
/idea/frontend/src/features/dns/ui/dns-card/dns-card.tsx
/idea/frontend/src/features/dns/ui/dns-card/index.ts
/idea/frontend/src/features/dns/ui/dns-modal/
/idea/frontend/src/features/dns/ui/dns-modal/dns-modal.module.scss
/idea/frontend/src/features/dns/ui/dns-modal/dns-modal.tsx
/idea/frontend/src/features/dns/ui/dns-modal/index.tsx
/idea/frontend/src/features/dns/ui/edit-dns/
/idea/frontend/src/features/dns/ui/edit-dns/edit-dns.module.scss
/idea/frontend/src/features/dns/ui/edit-dns/edit-dns.tsx
/idea/frontend/src/features/dns/ui/edit-dns/index.ts
/idea/frontend/src/features/dns/ui/index.ts
/idea/frontend/src/features/dns/utils.ts
/idea/frontend/src/features/explorer/
/idea/frontend/src/features/explorer/consts.ts
/idea/frontend/src/features/explorer/idea-event.ts
/idea/frontend/src/features/explorer/index.ts
/idea/frontend/src/features/explorer/types.ts
/idea/frontend/src/features/explorer/ui/
/idea/frontend/src/features/explorer/ui/block/
/idea/frontend/src/features/explorer/ui/block/block.module.scss
/idea/frontend/src/features/explorer/ui/block/block.tsx
/idea/frontend/src/features/explorer/ui/block/index.ts
/idea/frontend/src/features/explorer/ui/block-event/
/idea/frontend/src/features/explorer/ui/block-event/block-event.tsx
/idea/frontend/src/features/explorer/ui/block-event/index.ts
/idea/frontend/src/features/explorer/ui/decoded-log-block/
/idea/frontend/src/features/explorer/ui/decoded-log-block/decoded-log-block.tsx
/idea/frontend/src/features/explorer/ui/decoded-log-block/index.ts
/idea/frontend/src/features/explorer/ui/decoded-preformatted-block/
/idea/frontend/src/features/explorer/ui/decoded-preformatted-block/decoded-preformatted-block.module.scss
/idea/frontend/src/features/explorer/ui/decoded-preformatted-block/decoded-preformatted-block.tsx
/idea/frontend/src/features/explorer/ui/decoded-preformatted-block/index.ts
/idea/frontend/src/features/explorer/ui/event/
/idea/frontend/src/features/explorer/ui/event/event.module.scss
/idea/frontend/src/features/explorer/ui/event/event.tsx
/idea/frontend/src/features/explorer/ui/event/index.ts
/idea/frontend/src/features/explorer/ui/events/
/idea/frontend/src/features/explorer/ui/events/events.module.scss
/idea/frontend/src/features/explorer/ui/events/events.tsx
/idea/frontend/src/features/explorer/ui/events/index.ts
/idea/frontend/src/features/explorer/ui/expansion-panel/
/idea/frontend/src/features/explorer/ui/expansion-panel/expansion-panel.module.scss
/idea/frontend/src/features/explorer/ui/expansion-panel/expansion-panel.tsx
/idea/frontend/src/features/explorer/ui/expansion-panel/index.ts
/idea/frontend/src/features/explorer/ui/extrinsic/
/idea/frontend/src/features/explorer/ui/extrinsic/extrinsic.tsx
/idea/frontend/src/features/explorer/ui/extrinsic/index.ts
/idea/frontend/src/features/explorer/ui/filter/
/idea/frontend/src/features/explorer/ui/filter/filter.module.scss
/idea/frontend/src/features/explorer/ui/filter/filter.tsx
/idea/frontend/src/features/explorer/ui/filter/index.ts
/idea/frontend/src/features/explorer/ui/index.ts
/idea/frontend/src/features/explorer/ui/main-table/
/idea/frontend/src/features/explorer/ui/main-table/index.ts
/idea/frontend/src/features/explorer/ui/main-table/main-table.module.scss
/idea/frontend/src/features/explorer/ui/main-table/main-table.tsx
/idea/frontend/src/features/explorer/ui/row/
/idea/frontend/src/features/explorer/ui/row/index.ts
/idea/frontend/src/features/explorer/ui/row/row.module.scss
/idea/frontend/src/features/explorer/ui/row/row.tsx
/idea/frontend/src/features/explorer/ui/summary/
/idea/frontend/src/features/explorer/ui/summary/index.ts
/idea/frontend/src/features/explorer/ui/summary/summary.module.scss
/idea/frontend/src/features/explorer/ui/summary/summary.tsx
/idea/frontend/src/features/explorer/ui/system/
/idea/frontend/src/features/explorer/ui/system/index.ts
/idea/frontend/src/features/explorer/ui/system/system.module.scss
/idea/frontend/src/features/explorer/ui/system/system.tsx
/idea/frontend/src/features/filters/
/idea/frontend/src/features/filters/index.ts
/idea/frontend/src/features/filters/ui/
/idea/frontend/src/features/filters/ui/Filters.module.scss
/idea/frontend/src/features/filters/ui/Filters.tsx
/idea/frontend/src/features/filters/ui/filterGroup/
/idea/frontend/src/features/filters/ui/filterGroup/FilterGroup.module.scss
/idea/frontend/src/features/filters/ui/filterGroup/FilterGroup.tsx
/idea/frontend/src/features/filters/ui/filterGroup/index.ts
/idea/frontend/src/features/filters/ui/radio/
/idea/frontend/src/features/filters/ui/radio/Radio.tsx
/idea/frontend/src/features/filters/ui/radio/index.ts
/idea/frontend/src/features/filters/ui/status-radio/
/idea/frontend/src/features/filters/ui/status-radio/index.ts
/idea/frontend/src/features/filters/ui/status-radio/status-radio.tsx
/idea/frontend/src/features/filters/ui/statusCheckbox/
/idea/frontend/src/features/filters/ui/statusCheckbox/StatusCheckbox.tsx
/idea/frontend/src/features/filters/ui/statusCheckbox/index.ts
/idea/frontend/src/features/formPayload/
/idea/frontend/src/features/formPayload/helpers/
/idea/frontend/src/features/formPayload/helpers/helpers.ts
/idea/frontend/src/features/formPayload/helpers/index.ts
/idea/frontend/src/features/formPayload/index.ts
/idea/frontend/src/features/formPayload/model/
/idea/frontend/src/features/formPayload/model/consts.ts
/idea/frontend/src/features/formPayload/model/index.ts
/idea/frontend/src/features/formPayload/model/types.ts
/idea/frontend/src/features/formPayload/ui/
/idea/frontend/src/features/formPayload/ui/FormPayload.module.scss
/idea/frontend/src/features/formPayload/ui/FormPayload.tsx
/idea/frontend/src/features/formPayload/ui/arrayItem/
/idea/frontend/src/features/formPayload/ui/arrayItem/ArrayItem.tsx
/idea/frontend/src/features/formPayload/ui/arrayItem/index.ts
/idea/frontend/src/features/formPayload/ui/enumItem/
/idea/frontend/src/features/formPayload/ui/enumItem/EnumItem.tsx
/idea/frontend/src/features/formPayload/ui/enumItem/index.ts
/idea/frontend/src/features/formPayload/ui/optionItem/
/idea/frontend/src/features/formPayload/ui/optionItem/OptionItem.tsx
/idea/frontend/src/features/formPayload/ui/optionItem/index.ts
/idea/frontend/src/features/formPayload/ui/payloadStructure/
/idea/frontend/src/features/formPayload/ui/payloadStructure/PayloadStructure.tsx
/idea/frontend/src/features/formPayload/ui/payloadStructure/index.ts
/idea/frontend/src/features/formPayload/ui/primitiveItem/
/idea/frontend/src/features/formPayload/ui/primitiveItem/PrimitiveItem.tsx
/idea/frontend/src/features/formPayload/ui/primitiveItem/index.ts
/idea/frontend/src/features/formPayload/ui/structItem/
/idea/frontend/src/features/formPayload/ui/structItem/StructItem.tsx
/idea/frontend/src/features/formPayload/ui/structItem/index.ts
/idea/frontend/src/features/formPayload/ui/tupleItem/
/idea/frontend/src/features/formPayload/ui/tupleItem/TupleItem.tsx
/idea/frontend/src/features/formPayload/ui/tupleItem/index.ts
/idea/frontend/src/features/formPayload/ui/vecItem/
/idea/frontend/src/features/formPayload/ui/vecItem/VecItem.tsx
/idea/frontend/src/features/formPayload/ui/vecItem/index.ts
/idea/frontend/src/features/gasField/
/idea/frontend/src/features/gasField/index.ts
/idea/frontend/src/features/gasField/ui/
/idea/frontend/src/features/gasField/ui/GasField/
/idea/frontend/src/features/gasField/ui/GasField/GasField.module.scss
/idea/frontend/src/features/gasField/ui/GasField/GasField.tsx
/idea/frontend/src/features/gasField/ui/GasField/index.ts
/idea/frontend/src/features/gasField/ui/Info/
/idea/frontend/src/features/gasField/ui/Info/Info.module.scss
/idea/frontend/src/features/gasField/ui/Info/Info.tsx
/idea/frontend/src/features/gasField/ui/Info/index.ts
/idea/frontend/src/features/local-indexer/
/idea/frontend/src/features/local-indexer/api.ts
/idea/frontend/src/features/local-indexer/consts.ts
/idea/frontend/src/features/local-indexer/hooks/
/idea/frontend/src/features/local-indexer/hooks/index.ts
/idea/frontend/src/features/local-indexer/hooks/use-local-code.ts
/idea/frontend/src/features/local-indexer/hooks/use-local-codes.ts
/idea/frontend/src/features/local-indexer/hooks/use-local-program.ts
/idea/frontend/src/features/local-indexer/hooks/use-local-programs.ts
/idea/frontend/src/features/local-indexer/index.ts
/idea/frontend/src/features/local-indexer/types.ts
/idea/frontend/src/features/mailbox/
/idea/frontend/src/features/mailbox/hooks.ts
/idea/frontend/src/features/mailbox/index.ts
/idea/frontend/src/features/mailbox/types.ts
/idea/frontend/src/features/message/
/idea/frontend/src/features/message/api/
/idea/frontend/src/features/message/api/consts.ts
/idea/frontend/src/features/message/api/hooks/
/idea/frontend/src/features/message/api/hooks/index.ts
/idea/frontend/src/features/message/api/hooks/use-message.ts
/idea/frontend/src/features/message/api/hooks/use-messages.ts
/idea/frontend/src/features/message/api/index.ts
/idea/frontend/src/features/message/api/requests.ts
/idea/frontend/src/features/message/api/types.ts
/idea/frontend/src/features/message/consts.ts
/idea/frontend/src/features/message/index.ts
/idea/frontend/src/features/message/types.ts
/idea/frontend/src/features/message/ui/
/idea/frontend/src/features/message/ui/index.ts
/idea/frontend/src/features/message/ui/message-card/
/idea/frontend/src/features/message/ui/message-card/index.ts
/idea/frontend/src/features/message/ui/message-card/message-card.module.scss
/idea/frontend/src/features/message/ui/message-card/message-card.tsx
/idea/frontend/src/features/message/ui/program-messages/
/idea/frontend/src/features/message/ui/program-messages/index.ts
/idea/frontend/src/features/message/ui/program-messages/program-messages.tsx
/idea/frontend/src/features/message/utils.ts
/idea/frontend/src/features/metadata/
/idea/frontend/src/features/metadata/hooks/
/idea/frontend/src/features/metadata/hooks/index.ts
/idea/frontend/src/features/metadata/hooks/use-metadata-hash.ts
/idea/frontend/src/features/metadata/hooks/use-metadata-with-file.ts
/idea/frontend/src/features/metadata/hooks/use-metadata.ts
/idea/frontend/src/features/metadata/index.ts
/idea/frontend/src/features/metadata/ui/
/idea/frontend/src/features/metadata/ui/index.ts
/idea/frontend/src/features/metadata/ui/metadata-preview/
/idea/frontend/src/features/metadata/ui/metadata-preview/index.ts
/idea/frontend/src/features/metadata/ui/metadata-preview/metadata-preview.tsx
/idea/frontend/src/features/metadata/ui/metadata-table/
/idea/frontend/src/features/metadata/ui/metadata-table/index.ts
/idea/frontend/src/features/metadata/ui/metadata-table/metadata-table.tsx
/idea/frontend/src/features/metadata/utils.ts
/idea/frontend/src/features/nodesSwitch/
/idea/frontend/src/features/nodesSwitch/index.ts
/idea/frontend/src/features/nodesSwitch/ui/
/idea/frontend/src/features/nodesSwitch/ui/NodesSwitch.tsx
/idea/frontend/src/features/nodesSwitch/ui/node/
/idea/frontend/src/features/nodesSwitch/ui/node/Node.module.scss
/idea/frontend/src/features/nodesSwitch/ui/node/Node.tsx
/idea/frontend/src/features/nodesSwitch/ui/node/index.ts
/idea/frontend/src/features/nodesSwitch/ui/nodesButton/
/idea/frontend/src/features/nodesSwitch/ui/nodesButton/NodesButton.module.scss
/idea/frontend/src/features/nodesSwitch/ui/nodesButton/NodesButton.tsx
/idea/frontend/src/features/nodesSwitch/ui/nodesButton/index.ts
/idea/frontend/src/features/nodesSwitch/ui/nodesPopup/
/idea/frontend/src/features/nodesSwitch/ui/nodesPopup/NodesPopup.module.scss
/idea/frontend/src/features/nodesSwitch/ui/nodesPopup/NodesPopup.tsx
/idea/frontend/src/features/nodesSwitch/ui/nodesPopup/index.ts
/idea/frontend/src/features/program/
/idea/frontend/src/features/program/api/
/idea/frontend/src/features/program/api/consts.ts
/idea/frontend/src/features/program/api/hooks/
/idea/frontend/src/features/program/api/hooks/index.ts
/idea/frontend/src/features/program/api/hooks/use-program.ts
/idea/frontend/src/features/program/api/hooks/use-programs.ts
/idea/frontend/src/features/program/api/index.ts
/idea/frontend/src/features/program/api/requests.ts
/idea/frontend/src/features/program/api/types.ts
/idea/frontend/src/features/program/consts.ts
/idea/frontend/src/features/program/hooks/
/idea/frontend/src/features/program/hooks/index.ts
/idea/frontend/src/features/program/hooks/use-program-filters.ts
/idea/frontend/src/features/program/hooks/use-program-status.ts
/idea/frontend/src/features/program/index.ts
/idea/frontend/src/features/program/types.ts
/idea/frontend/src/features/program/ui/
/idea/frontend/src/features/program/ui/index.ts
/idea/frontend/src/features/program/ui/program-card/
/idea/frontend/src/features/program/ui/program-card/index.ts
/idea/frontend/src/features/program/ui/program-card/program-card.module.scss
/idea/frontend/src/features/program/ui/program-card/program-card.tsx
/idea/frontend/src/features/program/ui/program-file-input/
/idea/frontend/src/features/program/ui/program-file-input/index.ts
/idea/frontend/src/features/program/ui/program-file-input/program-file-input.module.scss
/idea/frontend/src/features/program/ui/program-file-input/program-file-input.tsx
/idea/frontend/src/features/program/ui/program-filters/
/idea/frontend/src/features/program/ui/program-filters/index.ts
/idea/frontend/src/features/program/ui/program-filters/program-filters.tsx
/idea/frontend/src/features/program/ui/program-table/
/idea/frontend/src/features/program/ui/program-table/index.ts
/idea/frontend/src/features/program/ui/program-table/program-table.module.scss
/idea/frontend/src/features/program/ui/program-table/program-table.tsx
/idea/frontend/src/features/program/ui/programs/
/idea/frontend/src/features/program/ui/programs/index.ts
/idea/frontend/src/features/program/ui/programs/programs.tsx
/idea/frontend/src/features/program/utils.ts
/idea/frontend/src/features/recentBlocks/
/idea/frontend/src/features/recentBlocks/helpers/
/idea/frontend/src/features/recentBlocks/helpers/index.ts
/idea/frontend/src/features/recentBlocks/index.ts
/idea/frontend/src/features/recentBlocks/types.ts
/idea/frontend/src/features/recentBlocks/ui/
/idea/frontend/src/features/recentBlocks/ui/RecentBlocks.module.scss
/idea/frontend/src/features/recentBlocks/ui/RecentBlocks.tsx
/idea/frontend/src/features/recentBlocks/ui/graph/
/idea/frontend/src/features/recentBlocks/ui/graph/Graph.module.scss
/idea/frontend/src/features/recentBlocks/ui/graph/Graph.tsx
/idea/frontend/src/features/recentBlocks/ui/graph/index.ts
/idea/frontend/src/features/recentBlocks/ui/recentBlockItem/
/idea/frontend/src/features/recentBlocks/ui/recentBlockItem/RecentBlockItem.module.scss
/idea/frontend/src/features/recentBlocks/ui/recentBlockItem/RecentBlockItem.tsx
/idea/frontend/src/features/recentBlocks/ui/recentBlockItem/index.ts
/idea/frontend/src/features/recentBlocks/ui/recentBlocksList/
/idea/frontend/src/features/recentBlocks/ui/recentBlocksList/RecentBlocksList.module.scss
/idea/frontend/src/features/recentBlocks/ui/recentBlocksList/RecentBlocksList.tsx
/idea/frontend/src/features/recentBlocks/ui/recentBlocksList/index.ts
/idea/frontend/src/features/sails/
/idea/frontend/src/features/sails/api/
/idea/frontend/src/features/sails/api/consts.ts
/idea/frontend/src/features/sails/api/hooks/
/idea/frontend/src/features/sails/api/hooks/index.ts
/idea/frontend/src/features/sails/api/hooks/use-events.ts
/idea/frontend/src/features/sails/api/index.ts
/idea/frontend/src/features/sails/api/requests.ts
/idea/frontend/src/features/sails/api/types.ts
/idea/frontend/src/features/sails/assets/
/idea/frontend/src/features/sails/assets/arrow.svg
/idea/frontend/src/features/sails/assets/link.svg
/idea/frontend/src/features/sails/consts.ts
/idea/frontend/src/features/sails/hooks/
/idea/frontend/src/features/sails/hooks/index.ts
/idea/frontend/src/features/sails/hooks/payload/
/idea/frontend/src/features/sails/hooks/payload/index.ts
/idea/frontend/src/features/sails/hooks/payload/use-constructor.tsx
/idea/frontend/src/features/sails/hooks/payload/use-select.ts
/idea/frontend/src/features/sails/hooks/payload/use-service.tsx
/idea/frontend/src/features/sails/hooks/payload/use-set-payload-value.ts
/idea/frontend/src/features/sails/hooks/use-add-idl.ts
/idea/frontend/src/features/sails/hooks/use-sails-init.ts
/idea/frontend/src/features/sails/hooks/use-sails-with-file.ts
/idea/frontend/src/features/sails/hooks/use-sails.ts
/idea/frontend/src/features/sails/index.ts
/idea/frontend/src/features/sails/types.ts
/idea/frontend/src/features/sails/ui/
/idea/frontend/src/features/sails/ui/event-card/
/idea/frontend/src/features/sails/ui/event-card/event-card.module.scss
/idea/frontend/src/features/sails/ui/event-card/event-card.tsx
/idea/frontend/src/features/sails/ui/event-card/index.ts
/idea/frontend/src/features/sails/ui/fields/
/idea/frontend/src/features/sails/ui/fields/enum-field.tsx
/idea/frontend/src/features/sails/ui/fields/fields.tsx
/idea/frontend/src/features/sails/ui/fields/fixed-size-array-field.tsx
/idea/frontend/src/features/sails/ui/fields/index.ts
/idea/frontend/src/features/sails/ui/fields/map-field.tsx
/idea/frontend/src/features/sails/ui/fields/optional-field.tsx
/idea/frontend/src/features/sails/ui/fields/primitive-field.tsx
/idea/frontend/src/features/sails/ui/fields/result-field.tsx
/idea/frontend/src/features/sails/ui/fields/struct-field.tsx
/idea/frontend/src/features/sails/ui/fields/user-defined-field.tsx
/idea/frontend/src/features/sails/ui/fields/vec-field.tsx
/idea/frontend/src/features/sails/ui/index.ts
/idea/frontend/src/features/sails/ui/payload-form/
/idea/frontend/src/features/sails/ui/payload-form/index.ts
/idea/frontend/src/features/sails/ui/payload-form/payload-form.module.scss
/idea/frontend/src/features/sails/ui/payload-form/payload-form.tsx
/idea/frontend/src/features/sails/ui/program-events/
/idea/frontend/src/features/sails/ui/program-events/index.ts
/idea/frontend/src/features/sails/ui/program-events/program-events.tsx
/idea/frontend/src/features/sails/ui/sails-preview/
/idea/frontend/src/features/sails/ui/sails-preview/index.ts
/idea/frontend/src/features/sails/ui/sails-preview/sails-preview.module.scss
/idea/frontend/src/features/sails/ui/sails-preview/sails-preview.tsx
/idea/frontend/src/features/sails/utils/
/idea/frontend/src/features/sails/utils/field.ts
/idea/frontend/src/features/sails/utils/index.ts
/idea/frontend/src/features/sails/utils/payload/
/idea/frontend/src/features/sails/utils/payload/get-default-payload-value.ts
/idea/frontend/src/features/sails/utils/payload/get-payload-schema.ts
/idea/frontend/src/features/sails/utils/payload/get-reset-payload-value.ts
/idea/frontend/src/features/sails/utils/payload/index.ts
/idea/frontend/src/features/sails/utils/type.ts
/idea/frontend/src/features/sortBy/
/idea/frontend/src/features/sortBy/index.ts
/idea/frontend/src/features/sortBy/model/
/idea/frontend/src/features/sortBy/model/consts.ts
/idea/frontend/src/features/sortBy/ui/
/idea/frontend/src/features/sortBy/ui/SortBy.module.scss
/idea/frontend/src/features/sortBy/ui/SortBy.tsx
/idea/frontend/src/features/uploadMetadata/
/idea/frontend/src/features/uploadMetadata/helpers/
/idea/frontend/src/features/uploadMetadata/helpers/helpers.ts
/idea/frontend/src/features/uploadMetadata/helpers/index.ts
/idea/frontend/src/features/uploadMetadata/index.ts
/idea/frontend/src/features/uploadMetadata/model/
/idea/frontend/src/features/uploadMetadata/model/index.ts
/idea/frontend/src/features/uploadMetadata/model/types.ts
/idea/frontend/src/features/uploadMetadata/ui/
/idea/frontend/src/features/uploadMetadata/ui/uploadMetadata/
/idea/frontend/src/features/uploadMetadata/ui/uploadMetadata/UploadMetadata.module.scss
/idea/frontend/src/features/uploadMetadata/ui/uploadMetadata/UploadMetadata.tsx
/idea/frontend/src/features/uploadMetadata/ui/uploadMetadata/index.ts
/idea/frontend/src/features/voucher/
/idea/frontend/src/features/voucher/assets/
/idea/frontend/src/features/voucher/assets/badge.svg
/idea/frontend/src/features/voucher/assets/coupon.svg
/idea/frontend/src/features/voucher/assets/voucher-card-placeholder.svg
/idea/frontend/src/features/voucher/consts.ts
/idea/frontend/src/features/voucher/hooks/
/idea/frontend/src/features/voucher/hooks/index.ts
/idea/frontend/src/features/voucher/hooks/use-duration-schema.ts
/idea/frontend/src/features/voucher/hooks/use-voucher-filters.ts
/idea/frontend/src/features/voucher/hooks/use-voucher-type.ts
/idea/frontend/src/features/voucher/hooks/use-vouchers.ts
/idea/frontend/src/features/voucher/index.ts
/idea/frontend/src/features/voucher/types.ts
/idea/frontend/src/features/voucher/ui/
/idea/frontend/src/features/voucher/ui/decline-voucher/
/idea/frontend/src/features/voucher/ui/decline-voucher/decline-voucher.tsx
/idea/frontend/src/features/voucher/ui/decline-voucher/index.ts
/idea/frontend/src/features/voucher/ui/duration-form/
/idea/frontend/src/features/voucher/ui/duration-form/duration-form.module.scss
/idea/frontend/src/features/voucher/ui/duration-form/duration-form.tsx
/idea/frontend/src/features/voucher/ui/duration-form/index.ts
/idea/frontend/src/features/voucher/ui/index.ts
/idea/frontend/src/features/voucher/ui/issue-voucher/
/idea/frontend/src/features/voucher/ui/issue-voucher/index.ts
/idea/frontend/src/features/voucher/ui/issue-voucher/issue-voucher.module.scss
/idea/frontend/src/features/voucher/ui/issue-voucher/issue-voucher.tsx
/idea/frontend/src/features/voucher/ui/issue-voucher-modal/
/idea/frontend/src/features/voucher/ui/issue-voucher-modal/index.tsx
/idea/frontend/src/features/voucher/ui/issue-voucher-modal/issue-voucher-modal.module.scss
/idea/frontend/src/features/voucher/ui/issue-voucher-modal/issue-voucher-modal.tsx
/idea/frontend/src/features/voucher/ui/program-vouchers/
/idea/frontend/src/features/voucher/ui/program-vouchers/index.ts
/idea/frontend/src/features/voucher/ui/program-vouchers/program-vouchers.tsx
/idea/frontend/src/features/voucher/ui/programs-form/
/idea/frontend/src/features/voucher/ui/programs-form/index.ts
/idea/frontend/src/features/voucher/ui/programs-form/programs-form.module.scss
/idea/frontend/src/features/voucher/ui/programs-form/programs-form.tsx
/idea/frontend/src/features/voucher/ui/revoke-voucher/
/idea/frontend/src/features/voucher/ui/revoke-voucher/index.ts
/idea/frontend/src/features/voucher/ui/revoke-voucher/revoke-voucher.module.scss
/idea/frontend/src/features/voucher/ui/revoke-voucher/revoke-voucher.tsx
/idea/frontend/src/features/voucher/ui/update-voucher/
/idea/frontend/src/features/voucher/ui/update-voucher/index.ts
/idea/frontend/src/features/voucher/ui/update-voucher/update-voucher.module.scss
/idea/frontend/src/features/voucher/ui/update-voucher/update-voucher.tsx
/idea/frontend/src/features/voucher/ui/update-voucher-modal/
/idea/frontend/src/features/voucher/ui/update-voucher-modal/index.ts
/idea/frontend/src/features/voucher/ui/update-voucher-modal/update-voucher-modal.module.scss
/idea/frontend/src/features/voucher/ui/update-voucher-modal/update-voucher-modal.tsx
/idea/frontend/src/features/voucher/ui/voucher-badge/
/idea/frontend/src/features/voucher/ui/voucher-badge/index.ts
/idea/frontend/src/features/voucher/ui/voucher-badge/voucher-badge.module.scss
/idea/frontend/src/features/voucher/ui/voucher-badge/voucher-badge.tsx
/idea/frontend/src/features/voucher/ui/voucher-card/
/idea/frontend/src/features/voucher/ui/voucher-card/index.ts
/idea/frontend/src/features/voucher/ui/voucher-card/voucher-card.module.scss
/idea/frontend/src/features/voucher/ui/voucher-card/voucher-card.tsx
/idea/frontend/src/features/voucher/ui/voucher-filters/
/idea/frontend/src/features/voucher/ui/voucher-filters/index.ts
/idea/frontend/src/features/voucher/ui/voucher-filters/voucher-filters.tsx
/idea/frontend/src/features/voucher/ui/voucher-select/
/idea/frontend/src/features/voucher/ui/voucher-select/index.ts
/idea/frontend/src/features/voucher/ui/voucher-select/voucher-option.tsx
/idea/frontend/src/features/voucher/ui/voucher-select/voucher-select.tsx
/idea/frontend/src/features/voucher/ui/vouchers/
/idea/frontend/src/features/voucher/ui/vouchers/index.ts
/idea/frontend/src/features/voucher/ui/vouchers/vouchers.tsx
/idea/frontend/src/features/voucher/utils.ts
/idea/frontend/src/features/wallet/
/idea/frontend/src/features/wallet/assets/
/idea/frontend/src/features/wallet/assets/enkrypt.svg
/idea/frontend/src/features/wallet/assets/polkadot.svg
/idea/frontend/src/features/wallet/assets/subwallet.svg
/idea/frontend/src/features/wallet/assets/talisman.svg
/idea/frontend/src/features/wallet/consts.ts
/idea/frontend/src/features/wallet/hooks/
/idea/frontend/src/features/wallet/hooks/index.ts
/idea/frontend/src/features/wallet/index.ts
/idea/frontend/src/features/wallet/types.ts
/idea/frontend/src/features/wallet/ui/
/idea/frontend/src/features/wallet/ui/account-button/
/idea/frontend/src/features/wallet/ui/account-button/account-button.module.scss
/idea/frontend/src/features/wallet/ui/account-button/account-button.tsx
/idea/frontend/src/features/wallet/ui/account-button/index.ts
/idea/frontend/src/features/wallet/ui/accounts-modal/
/idea/frontend/src/features/wallet/ui/accounts-modal/accounts-modal.module.scss
/idea/frontend/src/features/wallet/ui/accounts-modal/accounts-modal.tsx
/idea/frontend/src/features/wallet/ui/accounts-modal/index.ts
/idea/frontend/src/features/wallet/ui/balance/
/idea/frontend/src/features/wallet/ui/balance/balance.module.scss
/idea/frontend/src/features/wallet/ui/balance/balance.tsx
/idea/frontend/src/features/wallet/ui/balance/index.ts
/idea/frontend/src/features/wallet/ui/index.ts
/idea/frontend/src/features/wallet/ui/wallet/
/idea/frontend/src/features/wallet/ui/wallet/index.ts
/idea/frontend/src/features/wallet/ui/wallet/wallet.module.scss
/idea/frontend/src/features/wallet/ui/wallet/wallet.tsx
/idea/frontend/src/hooks/
/idea/frontend/src/hooks/context.ts
/idea/frontend/src/hooks/index.ts
/idea/frontend/src/hooks/schemas/
/idea/frontend/src/hooks/schemas/index.ts
/idea/frontend/src/hooks/schemas/use-balance-schema.ts
/idea/frontend/src/hooks/schemas/use-gas-limit-schema.ts
/idea/frontend/src/hooks/schemas/use-validation-schema.ts
/idea/frontend/src/hooks/use-add-code-name.ts
/idea/frontend/src/hooks/use-add-metadata.ts
/idea/frontend/src/hooks/use-add-program-name.ts
/idea/frontend/src/hooks/use-contract-api-with-file.ts
/idea/frontend/src/hooks/use-error-alert.ts
/idea/frontend/src/hooks/use-extrinsic-failed-message.ts
/idea/frontend/src/hooks/use-modal-state.ts
/idea/frontend/src/hooks/use-sign-and-send.tsx
/idea/frontend/src/hooks/useChangeEffect.ts
/idea/frontend/src/hooks/useCodeUpload/
/idea/frontend/src/hooks/useCodeUpload/index.ts
/idea/frontend/src/hooks/useCodeUpload/types.ts
/idea/frontend/src/hooks/useCodeUpload/useCodeUpload.tsx
/idea/frontend/src/hooks/useElementSizes.ts
/idea/frontend/src/hooks/useEventSubscriptions/
/idea/frontend/src/hooks/useEventSubscriptions/helpers.tsx
/idea/frontend/src/hooks/useEventSubscriptions/index.ts
/idea/frontend/src/hooks/useEventSubscriptions/useEventSubscriptions.ts
/idea/frontend/src/hooks/useGasCalculate/
/idea/frontend/src/hooks/useGasCalculate/helpers.ts
/idea/frontend/src/hooks/useGasCalculate/index.ts
/idea/frontend/src/hooks/useGasCalculate/types.ts
/idea/frontend/src/hooks/useGasCalculate/useGasCalculate.ts
/idea/frontend/src/hooks/useLoading.ts
/idea/frontend/src/hooks/useMessageActions/
/idea/frontend/src/hooks/useMessageActions/index.ts
/idea/frontend/src/hooks/useMessageActions/types.ts
/idea/frontend/src/hooks/useMessageActions/useMessageActions.ts
/idea/frontend/src/hooks/useMessageClaim/
/idea/frontend/src/hooks/useMessageClaim/index.ts
/idea/frontend/src/hooks/useMessageClaim/types.ts
/idea/frontend/src/hooks/useMessageClaim/useMessageClaim.ts
/idea/frontend/src/hooks/useMobileDisclaimer.ts
/idea/frontend/src/hooks/useNetworkIcon.ts
/idea/frontend/src/hooks/useNodeVersion.tsx
/idea/frontend/src/hooks/useOutsideClick.ts
/idea/frontend/src/hooks/useProgramActions/
/idea/frontend/src/hooks/useProgramActions/index.ts
/idea/frontend/src/hooks/useProgramActions/types.ts
/idea/frontend/src/hooks/useProgramActions/useProgramActions.tsx
/idea/frontend/src/hooks/useProgramIdSchema.ts
/idea/frontend/src/hooks/useStateRead.ts
/idea/frontend/src/index.tsx
/idea/frontend/src/pages/
/idea/frontend/src/pages/code/
/idea/frontend/src/pages/code/index.ts
/idea/frontend/src/pages/code/ui/
/idea/frontend/src/pages/code/ui/Code.module.scss
/idea/frontend/src/pages/code/ui/Code.tsx
/idea/frontend/src/pages/codes/
/idea/frontend/src/pages/codes/index.ts
/idea/frontend/src/pages/codes/ui/
/idea/frontend/src/pages/codes/ui/Codes.module.scss
/idea/frontend/src/pages/codes/ui/Codes.tsx
/idea/frontend/src/pages/dns/
/idea/frontend/src/pages/dns/dns.module.scss
/idea/frontend/src/pages/dns/dns.tsx
/idea/frontend/src/pages/dns/index.ts
/idea/frontend/src/pages/explorer/
/idea/frontend/src/pages/explorer/explorer.module.scss
/idea/frontend/src/pages/explorer/explorer.tsx
/idea/frontend/src/pages/explorer/index.ts
/idea/frontend/src/pages/index.tsx
/idea/frontend/src/pages/initializeProgram/
/idea/frontend/src/pages/initializeProgram/index.ts
/idea/frontend/src/pages/initializeProgram/model/
/idea/frontend/src/pages/initializeProgram/model/index.ts
/idea/frontend/src/pages/initializeProgram/model/types.ts
/idea/frontend/src/pages/initializeProgram/ui/
/idea/frontend/src/pages/initializeProgram/ui/InitializeProgram.module.scss
/idea/frontend/src/pages/initializeProgram/ui/InitializeProgram.tsx
/idea/frontend/src/pages/mailbox/
/idea/frontend/src/pages/mailbox/index.ts
/idea/frontend/src/pages/mailbox/ui/
/idea/frontend/src/pages/mailbox/ui/Mailbox.module.scss
/idea/frontend/src/pages/mailbox/ui/Mailbox.tsx
/idea/frontend/src/pages/mailbox/ui/message/
/idea/frontend/src/pages/mailbox/ui/message/Message.module.scss
/idea/frontend/src/pages/mailbox/ui/message/Message.tsx
/idea/frontend/src/pages/mailbox/ui/message/index.ts
/idea/frontend/src/pages/mailbox/ui/messages/
/idea/frontend/src/pages/mailbox/ui/messages/Messages.tsx
/idea/frontend/src/pages/mailbox/ui/messages/index.ts
/idea/frontend/src/pages/mailbox/ui/messagesPlaceholder/
/idea/frontend/src/pages/mailbox/ui/messagesPlaceholder/MessagesPlaceholder.module.scss
/idea/frontend/src/pages/mailbox/ui/messagesPlaceholder/MessagesPlaceholder.tsx
/idea/frontend/src/pages/mailbox/ui/messagesPlaceholder/index.ts
/idea/frontend/src/pages/message/
/idea/frontend/src/pages/message/index.ts
/idea/frontend/src/pages/message/message.module.scss
/idea/frontend/src/pages/message/message.tsx
/idea/frontend/src/pages/notFound/
/idea/frontend/src/pages/notFound/index.ts
/idea/frontend/src/pages/notFound/ui/
/idea/frontend/src/pages/notFound/ui/NotFound.module.scss
/idea/frontend/src/pages/notFound/ui/NotFound.tsx
/idea/frontend/src/pages/program/
/idea/frontend/src/pages/program/index.ts
/idea/frontend/src/pages/program/program.module.scss
/idea/frontend/src/pages/program/program.tsx
/idea/frontend/src/pages/programs/
/idea/frontend/src/pages/programs/index.ts
/idea/frontend/src/pages/programs/ui/
/idea/frontend/src/pages/programs/ui/Programs.tsx
/idea/frontend/src/pages/programs/ui/programsPage/
/idea/frontend/src/pages/programs/ui/programsPage/ProgramsPage.module.scss
/idea/frontend/src/pages/programs/ui/programsPage/ProgramsPage.tsx
/idea/frontend/src/pages/programs/ui/programsPage/index.ts
/idea/frontend/src/pages/programs/ui/welcomeBanner/
/idea/frontend/src/pages/programs/ui/welcomeBanner/WelcomeBanner.module.scss
/idea/frontend/src/pages/programs/ui/welcomeBanner/WelcomeBanner.tsx
/idea/frontend/src/pages/programs/ui/welcomeBanner/index.ts
/idea/frontend/src/pages/send/
/idea/frontend/src/pages/send/index.ts
/idea/frontend/src/pages/send/ui/
/idea/frontend/src/pages/send/ui/Send.module.scss
/idea/frontend/src/pages/send/ui/Send.tsx
/idea/frontend/src/pages/state/
/idea/frontend/src/pages/state/helpers/
/idea/frontend/src/pages/state/helpers/index.ts
/idea/frontend/src/pages/state/hooks/
/idea/frontend/src/pages/state/hooks/index.ts
/idea/frontend/src/pages/state/index.ts
/idea/frontend/src/pages/state/model/
/idea/frontend/src/pages/state/model/consts.ts
/idea/frontend/src/pages/state/model/index.ts
/idea/frontend/src/pages/state/model/types.ts
/idea/frontend/src/pages/state/ui/
/idea/frontend/src/pages/state/ui/full/
/idea/frontend/src/pages/state/ui/full/Full.module.scss
/idea/frontend/src/pages/state/ui/full/Full.tsx
/idea/frontend/src/pages/state/ui/full/index.ts
/idea/frontend/src/pages/state/ui/sails/
/idea/frontend/src/pages/state/ui/sails/index.ts
/idea/frontend/src/pages/state/ui/sails/sails.module.scss
/idea/frontend/src/pages/state/ui/sails/sails.tsx
/idea/frontend/src/pages/uploadCode/
/idea/frontend/src/pages/uploadCode/index.ts
/idea/frontend/src/pages/uploadCode/ui/
/idea/frontend/src/pages/uploadCode/ui/UploadCode.module.scss
/idea/frontend/src/pages/uploadCode/ui/UploadCode.tsx
/idea/frontend/src/pages/uploadProgram/
/idea/frontend/src/pages/uploadProgram/index.ts
/idea/frontend/src/pages/uploadProgram/ui/
/idea/frontend/src/pages/uploadProgram/ui/UploadProgram.module.scss
/idea/frontend/src/pages/uploadProgram/ui/UploadProgram.tsx
/idea/frontend/src/pages/vouchers/
/idea/frontend/src/pages/vouchers/index.ts
/idea/frontend/src/pages/vouchers/vouchers.module.scss
/idea/frontend/src/pages/vouchers/vouchers.tsx
/idea/frontend/src/shared/
/idea/frontend/src/shared/assets/
/idea/frontend/src/shared/assets/images/
/idea/frontend/src/shared/assets/images/actions/
/idea/frontend/src/shared/assets/images/actions/addMeta.svg
/idea/frontend/src/shared/assets/images/actions/apply.svg
/idea/frontend/src/shared/assets/images/actions/arrowDown.svg
/idea/frontend/src/shared/assets/images/actions/arrowLeft.svg
/idea/frontend/src/shared/assets/images/actions/arrowRight.svg
/idea/frontend/src/shared/assets/images/actions/calculator.svg
/idea/frontend/src/shared/assets/images/actions/close.svg
/idea/frontend/src/shared/assets/images/actions/code.svg
/idea/frontend/src/shared/assets/images/actions/connectWallet.svg
/idea/frontend/src/shared/assets/images/actions/copy.svg
/idea/frontend/src/shared/assets/images/actions/copyGreen.svg
/idea/frontend/src/shared/assets/images/actions/copyKey.svg
/idea/frontend/src/shared/assets/images/actions/create-program.svg
/idea/frontend/src/shared/assets/images/actions/edit.svg
/idea/frontend/src/shared/assets/images/actions/externalResource.svg
/idea/frontend/src/shared/assets/images/actions/letter.svg
/idea/frontend/src/shared/assets/images/actions/logout.svg
/idea/frontend/src/shared/assets/images/actions/plus.svg
/idea/frontend/src/shared/assets/images/actions/read.svg
/idea/frontend/src/shared/assets/images/actions/related-programs.svg
/idea/frontend/src/shared/assets/images/actions/remove.svg
/idea/frontend/src/shared/assets/images/actions/send.svg
/idea/frontend/src/shared/assets/images/actions/switch.svg
/idea/frontend/src/shared/assets/images/actions/testBalance.svg
/idea/frontend/src/shared/assets/images/actions/trash.svg
/idea/frontend/src/shared/assets/images/actions/trashOutlined.svg
/idea/frontend/src/shared/assets/images/actions/uploadCode.svg
/idea/frontend/src/shared/assets/images/actions/uploadFile.svg
/idea/frontend/src/shared/assets/images/banners/
/idea/frontend/src/shared/assets/images/banners/gear1.png
/idea/frontend/src/shared/assets/images/banners/gear2.png
/idea/frontend/src/shared/assets/images/banners/gear3.png
/idea/frontend/src/shared/assets/images/banners/mobileDisclaimer.png
/idea/frontend/src/shared/assets/images/indicators/
/idea/frontend/src/shared/assets/images/indicators/app.svg
/idea/frontend/src/shared/assets/images/indicators/block.svg
/idea/frontend/src/shared/assets/images/indicators/blockNumber.svg
/idea/frontend/src/shared/assets/images/indicators/flag.svg
/idea/frontend/src/shared/assets/images/indicators/id.svg
/idea/frontend/src/shared/assets/images/indicators/loading.svg
/idea/frontend/src/shared/assets/images/indicators/messageDirection.svg
/idea/frontend/src/shared/assets/images/indicators/share.svg
/idea/frontend/src/shared/assets/images/indicators/shield.svg
/idea/frontend/src/shared/assets/images/indicators/time.svg
/idea/frontend/src/shared/assets/images/loader/
/idea/frontend/src/shared/assets/images/loader/loaderGear1.svg
/idea/frontend/src/shared/assets/images/loader/loaderGear2.svg
/idea/frontend/src/shared/assets/images/loader/loaderGear3.svg
/idea/frontend/src/shared/assets/images/logos/
/idea/frontend/src/shared/assets/images/logos/dotLogo.svg
/idea/frontend/src/shared/assets/images/logos/gear.svg
/idea/frontend/src/shared/assets/images/logos/gearDown.svg
/idea/frontend/src/shared/assets/images/logos/gearUp.svg
/idea/frontend/src/shared/assets/images/logos/gearsGraph.svg
/idea/frontend/src/shared/assets/images/logos/idea.svg
/idea/frontend/src/shared/assets/images/logos/networks/
/idea/frontend/src/shared/assets/images/logos/networks/gear.svg
/idea/frontend/src/shared/assets/images/logos/networks/vara.svg
/idea/frontend/src/shared/assets/images/logos/shortcut/
/idea/frontend/src/shared/assets/images/logos/shortcut/gear.svg
/idea/frontend/src/shared/assets/images/logos/shortcut/vara.svg
/idea/frontend/src/shared/assets/images/logos/substrate.svg
/idea/frontend/src/shared/assets/images/logos/vara.svg
/idea/frontend/src/shared/assets/images/menu/
/idea/frontend/src/shared/assets/images/menu/codes.svg
/idea/frontend/src/shared/assets/images/menu/dns.svg
/idea/frontend/src/shared/assets/images/menu/explorer.svg
/idea/frontend/src/shared/assets/images/menu/github.svg
/idea/frontend/src/shared/assets/images/menu/mailbox.svg
/idea/frontend/src/shared/assets/images/menu/menuButton.svg
/idea/frontend/src/shared/assets/images/menu/programs.svg
/idea/frontend/src/shared/assets/images/menu/vouchers.svg
/idea/frontend/src/shared/assets/images/placeholders/
/idea/frontend/src/shared/assets/images/placeholders/404.png
/idea/frontend/src/shared/assets/images/placeholders/blockMainTablePlaceholder.svg
/idea/frontend/src/shared/assets/images/placeholders/blockNumberPlaceholder.svg
/idea/frontend/src/shared/assets/images/placeholders/blockSummaryPlaceholder.svg
/idea/frontend/src/shared/assets/images/placeholders/card.svg
/idea/frontend/src/shared/assets/images/placeholders/eventPlaceholder.svg
/idea/frontend/src/shared/assets/images/placeholders/greenShadowBg.png
/idea/frontend/src/shared/assets/images/placeholders/horizontalMessageCard.svg
/idea/frontend/src/shared/assets/images/placeholders/mailboxMessage.svg
/idea/frontend/src/shared/assets/images/placeholders/programBg.svg
/idea/frontend/src/shared/assets/images/placeholders/table.svg
/idea/frontend/src/shared/assets/images/socials/
/idea/frontend/src/shared/assets/images/socials/discord.svg
/idea/frontend/src/shared/assets/images/socials/github.svg
/idea/frontend/src/shared/assets/images/socials/medium.svg
/idea/frontend/src/shared/assets/images/socials/telegram.svg
/idea/frontend/src/shared/assets/images/socials/twitter.svg
/idea/frontend/src/shared/assets/styles/
/idea/frontend/src/shared/assets/styles/_animations.scss
/idea/frontend/src/shared/assets/styles/_mixins.scss
/idea/frontend/src/shared/assets/styles/_shared.scss
/idea/frontend/src/shared/assets/styles/_variables.scss
/idea/frontend/src/shared/config/
/idea/frontend/src/shared/config/consts.ts
/idea/frontend/src/shared/config/index.ts
/idea/frontend/src/shared/config/routes.ts
/idea/frontend/src/shared/helpers/
/idea/frontend/src/shared/helpers/form.ts
/idea/frontend/src/shared/helpers/index.ts
/idea/frontend/src/shared/services/
/idea/frontend/src/shared/services/rpcService/
/idea/frontend/src/shared/services/rpcService/index.ts
/idea/frontend/src/shared/services/rpcService/model/
/idea/frontend/src/shared/services/rpcService/model/RPCError.ts
/idea/frontend/src/shared/services/rpcService/model/RPCService.ts
/idea/frontend/src/shared/services/rpcService/model/consts.ts
/idea/frontend/src/shared/services/rpcService/model/types.ts
/idea/frontend/src/shared/types/
/idea/frontend/src/shared/types/entities.ts
/idea/frontend/src/shared/types/index.ts
/idea/frontend/src/shared/ui/
/idea/frontend/src/shared/ui/ActionLink/
/idea/frontend/src/shared/ui/ActionLink/ActionLink.module.scss
/idea/frontend/src/shared/ui/ActionLink/ActionLink.tsx
/idea/frontend/src/shared/ui/ActionLink/index.ts
/idea/frontend/src/shared/ui/backButton/
/idea/frontend/src/shared/ui/backButton/BackButton.tsx
/idea/frontend/src/shared/ui/backButton/index.ts
/idea/frontend/src/shared/ui/box/
/idea/frontend/src/shared/ui/box/Box.module.scss
/idea/frontend/src/shared/ui/box/Box.tsx
/idea/frontend/src/shared/ui/box/index.ts
/idea/frontend/src/shared/ui/bulbBlock/
/idea/frontend/src/shared/ui/bulbBlock/BulbBlock.module.scss
/idea/frontend/src/shared/ui/bulbBlock/BulbBlock.tsx
/idea/frontend/src/shared/ui/bulbBlock/const.ts
/idea/frontend/src/shared/ui/bulbBlock/index.ts
/idea/frontend/src/shared/ui/confirm-modal/
/idea/frontend/src/shared/ui/confirm-modal/confirm-modal.module.scss
/idea/frontend/src/shared/ui/confirm-modal/confirm-modal.tsx
/idea/frontend/src/shared/ui/confirm-modal/index.tsx
/idea/frontend/src/shared/ui/contentLoader/
/idea/frontend/src/shared/ui/contentLoader/ContentLoader.module.scss
/idea/frontend/src/shared/ui/contentLoader/ContentLoader.tsx
/idea/frontend/src/shared/ui/contentLoader/index.ts
/idea/frontend/src/shared/ui/copiedInfo/
/idea/frontend/src/shared/ui/copiedInfo/CopiedInfo.module.scss
/idea/frontend/src/shared/ui/copiedInfo/CopiedInfo.tsx
/idea/frontend/src/shared/ui/copiedInfo/index.ts
/idea/frontend/src/shared/ui/customLink/
/idea/frontend/src/shared/ui/customLink/CustomLink.module.scss
/idea/frontend/src/shared/ui/customLink/CustomLink.tsx
/idea/frontend/src/shared/ui/customLink/index.ts
/idea/frontend/src/shared/ui/emptyContent/
/idea/frontend/src/shared/ui/emptyContent/EmptyContent.module.scss
/idea/frontend/src/shared/ui/emptyContent/EmptyContent.tsx
/idea/frontend/src/shared/ui/emptyContent/index.ts
/idea/frontend/src/shared/ui/errorFallback/
/idea/frontend/src/shared/ui/errorFallback/ErrorFallback.module.scss
/idea/frontend/src/shared/ui/errorFallback/ErrorFallback.tsx
/idea/frontend/src/shared/ui/errorFallback/index.ts
/idea/frontend/src/shared/ui/examplesLink/
/idea/frontend/src/shared/ui/examplesLink/ExamplesLink.module.scss
/idea/frontend/src/shared/ui/examplesLink/ExamplesLink.tsx
/idea/frontend/src/shared/ui/examplesLink/index.ts
/idea/frontend/src/shared/ui/form/
/idea/frontend/src/shared/ui/form/Form.module.scss
/idea/frontend/src/shared/ui/form/balance-unit/
/idea/frontend/src/shared/ui/form/balance-unit/BalanceUnit.module.scss
/idea/frontend/src/shared/ui/form/balance-unit/BalanceUnit.tsx
/idea/frontend/src/shared/ui/form/balance-unit/index.ts
/idea/frontend/src/shared/ui/form/checkbox/
/idea/frontend/src/shared/ui/form/checkbox/checkbox.tsx
/idea/frontend/src/shared/ui/form/checkbox/index.ts
/idea/frontend/src/shared/ui/form/fieldset/
/idea/frontend/src/shared/ui/form/fieldset/fieldset.module.scss
/idea/frontend/src/shared/ui/form/fieldset/fieldset.tsx
/idea/frontend/src/shared/ui/form/fieldset/index.ts
/idea/frontend/src/shared/ui/form/index.ts
/idea/frontend/src/shared/ui/form/input/
/idea/frontend/src/shared/ui/form/input/index.ts
/idea/frontend/src/shared/ui/form/input/input.tsx
/idea/frontend/src/shared/ui/form/radio/
/idea/frontend/src/shared/ui/form/radio/index.ts
/idea/frontend/src/shared/ui/form/radio/radio.tsx
/idea/frontend/src/shared/ui/form/search-form/
/idea/frontend/src/shared/ui/form/search-form/index.ts
/idea/frontend/src/shared/ui/form/search-form/search-form.tsx
/idea/frontend/src/shared/ui/form/select/
/idea/frontend/src/shared/ui/form/select/index.ts
/idea/frontend/src/shared/ui/form/select/select.tsx
/idea/frontend/src/shared/ui/form/textarea/
/idea/frontend/src/shared/ui/form/textarea/index.ts
/idea/frontend/src/shared/ui/form/textarea/textarea.tsx
/idea/frontend/src/shared/ui/form/value-field/
/idea/frontend/src/shared/ui/form/value-field/ValueField.tsx
/idea/frontend/src/shared/ui/form/value-field/index.ts
/idea/frontend/src/shared/ui/idBlock/
/idea/frontend/src/shared/ui/idBlock/IdBlock.module.scss
/idea/frontend/src/shared/ui/idBlock/IdBlock.tsx
/idea/frontend/src/shared/ui/idBlock/index.ts
/idea/frontend/src/shared/ui/index.ts
/idea/frontend/src/shared/ui/indicator/
/idea/frontend/src/shared/ui/indicator/Indicator.module.scss
/idea/frontend/src/shared/ui/indicator/Indicator.tsx
/idea/frontend/src/shared/ui/indicator/index.ts
/idea/frontend/src/shared/ui/labeled-checkbox/
/idea/frontend/src/shared/ui/labeled-checkbox/index.ts
/idea/frontend/src/shared/ui/labeled-checkbox/labeled-checkbox.module.scss
/idea/frontend/src/shared/ui/labeled-checkbox/labeled-checkbox.tsx
/idea/frontend/src/shared/ui/list/
/idea/frontend/src/shared/ui/list/index.ts
/idea/frontend/src/shared/ui/list/list.module.scss
/idea/frontend/src/shared/ui/list/list.tsx
/idea/frontend/src/shared/ui/list/observer.tsx
/idea/frontend/src/shared/ui/loader/
/idea/frontend/src/shared/ui/loader/Loader.module.scss
/idea/frontend/src/shared/ui/loader/Loader.tsx
/idea/frontend/src/shared/ui/loader/index.ts
/idea/frontend/src/shared/ui/onboardingTooltip/
/idea/frontend/src/shared/ui/onboardingTooltip/OnboardingTooltip.module.scss
/idea/frontend/src/shared/ui/onboardingTooltip/OnboardingTooltip.tsx
/idea/frontend/src/shared/ui/onboardingTooltip/index.ts
/idea/frontend/src/shared/ui/ownerBlock/
/idea/frontend/src/shared/ui/ownerBlock/OwnerBlock.module.scss
/idea/frontend/src/shared/ui/ownerBlock/OwnerBlock.tsx
/idea/frontend/src/shared/ui/ownerBlock/index.ts
/idea/frontend/src/shared/ui/preformattedBlock/
/idea/frontend/src/shared/ui/preformattedBlock/PreformattedBlock.module.scss
/idea/frontend/src/shared/ui/preformattedBlock/PreformattedBlock.tsx
/idea/frontend/src/shared/ui/preformattedBlock/index.ts
/idea/frontend/src/shared/ui/program-tab-layout/
/idea/frontend/src/shared/ui/program-tab-layout/index.ts
/idea/frontend/src/shared/ui/program-tab-layout/program-tab-layout.module.scss
/idea/frontend/src/shared/ui/program-tab-layout/program-tab-layout.tsx
/idea/frontend/src/shared/ui/skeleton/
/idea/frontend/src/shared/ui/skeleton/index.ts
/idea/frontend/src/shared/ui/skeleton/skeleton.module.scss
/idea/frontend/src/shared/ui/skeleton/skeleton.tsx
/idea/frontend/src/shared/ui/subheader/
/idea/frontend/src/shared/ui/subheader/Subheader.module.scss
/idea/frontend/src/shared/ui/subheader/Subheader.tsx
/idea/frontend/src/shared/ui/subheader/index.ts
/idea/frontend/src/shared/ui/table/
/idea/frontend/src/shared/ui/table/index.ts
/idea/frontend/src/shared/ui/table/ui/
/idea/frontend/src/shared/ui/table/ui/Table.module.scss
/idea/frontend/src/shared/ui/table/ui/Table.tsx
/idea/frontend/src/shared/ui/table/ui/tableRow/
/idea/frontend/src/shared/ui/table/ui/tableRow/TableRow.tsx
/idea/frontend/src/shared/ui/table/ui/tableRow/index.ts
/idea/frontend/src/shared/ui/timestampBlock/
/idea/frontend/src/shared/ui/timestampBlock/TimestampBlock.module.scss
/idea/frontend/src/shared/ui/timestampBlock/TimestampBlock.tsx
/idea/frontend/src/shared/ui/timestampBlock/index.ts
/idea/frontend/src/shared/ui/uiLink/
/idea/frontend/src/shared/ui/uiLink/UILink.tsx
/idea/frontend/src/shared/ui/uiLink/index.ts
/idea/frontend/src/shared/ui/with-account/
/idea/frontend/src/shared/ui/with-account/index.ts
/idea/frontend/src/shared/ui/with-account/with-account.tsx
/idea/frontend/src/shared/ui/with-deprecated-fallback/
/idea/frontend/src/shared/ui/with-deprecated-fallback/index.ts
/idea/frontend/src/shared/ui/with-deprecated-fallback/with-deprecated-fallback.tsx
/idea/frontend/src/vite-env.d.ts
/idea/frontend/src/widgets/
/idea/frontend/src/widgets/footer/
/idea/frontend/src/widgets/footer/index.ts
/idea/frontend/src/widgets/footer/model/
/idea/frontend/src/widgets/footer/model/consts.ts
/idea/frontend/src/widgets/footer/ui/
/idea/frontend/src/widgets/footer/ui/Footer.module.scss
/idea/frontend/src/widgets/footer/ui/Footer.tsx
/idea/frontend/src/widgets/footer/ui/socialItem/
/idea/frontend/src/widgets/footer/ui/socialItem/SocialItem.module.scss
/idea/frontend/src/widgets/footer/ui/socialItem/SocialItem.tsx
/idea/frontend/src/widgets/footer/ui/socialItem/index.ts
/idea/frontend/src/widgets/footer/ui/socials/
/idea/frontend/src/widgets/footer/ui/socials/Socials.module.scss
/idea/frontend/src/widgets/footer/ui/socials/Socials.tsx
/idea/frontend/src/widgets/footer/ui/socials/index.ts
/idea/frontend/src/widgets/header/
/idea/frontend/src/widgets/header/index.ts
/idea/frontend/src/widgets/header/model/
/idea/frontend/src/widgets/header/model/consts.ts
/idea/frontend/src/widgets/header/ui/
/idea/frontend/src/widgets/header/ui/Header.module.scss
/idea/frontend/src/widgets/header/ui/Header.tsx
/idea/frontend/src/widgets/header/ui/bottomSide/
/idea/frontend/src/widgets/header/ui/bottomSide/BottomSide.module.scss
/idea/frontend/src/widgets/header/ui/bottomSide/BottomSide.tsx
/idea/frontend/src/widgets/header/ui/bottomSide/index.ts
/idea/frontend/src/widgets/header/ui/topSide/
/idea/frontend/src/widgets/header/ui/topSide/TopSide.module.scss
/idea/frontend/src/widgets/header/ui/topSide/TopSide.tsx
/idea/frontend/src/widgets/header/ui/topSide/index.ts
/idea/frontend/src/widgets/header/ui/totalIssuance/
/idea/frontend/src/widgets/header/ui/totalIssuance/TotalIssuance.tsx
/idea/frontend/src/widgets/header/ui/totalIssuance/index.ts
/idea/frontend/src/widgets/menu/
/idea/frontend/src/widgets/menu/helpers/
/idea/frontend/src/widgets/menu/helpers/helpers.ts
/idea/frontend/src/widgets/menu/helpers/useNodes.ts
/idea/frontend/src/widgets/menu/index.ts
/idea/frontend/src/widgets/menu/model/
/idea/frontend/src/widgets/menu/model/consts.ts
/idea/frontend/src/widgets/menu/ui/
/idea/frontend/src/widgets/menu/ui/Menu.module.scss
/idea/frontend/src/widgets/menu/ui/Menu.tsx
/idea/frontend/src/widgets/menu/ui/appExamplesLink/
/idea/frontend/src/widgets/menu/ui/appExamplesLink/AppExamplesLink.tsx
/idea/frontend/src/widgets/menu/ui/appExamplesLink/index.ts
/idea/frontend/src/widgets/menu/ui/logo/
/idea/frontend/src/widgets/menu/ui/logo/Logo.module.scss
/idea/frontend/src/widgets/menu/ui/logo/Logo.tsx
/idea/frontend/src/widgets/menu/ui/logo/index.ts
/idea/frontend/src/widgets/menu/ui/navigation/
/idea/frontend/src/widgets/menu/ui/navigation/Navigation.module.scss
/idea/frontend/src/widgets/menu/ui/navigation/Navigation.tsx
/idea/frontend/src/widgets/menu/ui/navigation/index.ts
/idea/frontend/src/widgets/menu/ui/navigationItem/
/idea/frontend/src/widgets/menu/ui/navigationItem/NavigationItem.tsx
/idea/frontend/src/widgets/menu/ui/navigationItem/index.ts
/idea/frontend/src/widgets/messageForm/
/idea/frontend/src/widgets/messageForm/index.ts
/idea/frontend/src/widgets/messageForm/model/
/idea/frontend/src/widgets/messageForm/model/const.ts
/idea/frontend/src/widgets/messageForm/model/index.ts
/idea/frontend/src/widgets/messageForm/model/types.ts
/idea/frontend/src/widgets/messageForm/ui/
/idea/frontend/src/widgets/messageForm/ui/index.ts
/idea/frontend/src/widgets/messageForm/ui/message-form.module.scss
/idea/frontend/src/widgets/messageForm/ui/message-form.tsx
/idea/frontend/src/widgets/messageForm/ui/sails-message-form.tsx
/idea/frontend/src/widgets/messageModal/
/idea/frontend/src/widgets/messageModal/index.ts
/idea/frontend/src/widgets/messageModal/ui/
/idea/frontend/src/widgets/messageModal/ui/MessageModal.module.scss
/idea/frontend/src/widgets/messageModal/ui/MessageModal.tsx
/idea/frontend/src/widgets/mobileDisclaimer/
/idea/frontend/src/widgets/mobileDisclaimer/MobileDisclaimer.module.scss
/idea/frontend/src/widgets/mobileDisclaimer/MobileDisclaimer.tsx
/idea/frontend/src/widgets/mobileDisclaimer/index.ts
/idea/frontend/src/widgets/networkModal/
/idea/frontend/src/widgets/networkModal/index.ts
/idea/frontend/src/widgets/networkModal/ui/
/idea/frontend/src/widgets/networkModal/ui/NetworkModal.module.scss
/idea/frontend/src/widgets/networkModal/ui/NetworkModal.tsx
/idea/frontend/src/widgets/programForm/
/idea/frontend/src/widgets/programForm/index.ts
/idea/frontend/src/widgets/programForm/model/
/idea/frontend/src/widgets/programForm/model/consts.ts
/idea/frontend/src/widgets/programForm/model/index.ts
/idea/frontend/src/widgets/programForm/model/types.ts
/idea/frontend/src/widgets/programForm/ui/
/idea/frontend/src/widgets/programForm/ui/ProgramForm.module.scss
/idea/frontend/src/widgets/programForm/ui/ProgramForm.tsx
/idea/frontend/src/widgets/programForm/ui/sails-program-form.tsx
/idea/frontend/src/widgets/transactionModal/
/idea/frontend/src/widgets/transactionModal/index.ts
/idea/frontend/src/widgets/transactionModal/ui/
/idea/frontend/src/widgets/transactionModal/ui/TransactionModal.module.scss
/idea/frontend/src/widgets/transactionModal/ui/TransactionModal.tsx
/idea/frontend/src/widgets/uploadFileModal/
/idea/frontend/src/widgets/uploadFileModal/index.ts
/idea/frontend/src/widgets/uploadFileModal/model/
/idea/frontend/src/widgets/uploadFileModal/model/const.ts
/idea/frontend/src/widgets/uploadFileModal/ui/
/idea/frontend/src/widgets/uploadFileModal/ui/UploadFileModal.module.scss
/idea/frontend/src/widgets/uploadFileModal/ui/UploadFileModal.tsx
/idea/frontend/src/widgets/uploadFileModal/ui/dropTarget/
/idea/frontend/src/widgets/uploadFileModal/ui/dropTarget/DropTarget.module.scss
/idea/frontend/src/widgets/uploadFileModal/ui/dropTarget/DropTarget.tsx
/idea/frontend/src/widgets/uploadFileModal/ui/dropTarget/index.ts
/idea/frontend/src/widgets/uploadMetadataModal/
/idea/frontend/src/widgets/uploadMetadataModal/index.ts
/idea/frontend/src/widgets/uploadMetadataModal/ui/
/idea/frontend/src/widgets/uploadMetadataModal/ui/UploadMetadataModal.module.scss
/idea/frontend/src/widgets/uploadMetadataModal/ui/UploadMetadataModal.tsx
/idea/frontend/tsconfig.json
/idea/frontend/tsconfig.node.json
/idea/frontend/vite.config.ts
/idea/indexer/
/idea/indexer/.env.example
/idea/indexer/.gitignore
/idea/indexer/Dockerfile
/idea/indexer/README.md
/idea/indexer/package.json
/idea/indexer/src/
/idea/indexer/src/common/
/idea/indexer/src/common/constants.ts
/idea/indexer/src/common/enums/
/idea/indexer/src/common/enums/code-status.enum.ts
/idea/indexer/src/common/enums/index.ts
/idea/indexer/src/common/enums/message-entry-poing.enum.ts
/idea/indexer/src/common/enums/message-read-reason.enum.ts
/idea/indexer/src/common/enums/message-status.enum.ts
/idea/indexer/src/common/enums/message-type.enum.ts
/idea/indexer/src/common/enums/program-status.enum.ts
/idea/indexer/src/common/helpers/
/idea/indexer/src/common/helpers/generate-uuid.ts
/idea/indexer/src/common/helpers/get-extrinsics.ts
/idea/indexer/src/common/helpers/get-msg-entry.ts
/idea/indexer/src/common/helpers/get-payload-by-gear-event.ts
/idea/indexer/src/common/helpers/get-update-message-data.ts
/idea/indexer/src/common/helpers/index.ts
/idea/indexer/src/common/helpers/metahash.ts
/idea/indexer/src/common/index.ts
/idea/indexer/src/common/types/
/idea/indexer/src/common/types/code.ts
/idea/indexer/src/common/types/gear.ts
/idea/indexer/src/common/types/index.ts
/idea/indexer/src/common/types/indexer.ts
/idea/indexer/src/common/types/message.ts
/idea/indexer/src/common/types/program.ts
/idea/indexer/src/config.ts
/idea/indexer/src/database/
/idea/indexer/src/database/data-source.ts
/idea/indexer/src/database/entities/
/idea/indexer/src/database/entities/base.entity.ts
/idea/indexer/src/database/entities/block.entity.ts
/idea/indexer/src/database/entities/code.entity.ts
/idea/indexer/src/database/entities/index.ts
/idea/indexer/src/database/entities/message.entity.ts
/idea/indexer/src/database/entities/program.entity.ts
/idea/indexer/src/database/entities/state.entity.ts
/idea/indexer/src/database/entities/status.entity.ts
/idea/indexer/src/database/index.ts
/idea/indexer/src/database/migrations/
/idea/indexer/src/database/migrations/1666974357483-init.ts
/idea/indexer/src/database/migrations/1673872715863-update_meta_code_and_add_state_table.ts
/idea/indexer/src/database/migrations/1674754846501-update_meta_table_colums.ts
/idea/indexer/src/database/migrations/1675420216422-update_program_status.ts
/idea/indexer/src/database/migrations/1676455747413-update_message_table.ts
/idea/indexer/src/database/migrations/1677069754299-delete_unique_hash_meta_table.ts
/idea/indexer/src/database/migrations/1677072331302-update_relation_between_code_and_meta.ts
/idea/indexer/src/database/migrations/1678708517193-code-status-unknown.ts
/idea/indexer/src/database/migrations/1678717516065-unique-meta-hash.ts
/idea/indexer/src/database/migrations/1680591096475-status.ts
/idea/indexer/src/database/migrations/1681206929961-program-expiration.ts
/idea/indexer/src/database/migrations/1681220971037-remove-generated-pk.ts
/idea/indexer/src/database/migrations/1685519228764-nullable-owner.ts
/idea/indexer/src/database/migrations/1689589565828-remove-meta-entity.ts
/idea/indexer/src/database/migrations/1690793654952-add-has-state-field.ts
/idea/indexer/src/database/migrations/1694089926155-add-indexes.ts
/idea/indexer/src/database/migrations/1701091693635-add-indexes.ts
/idea/indexer/src/database/migrations/1707831399009-drop-relations.ts
/idea/indexer/src/gear/
/idea/indexer/src/gear/connect.ts
/idea/indexer/src/gear/handlers/
/idea/indexer/src/gear/handlers/batch.ts
/idea/indexer/src/gear/handlers/code.ts
/idea/indexer/src/gear/handlers/events.ts
/idea/indexer/src/gear/handlers/index.ts
/idea/indexer/src/gear/handlers/msg.ts
/idea/indexer/src/gear/handlers/program.ts
/idea/indexer/src/gear/handlers/voucher.ts
/idea/indexer/src/gear/index.ts
/idea/indexer/src/gear/indexer.ts
/idea/indexer/src/gear/temp-state.ts
/idea/indexer/src/healthcheck.server.ts
/idea/indexer/src/main.ts
/idea/indexer/src/rmq.ts
/idea/indexer/src/services/
/idea/indexer/src/services/block.service.ts
/idea/indexer/src/services/code.service.ts
/idea/indexer/src/services/index.ts
/idea/indexer/src/services/message.service.ts
/idea/indexer/src/services/program.service.ts
/idea/indexer/src/services/state.service.ts
/idea/indexer/src/services/status.service.ts
/idea/indexer/tsconfig.json
/idea/indexer-db/
/idea/indexer-db/README.md
/idea/indexer-db/package.json
/idea/indexer-db/src/
/idea/indexer-db/src/connection.ts
/idea/indexer-db/src/entities/
/idea/indexer-db/src/entities/base.entity.ts
/idea/indexer-db/src/entities/code.entity.ts
/idea/indexer-db/src/entities/event.entity.ts
/idea/indexer-db/src/entities/index.ts
/idea/indexer-db/src/entities/message-from-program.entity.ts
/idea/indexer-db/src/entities/message-to-program.entity.ts
/idea/indexer-db/src/entities/program.entity.ts
/idea/indexer-db/src/enums/
/idea/indexer-db/src/enums/code.ts
/idea/indexer-db/src/enums/index.ts
/idea/indexer-db/src/enums/message.ts
/idea/indexer-db/src/enums/program.ts
/idea/indexer-db/src/index.ts
/idea/indexer-db/tsconfig.json
/idea/meta-storage/
/idea/meta-storage/.env.example
/idea/meta-storage/.gitignore
/idea/meta-storage/Dockerfile
/idea/meta-storage/README.md
/idea/meta-storage/package.json
/idea/meta-storage/src/
/idea/meta-storage/src/config.ts
/idea/meta-storage/src/database/
/idea/meta-storage/src/database/data-source.ts
/idea/meta-storage/src/database/entities/
/idea/meta-storage/src/database/entities/code.entity.ts
/idea/meta-storage/src/database/entities/index.ts
/idea/meta-storage/src/database/entities/meta.entity.ts
/idea/meta-storage/src/database/entities/sails.entity.ts
/idea/meta-storage/src/database/index.ts
/idea/meta-storage/src/main.ts
/idea/meta-storage/src/rmq.ts
/idea/meta-storage/src/service.ts
/idea/meta-storage/src/util/
/idea/meta-storage/src/util/validate.ts
/idea/meta-storage/tsconfig.json
/idea/squid/
/idea/squid/Dockerfile
/idea/squid/README.md
/idea/squid/db/
/idea/squid/db/migrations/
/idea/squid/db/migrations/1721908575703-Data.js
/idea/squid/package.json
/idea/squid/run.sh
/idea/squid/src/
/idea/squid/src/common/
/idea/squid/src/common/enums/
/idea/squid/src/common/enums/calls.ts
/idea/squid/src/common/enums/events.ts
/idea/squid/src/common/enums/index.ts
/idea/squid/src/common/enums/message-status.ts
/idea/squid/src/common/index.ts
/idea/squid/src/config.ts
/idea/squid/src/main.ts
/idea/squid/src/model/
/idea/squid/src/model/index.ts
/idea/squid/src/processor.ts
/idea/squid/src/temp-state.ts
/idea/squid/src/types/
/idea/squid/src/types/calls/
/idea/squid/src/types/calls/code.ts
/idea/squid/src/types/calls/index.ts
/idea/squid/src/types/calls/message.ts
/idea/squid/src/types/calls/program.ts
/idea/squid/src/types/calls/voucher.ts
/idea/squid/src/types/events/
/idea/squid/src/types/events/code.ts
/idea/squid/src/types/events/index.ts
/idea/squid/src/types/events/message.ts
/idea/squid/src/types/events/program.ts
/idea/squid/src/types/index.ts
/idea/squid/src/util.ts
/idea/squid/tsconfig.json
/idea/test-balance/
/idea/test-balance/.env.example
/idea/test-balance/.eslintrc.js
/idea/test-balance/.gitignore
/idea/test-balance/Dockerfile
/idea/test-balance/README.md
/idea/test-balance/package.json
/idea/test-balance/src/
/idea/test-balance/src/config.ts
/idea/test-balance/src/database/
/idea/test-balance/src/database/app-data-source.ts
/idea/test-balance/src/database/index.ts
/idea/test-balance/src/database/transfer.entity.ts
/idea/test-balance/src/healthcheck.router.ts
/idea/test-balance/src/main.ts
/idea/test-balance/src/services/
/idea/test-balance/src/services/gear.ts
/idea/test-balance/src/services/index.ts
/idea/test-balance/src/services/rmq.ts
/idea/test-balance/src/services/transfer.ts
/idea/test-balance/src/utils/
/idea/test-balance/src/utils/create-account.ts
/idea/test-balance/src/utils/index.ts
/idea/test-balance/src/utils/validate-address.ts
/idea/test-balance/tsconfig.json
/idea/tests/
/idea/tests/.gitignore
/idea/tests/Makefile
/idea/tests/README.md
/idea/tests/babel.config.json
/idea/tests/e2e/
/idea/tests/e2e/config.ts
/idea/tests/e2e/indexer.test.ts
/idea/tests/e2e/jsonrpc-errors.test.ts
/idea/tests/e2e/meta-storage.test.ts
/idea/tests/e2e/request.ts
/idea/tests/e2e/test-balance.test.ts
/idea/tests/e2e/utils.ts
/idea/tests/jest.config.js
/idea/tests/package.json
/idea/tests/programs/
/idea/tests/programs/Cargo.lock
/idea/tests/programs/Cargo.toml
/idea/tests/programs/ping-sails/
/idea/tests/programs/ping-sails/README.md
/idea/tests/programs/ping-sails/app/
/idea/tests/programs/ping-sails/app/Cargo.toml
/idea/tests/programs/ping-sails/app/src/
/idea/tests/programs/ping-sails/app/src/lib.rs
/idea/tests/programs/ping-sails/app/src/service.rs
/idea/tests/programs/ping-sails/wasm/
/idea/tests/programs/ping-sails/wasm/.binpath
/idea/tests/programs/ping-sails/wasm/Cargo.toml
/idea/tests/programs/ping-sails/wasm/build.rs
/idea/tests/programs/ping-sails/wasm/ping.idl
/idea/tests/programs/ping-sails/wasm/src/
/idea/tests/programs/ping-sails/wasm/src/lib.rs
/idea/tests/tsconfig.json
/idea/tests/wasm-test/
/idea/tests/wasm-test/app.opt.wasm
/idea/voucher-indexer/
/idea/voucher-indexer/.gitignore
/idea/voucher-indexer/Dockerfile
/idea/voucher-indexer/README.md
/idea/voucher-indexer/package.json
/idea/voucher-indexer/src/
/idea/voucher-indexer/src/common/
/idea/voucher-indexer/src/common/enum.ts
/idea/voucher-indexer/src/common/index.ts
/idea/voucher-indexer/src/config.ts
/idea/voucher-indexer/src/main.ts
/idea/voucher-indexer/src/model/
/idea/voucher-indexer/src/model/index.ts
/idea/voucher-indexer/src/model/voucher.model.ts
/idea/voucher-indexer/src/processor.ts
/idea/voucher-indexer/src/server.ts
/idea/voucher-indexer/src/service.ts
/idea/voucher-indexer/src/state.ts
/idea/voucher-indexer/src/types/
/idea/voucher-indexer/src/types/call.ts
/idea/voucher-indexer/src/types/event.ts
/idea/voucher-indexer/src/types/index.ts
/idea/voucher-indexer/tsconfig.json