├── .babelrc ├── .eslintrc ├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── spectrum.config.js ├── spectrum.dapplet.js ├── src ├── actions │ ├── address.js │ ├── keystore.js │ ├── keystoreType.js │ ├── network.js │ ├── session.js │ └── token.js ├── assets │ ├── digix_logo_minimal_blue_mini.png │ ├── icon.png │ └── qr-overlay.png ├── components │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── app.test.jsx.snap │ │ └── app.test.jsx │ ├── app.jsx │ ├── common │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── active_link.test.jsx.snap │ │ │ │ ├── address.test.jsx.snap │ │ │ │ ├── address_dropdown.test.jsx.snap │ │ │ │ ├── address_input.test.jsx.snap │ │ │ │ ├── address_selector.test.jsx.snap │ │ │ │ ├── advanced.test.jsx.snap │ │ │ │ ├── balance_label.test.jsx.snap │ │ │ │ ├── button_selector.test.jsx.snap │ │ │ │ ├── color_picker.test.jsx.snap │ │ │ │ ├── connection_status.test.jsx.snap │ │ │ │ ├── crypto_price.test.jsx.snap │ │ │ │ ├── default_address_selector.test.jsx.snap │ │ │ │ ├── download_json_button.test.jsx.snap │ │ │ │ ├── dropdown_selector.test.jsx.snap │ │ │ │ ├── entropy_field.test.jsx.snap │ │ │ │ ├── entropy_generator.test.jsx.snap │ │ │ │ ├── error_message.test.jsx.snap │ │ │ │ ├── footer.test.jsx.snap │ │ │ │ ├── form_field.test.jsx.snap │ │ │ │ ├── ipfs_image.test.jsx.snap │ │ │ │ ├── ipfs_uploader.test.jsx.snap │ │ │ │ ├── menu_system.test.jsx.snap │ │ │ │ ├── network_selector.test.jsx.snap │ │ │ │ ├── network_status.test.jsx.snap │ │ │ │ ├── network_tokens_selector.test.jsx.snap │ │ │ │ ├── pagination_menu.test.jsx.snap │ │ │ │ ├── qr_button.test.jsx.snap │ │ │ │ ├── qr_code.test.jsx.snap │ │ │ │ ├── qr_multi_button.test.jsx.snap │ │ │ │ ├── qr_reader.test.jsx.snap │ │ │ │ ├── series_paginator.test.jsx.snap │ │ │ │ ├── startup_overlay.test.jsx.snap │ │ │ │ ├── tx_visualisation.test.jsx.snap │ │ │ │ └── value_input.test.jsx.snap │ │ │ ├── active_link.test.jsx │ │ │ ├── address.test.jsx │ │ │ ├── address_dropdown.test.jsx │ │ │ ├── address_input.test.jsx │ │ │ ├── address_selector.test.jsx │ │ │ ├── advanced.test.jsx │ │ │ ├── balance_label.test.jsx │ │ │ ├── button_selector.test.jsx │ │ │ ├── color_picker.test.jsx │ │ │ ├── connection_status.test.jsx │ │ │ ├── crypto_price.test.jsx │ │ │ ├── default_address_selector.test.jsx │ │ │ ├── download_json_button.test.jsx │ │ │ ├── dropdown_selector.test.jsx │ │ │ ├── entropy_field.test.jsx │ │ │ ├── entropy_generator.test.jsx │ │ │ ├── error_message.test.jsx │ │ │ ├── footer.test.jsx │ │ │ ├── form_field.test.jsx │ │ │ ├── ipfs_image.test.jsx │ │ │ ├── ipfs_uploader.test.jsx │ │ │ ├── menu_system.test.jsx │ │ │ ├── network_selector.test.jsx │ │ │ ├── network_status.test.jsx │ │ │ ├── network_tokens_selector.test.jsx │ │ │ ├── pagination_menu.test.jsx │ │ │ ├── qr_button.test.jsx │ │ │ ├── qr_code.test.jsx │ │ │ ├── qr_multi_button.test.jsx │ │ │ ├── qr_reader.test.jsx │ │ │ ├── series_paginator.test.jsx │ │ │ ├── startup_overlay.test.jsx │ │ │ ├── tx_visualisation.test.jsx │ │ │ └── value_input.test.jsx │ │ ├── active_link.jsx │ │ ├── address.jsx │ │ ├── address_dropdown.jsx │ │ ├── address_input.jsx │ │ ├── address_selector.jsx │ │ ├── advanced.jsx │ │ ├── balance_label.jsx │ │ ├── button_selector.jsx │ │ ├── color_picker.jsx │ │ ├── connection_status.jsx │ │ ├── crypto_price.jsx │ │ ├── default_address_selector.jsx │ │ ├── dll_paginator.jsx │ │ ├── download_json_button.jsx │ │ ├── dropdown_selector.jsx │ │ ├── entropy_field.jsx │ │ ├── entropy_generator.jsx │ │ ├── error_message.jsx │ │ ├── footer.jsx │ │ ├── form_field.jsx │ │ ├── form_image_field.jsx │ │ ├── form_image_preview.jsx │ │ ├── ipfs_image.jsx │ │ ├── ipfs_uploader.jsx │ │ ├── lazyload.jsx │ │ ├── menu_system.jsx │ │ ├── menu_system_dropdown.jsx │ │ ├── network_selector.jsx │ │ ├── network_status.jsx │ │ ├── network_tokens_selector.jsx │ │ ├── pagination_menu.jsx │ │ ├── qr_button.jsx │ │ ├── qr_code.jsx │ │ ├── qr_multi_button.jsx │ │ ├── qr_reader.jsx │ │ ├── redux_paginator.jsx │ │ ├── series_paginator.jsx │ │ ├── spectrum_watermark.jsx │ │ ├── startup_overlay.jsx │ │ ├── success_header.jsx │ │ ├── tx_visualisation.jsx │ │ └── value_input.jsx │ ├── config │ │ ├── index.jsx │ │ ├── networks │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── index.test.jsx.snap │ │ │ │ │ ├── network.test.jsx.snap │ │ │ │ │ └── network_form.test.jsx.snap │ │ │ │ ├── index.test.jsx │ │ │ │ ├── network.test.jsx │ │ │ │ └── network_form.test.jsx │ │ │ ├── index.jsx │ │ │ ├── network.jsx │ │ │ └── network_form.jsx │ │ └── tokens │ │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── index.test.jsx.snap │ │ │ │ ├── token.test.jsx.snap │ │ │ │ └── token_form.test.jsx.snap │ │ │ ├── index.test.jsx │ │ │ ├── token.test.jsx │ │ │ └── token_form.test.jsx │ │ │ ├── index.jsx │ │ │ ├── token.jsx │ │ │ └── token_form.jsx │ ├── dapplets │ │ ├── index.jsx │ │ └── placeholder.jsx │ ├── keystores │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── address.test.jsx.snap │ │ │ │ ├── address_balances.test.jsx.snap │ │ │ │ ├── import_keystore_form.test.jsx.snap │ │ │ │ ├── import_keystore_modal.test.jsx.snap │ │ │ │ ├── index.test.jsx.snap │ │ │ │ ├── keystore_buttons.test.jsx.snap │ │ │ │ ├── keystore_creation_form.test.jsx.snap │ │ │ │ ├── keystore_edit_form.test.jsx.snap │ │ │ │ ├── keystore_menu.test.jsx.snap │ │ │ │ ├── keystore_modal.test.jsx.snap │ │ │ │ ├── keystore_selector.test.jsx.snap │ │ │ │ └── keystore_type_message.test.jsx.snap │ │ │ ├── address.test.jsx │ │ │ ├── address_balances.test.jsx │ │ │ ├── import_keystore_form.test.jsx │ │ │ ├── import_keystore_modal.test.jsx │ │ │ ├── index.test.jsx │ │ │ ├── keystore_buttons.test.jsx │ │ │ ├── keystore_creation_form.test.jsx │ │ │ ├── keystore_edit_form.test.jsx │ │ │ ├── keystore_menu.test.jsx │ │ │ ├── keystore_modal.test.jsx │ │ │ ├── keystore_selector.test.jsx │ │ │ └── keystore_type_message.test.jsx │ │ ├── address.jsx │ │ ├── address_balances.jsx │ │ ├── base_token │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── base_token_balance.test.jsx.snap │ │ │ │ │ ├── base_token_transfer.test.jsx.snap │ │ │ │ │ ├── base_token_transfer_form.test.jsx.snap │ │ │ │ │ ├── base_token_tx_ui.test.jsx.snap │ │ │ │ │ └── index.test.jsx.snap │ │ │ │ ├── base_token_balance.test.jsx │ │ │ │ ├── base_token_transfer.test.jsx │ │ │ │ ├── base_token_transfer_form.test.jsx │ │ │ │ ├── base_token_tx_ui.test.jsx │ │ │ │ └── index.test.jsx │ │ │ ├── base_token_balance.jsx │ │ │ ├── base_token_transfer.jsx │ │ │ ├── base_token_transfer_form.jsx │ │ │ ├── base_token_tx_ui.jsx │ │ │ └── index.jsx │ │ ├── generic_transaction │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── generic_transaction_form.test.jsx.snap │ │ │ │ │ └── index.test.jsx.snap │ │ │ │ ├── generic_transaction_form.test.jsx │ │ │ │ └── index.test.jsx │ │ │ ├── generic_transaction_form.jsx │ │ │ └── index.jsx │ │ ├── import_keystore_form.jsx │ │ ├── import_keystore_modal.jsx │ │ ├── index.jsx │ │ ├── keystore_buttons.jsx │ │ ├── keystore_creation_form.jsx │ │ ├── keystore_edit_form.jsx │ │ ├── keystore_menu.jsx │ │ ├── keystore_modal.jsx │ │ ├── keystore_selector.jsx │ │ ├── keystore_type_message.jsx │ │ └── token │ │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── index.test.jsx.snap │ │ │ │ ├── token_balance.test.jsx.snap │ │ │ │ ├── token_transfer.test.jsx.snap │ │ │ │ ├── token_transfer_form.test.jsx.snap │ │ │ │ └── token_tx_ui.test.jsx.snap │ │ │ ├── index.test.jsx │ │ │ ├── token_balance.test.jsx │ │ │ ├── token_transfer.test.jsx │ │ │ ├── token_transfer_form.test.jsx │ │ │ └── token_tx_ui.test.jsx │ │ │ ├── index.jsx │ │ │ ├── token_balance.jsx │ │ │ ├── token_transfer.jsx │ │ │ ├── token_transfer_form.jsx │ │ │ └── token_tx_ui.jsx │ └── transactions │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── transaction_info.test.jsx.snap │ │ │ ├── transaction_info_table.test.jsx.snap │ │ │ ├── transaction_modal.test.jsx.snap │ │ │ ├── transaction_modal_container.test.jsx.snap │ │ │ ├── transaction_modal_form.test.jsx.snap │ │ │ ├── transaction_signing_overlay.test.jsx.snap │ │ │ └── transaction_tracker.test.jsx.snap │ │ ├── transaction_info.test.jsx │ │ ├── transaction_info_table.test.jsx │ │ ├── transaction_modal.test.jsx │ │ ├── transaction_modal_container.test.jsx │ │ ├── transaction_modal_form.test.jsx │ │ ├── transaction_signing_overlay.test.jsx │ │ └── transaction_tracker.test.jsx │ │ ├── transaction_info.jsx │ │ ├── transaction_info_table.jsx │ │ ├── transaction_modal.jsx │ │ ├── transaction_modal_container.jsx │ │ ├── transaction_modal_form.jsx │ │ ├── transaction_signing_overlay.jsx │ │ └── transaction_tracker.jsx ├── helpers │ ├── blockie.js │ ├── constants.js │ ├── fileUtils.js │ ├── offlinePlugin.js │ ├── registerReducers.js │ ├── seedStore.js │ ├── stringUtils.js │ ├── uiRegistry.js │ ├── validation.js │ └── web3 │ │ ├── connect.js │ │ ├── index.js │ │ ├── redux_subprovider.js │ │ └── rpc_subprovider.js ├── index.html ├── index.jsx ├── keystoreTypes │ ├── cold │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── cold_keystore_address.test.jsx.snap │ │ │ │ ├── cold_keystore_creation_form.test.jsx.snap │ │ │ │ ├── cold_keystore_edit_form.test.jsx.snap │ │ │ │ └── cold_keystore_transaction_signer.test.jsx.snap │ │ │ ├── cold_keystore_address.test.jsx │ │ │ ├── cold_keystore_creation_form.test.jsx │ │ │ ├── cold_keystore_edit_form.test.jsx │ │ │ └── cold_keystore_transaction_signer.test.jsx │ │ ├── cold_keystore_actions.js │ │ ├── cold_keystore_address.jsx │ │ ├── cold_keystore_creation_form.jsx │ │ ├── cold_keystore_edit_form.jsx │ │ ├── cold_keystore_transaction_signer.jsx │ │ └── index.js │ ├── index.js │ ├── ledger │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── ledger_keystore_address_item.test.jsx.snap │ │ │ │ ├── ledger_keystore_address_list.test.jsx.snap │ │ │ │ ├── ledger_keystore_creation_form.test.jsx.snap │ │ │ │ ├── ledger_keystore_edit_form.test.jsx.snap │ │ │ │ └── ledger_keystore_transaction_signer.test.jsx.snap │ │ │ ├── ledger_keystore_address_item.test.jsx │ │ │ ├── ledger_keystore_address_list.test.jsx │ │ │ ├── ledger_keystore_creation_form.test.jsx │ │ │ ├── ledger_keystore_edit_form.test.jsx │ │ │ └── ledger_keystore_transaction_signer.test.jsx │ │ ├── index.js │ │ ├── ledger_keystore_actions.js │ │ ├── ledger_keystore_address_item.jsx │ │ ├── ledger_keystore_address_list.jsx │ │ ├── ledger_keystore_creation_form.jsx │ │ ├── ledger_keystore_edit_form.jsx │ │ └── ledger_keystore_transaction_signer.jsx │ ├── multisig │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── multisig_keystore_creation_form.test.jsx.snap │ │ │ │ ├── multisig_keystore_deploy_form.test.jsx.snap │ │ │ │ ├── multisig_keystore_deploy_tx_ui.test.jsx.snap │ │ │ │ ├── multisig_keystore_edit_form.test.jsx.snap │ │ │ │ ├── multisig_keystore_info.test.jsx.snap │ │ │ │ ├── multisig_keystore_transaction_proxy.test.jsx.snap │ │ │ │ └── multisig_keystore_transaction_signer.test.jsx.snap │ │ │ ├── multisig_keystore_creation_form.test.jsx │ │ │ ├── multisig_keystore_deploy_form.test.jsx │ │ │ ├── multisig_keystore_deploy_tx_ui.test.jsx │ │ │ ├── multisig_keystore_edit_form.test.jsx │ │ │ ├── multisig_keystore_info.test.jsx │ │ │ ├── multisig_keystore_transaction_proxy.test.jsx │ │ │ └── multisig_keystore_transaction_signer.test.jsx │ │ ├── index.js │ │ ├── multisig_keystore_actions.js │ │ ├── multisig_keystore_creation_form.jsx │ │ ├── multisig_keystore_deploy_form.jsx │ │ ├── multisig_keystore_deploy_tx_ui.jsx │ │ ├── multisig_keystore_edit_form.jsx │ │ ├── multisig_keystore_info.jsx │ │ ├── multisig_keystore_transaction_proxy.jsx │ │ └── multisig_keystore_transaction_signer.jsx │ └── v3 │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── v3_keystore_creation_form.test.jsx.snap │ │ │ ├── v3_keystore_download_button.test.jsx.snap │ │ │ ├── v3_keystore_edit_form.test.jsx.snap │ │ │ └── v3_keystore_transaction_signer.test.jsx.snap │ │ ├── v3_keystore_creation_form.test.jsx │ │ ├── v3_keystore_download_button.test.jsx │ │ ├── v3_keystore_edit_form.test.jsx │ │ └── v3_keystore_transaction_signer.test.jsx │ │ ├── index.js │ │ ├── v3_keystore_actions.js │ │ ├── v3_keystore_creation_form.jsx │ │ ├── v3_keystore_download_button.jsx │ │ ├── v3_keystore_edit_form.jsx │ │ ├── v3_keystore_transaction_signer.jsx │ │ └── v3_sign_tx.js ├── models │ ├── address.js │ ├── index.js │ ├── keystore.js │ ├── keystoreType.js │ ├── network.js │ ├── session.js │ └── token.js ├── selectors.js ├── semantic-ui │ ├── spectrum.less │ └── theme.config └── store.js ├── test ├── __mocks__ │ ├── connectMock.js │ ├── fileMock.js │ └── styleMock.js └── cucumber │ ├── features │ ├── Example.feature │ └── V3Keystore.feature │ ├── steps │ ├── given.js │ ├── then.js │ └── when.js │ └── support │ ├── action │ ├── clearInputField.js │ ├── clickElement.js │ ├── closeAllButFirstTab.js │ ├── closeLastOpenedWindow.js │ ├── deleteCookie.js │ ├── dragElement.js │ ├── focusLastOpenedWindow.js │ ├── handleModal.js │ ├── moveToElement.js │ ├── openSpectrumAndAcceptTerms.js │ ├── openWebsite.js │ ├── pause.js │ ├── pressButton.js │ ├── resizeScreenSize.js │ ├── scroll.js │ ├── selectOption.js │ ├── selectOptionByIndex.js │ ├── setCookie.js │ ├── setInputField.js │ ├── setPromptText.js │ ├── submitForm.js │ ├── waitFor.js │ └── waitForVisible.js │ ├── check │ ├── checkClass.js │ ├── checkContainsAnyText.js │ ├── checkContainsText.js │ ├── checkCookieContent.js │ ├── checkCookieExists.js │ ├── checkDimension.js │ ├── checkElementExists.js │ ├── checkEqualsText.js │ ├── checkFocus.js │ ├── checkInURLPath.js │ ├── checkIsEmpty.js │ ├── checkIsOpenedInNewWindow.js │ ├── checkModal.js │ ├── checkModalText.js │ ├── checkNewWindow.js │ ├── checkOffset.js │ ├── checkProperty.js │ ├── checkSelected.js │ ├── checkTitle.js │ ├── checkURL.js │ ├── checkURLPath.js │ ├── checkWithinViewport.js │ ├── compareText.js │ ├── isEnabled.js │ ├── isExisting.js │ └── isVisible.js │ └── lib │ └── checkIfElementExists.js ├── wdio.ci.config.js ├── wdio.development.config.js ├── webpack.config.js ├── webpack.development.config.js └── webpack.production.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/package.json -------------------------------------------------------------------------------- /spectrum.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { }; 2 | -------------------------------------------------------------------------------- /spectrum.dapplet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/spectrum.dapplet.js -------------------------------------------------------------------------------- /src/actions/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/actions/address.js -------------------------------------------------------------------------------- /src/actions/keystore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/actions/keystore.js -------------------------------------------------------------------------------- /src/actions/keystoreType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/actions/keystoreType.js -------------------------------------------------------------------------------- /src/actions/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/actions/network.js -------------------------------------------------------------------------------- /src/actions/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/actions/session.js -------------------------------------------------------------------------------- /src/actions/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/actions/token.js -------------------------------------------------------------------------------- /src/assets/digix_logo_minimal_blue_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/assets/digix_logo_minimal_blue_mini.png -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/qr-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/assets/qr-overlay.png -------------------------------------------------------------------------------- /src/components/__tests__/__snapshots__/app.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/__tests__/__snapshots__/app.test.jsx.snap -------------------------------------------------------------------------------- /src/components/__tests__/app.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/__tests__/app.test.jsx -------------------------------------------------------------------------------- /src/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/app.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/active_link.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/active_link.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/address.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/address.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/address_dropdown.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/address_dropdown.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/address_input.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/address_input.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/address_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/address_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/advanced.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/advanced.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/balance_label.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/balance_label.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/button_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/button_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/color_picker.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/color_picker.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/connection_status.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/connection_status.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/crypto_price.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/crypto_price.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/default_address_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/default_address_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/download_json_button.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/download_json_button.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/dropdown_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/dropdown_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/entropy_field.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/entropy_field.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/entropy_generator.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/entropy_generator.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/error_message.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/error_message.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/footer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/footer.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/form_field.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/form_field.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/ipfs_image.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/ipfs_image.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/ipfs_uploader.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/ipfs_uploader.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/menu_system.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/menu_system.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/network_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/network_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/network_status.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/network_status.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/network_tokens_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/network_tokens_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/pagination_menu.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/pagination_menu.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/qr_button.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/qr_button.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/qr_code.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/qr_code.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/qr_multi_button.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/qr_multi_button.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/qr_reader.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/qr_reader.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/series_paginator.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/series_paginator.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/startup_overlay.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/startup_overlay.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/tx_visualisation.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/tx_visualisation.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/__snapshots__/value_input.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/__snapshots__/value_input.test.jsx.snap -------------------------------------------------------------------------------- /src/components/common/__tests__/active_link.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/active_link.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/address.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/address.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/address_dropdown.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/address_dropdown.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/address_input.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/address_input.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/address_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/address_selector.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/advanced.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/advanced.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/balance_label.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/balance_label.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/button_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/button_selector.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/color_picker.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/color_picker.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/connection_status.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/connection_status.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/crypto_price.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/crypto_price.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/default_address_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/default_address_selector.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/download_json_button.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/download_json_button.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/dropdown_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/dropdown_selector.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/entropy_field.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/entropy_field.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/entropy_generator.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/entropy_generator.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/error_message.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/error_message.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/footer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/footer.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/form_field.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/form_field.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/ipfs_image.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/ipfs_image.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/ipfs_uploader.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/ipfs_uploader.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/menu_system.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/menu_system.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/network_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/network_selector.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/network_status.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/network_status.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/network_tokens_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/network_tokens_selector.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/pagination_menu.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/pagination_menu.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/qr_button.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/qr_button.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/qr_code.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/qr_code.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/qr_multi_button.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/qr_multi_button.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/qr_reader.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/qr_reader.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/series_paginator.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/series_paginator.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/startup_overlay.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/startup_overlay.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/tx_visualisation.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/tx_visualisation.test.jsx -------------------------------------------------------------------------------- /src/components/common/__tests__/value_input.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/__tests__/value_input.test.jsx -------------------------------------------------------------------------------- /src/components/common/active_link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/active_link.jsx -------------------------------------------------------------------------------- /src/components/common/address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/address.jsx -------------------------------------------------------------------------------- /src/components/common/address_dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/address_dropdown.jsx -------------------------------------------------------------------------------- /src/components/common/address_input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/address_input.jsx -------------------------------------------------------------------------------- /src/components/common/address_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/address_selector.jsx -------------------------------------------------------------------------------- /src/components/common/advanced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/advanced.jsx -------------------------------------------------------------------------------- /src/components/common/balance_label.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/balance_label.jsx -------------------------------------------------------------------------------- /src/components/common/button_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/button_selector.jsx -------------------------------------------------------------------------------- /src/components/common/color_picker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/color_picker.jsx -------------------------------------------------------------------------------- /src/components/common/connection_status.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/connection_status.jsx -------------------------------------------------------------------------------- /src/components/common/crypto_price.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/crypto_price.jsx -------------------------------------------------------------------------------- /src/components/common/default_address_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/default_address_selector.jsx -------------------------------------------------------------------------------- /src/components/common/dll_paginator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/dll_paginator.jsx -------------------------------------------------------------------------------- /src/components/common/download_json_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/download_json_button.jsx -------------------------------------------------------------------------------- /src/components/common/dropdown_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/dropdown_selector.jsx -------------------------------------------------------------------------------- /src/components/common/entropy_field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/entropy_field.jsx -------------------------------------------------------------------------------- /src/components/common/entropy_generator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/entropy_generator.jsx -------------------------------------------------------------------------------- /src/components/common/error_message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/error_message.jsx -------------------------------------------------------------------------------- /src/components/common/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/footer.jsx -------------------------------------------------------------------------------- /src/components/common/form_field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/form_field.jsx -------------------------------------------------------------------------------- /src/components/common/form_image_field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/form_image_field.jsx -------------------------------------------------------------------------------- /src/components/common/form_image_preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/form_image_preview.jsx -------------------------------------------------------------------------------- /src/components/common/ipfs_image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/ipfs_image.jsx -------------------------------------------------------------------------------- /src/components/common/ipfs_uploader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/ipfs_uploader.jsx -------------------------------------------------------------------------------- /src/components/common/lazyload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/lazyload.jsx -------------------------------------------------------------------------------- /src/components/common/menu_system.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/menu_system.jsx -------------------------------------------------------------------------------- /src/components/common/menu_system_dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/menu_system_dropdown.jsx -------------------------------------------------------------------------------- /src/components/common/network_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/network_selector.jsx -------------------------------------------------------------------------------- /src/components/common/network_status.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/network_status.jsx -------------------------------------------------------------------------------- /src/components/common/network_tokens_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/network_tokens_selector.jsx -------------------------------------------------------------------------------- /src/components/common/pagination_menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/pagination_menu.jsx -------------------------------------------------------------------------------- /src/components/common/qr_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/qr_button.jsx -------------------------------------------------------------------------------- /src/components/common/qr_code.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/qr_code.jsx -------------------------------------------------------------------------------- /src/components/common/qr_multi_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/qr_multi_button.jsx -------------------------------------------------------------------------------- /src/components/common/qr_reader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/qr_reader.jsx -------------------------------------------------------------------------------- /src/components/common/redux_paginator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/redux_paginator.jsx -------------------------------------------------------------------------------- /src/components/common/series_paginator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/series_paginator.jsx -------------------------------------------------------------------------------- /src/components/common/spectrum_watermark.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/spectrum_watermark.jsx -------------------------------------------------------------------------------- /src/components/common/startup_overlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/startup_overlay.jsx -------------------------------------------------------------------------------- /src/components/common/success_header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/success_header.jsx -------------------------------------------------------------------------------- /src/components/common/tx_visualisation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/tx_visualisation.jsx -------------------------------------------------------------------------------- /src/components/common/value_input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/common/value_input.jsx -------------------------------------------------------------------------------- /src/components/config/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/index.jsx -------------------------------------------------------------------------------- /src/components/config/networks/__tests__/__snapshots__/index.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/__tests__/__snapshots__/index.test.jsx.snap -------------------------------------------------------------------------------- /src/components/config/networks/__tests__/__snapshots__/network.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/__tests__/__snapshots__/network.test.jsx.snap -------------------------------------------------------------------------------- /src/components/config/networks/__tests__/__snapshots__/network_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/__tests__/__snapshots__/network_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/config/networks/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/components/config/networks/__tests__/network.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/__tests__/network.test.jsx -------------------------------------------------------------------------------- /src/components/config/networks/__tests__/network_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/__tests__/network_form.test.jsx -------------------------------------------------------------------------------- /src/components/config/networks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/index.jsx -------------------------------------------------------------------------------- /src/components/config/networks/network.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/network.jsx -------------------------------------------------------------------------------- /src/components/config/networks/network_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/networks/network_form.jsx -------------------------------------------------------------------------------- /src/components/config/tokens/__tests__/__snapshots__/index.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/__tests__/__snapshots__/index.test.jsx.snap -------------------------------------------------------------------------------- /src/components/config/tokens/__tests__/__snapshots__/token.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/__tests__/__snapshots__/token.test.jsx.snap -------------------------------------------------------------------------------- /src/components/config/tokens/__tests__/__snapshots__/token_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/__tests__/__snapshots__/token_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/config/tokens/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/components/config/tokens/__tests__/token.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/__tests__/token.test.jsx -------------------------------------------------------------------------------- /src/components/config/tokens/__tests__/token_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/__tests__/token_form.test.jsx -------------------------------------------------------------------------------- /src/components/config/tokens/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/index.jsx -------------------------------------------------------------------------------- /src/components/config/tokens/token.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/token.jsx -------------------------------------------------------------------------------- /src/components/config/tokens/token_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/config/tokens/token_form.jsx -------------------------------------------------------------------------------- /src/components/dapplets/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/dapplets/index.jsx -------------------------------------------------------------------------------- /src/components/dapplets/placeholder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/dapplets/placeholder.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/address.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/address.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/address_balances.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/address_balances.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/import_keystore_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/import_keystore_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/import_keystore_modal.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/import_keystore_modal.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/index.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/index.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_buttons.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_buttons.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_creation_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_creation_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_edit_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_edit_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_menu.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_menu.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_modal.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_modal.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_selector.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_selector.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/__snapshots__/keystore_type_message.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/__snapshots__/keystore_type_message.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/__tests__/address.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/address.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/address_balances.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/address_balances.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/import_keystore_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/import_keystore_form.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/import_keystore_modal.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/import_keystore_modal.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_buttons.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_buttons.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_creation_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_creation_form.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_edit_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_edit_form.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_menu.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_menu.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_modal.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_modal.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_selector.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_selector.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/__tests__/keystore_type_message.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/__tests__/keystore_type_message.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/address.jsx -------------------------------------------------------------------------------- /src/components/keystores/address_balances.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/address_balances.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/__snapshots__/base_token_balance.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/__snapshots__/base_token_balance.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/__snapshots__/base_token_transfer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/__snapshots__/base_token_transfer.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/__snapshots__/base_token_transfer_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/__snapshots__/base_token_transfer_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/__snapshots__/base_token_tx_ui.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/__snapshots__/base_token_tx_ui.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/__snapshots__/index.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/__snapshots__/index.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/base_token_balance.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/base_token_balance.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/base_token_transfer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/base_token_transfer.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/base_token_transfer_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/base_token_transfer_form.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/base_token_tx_ui.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/base_token_tx_ui.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/base_token_balance.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/base_token_balance.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/base_token_transfer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/base_token_transfer.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/base_token_transfer_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/base_token_transfer_form.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/base_token_tx_ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/base_token_tx_ui.jsx -------------------------------------------------------------------------------- /src/components/keystores/base_token/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/base_token/index.jsx -------------------------------------------------------------------------------- /src/components/keystores/generic_transaction/__tests__/__snapshots__/generic_transaction_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/generic_transaction/__tests__/__snapshots__/generic_transaction_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/generic_transaction/__tests__/__snapshots__/index.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/generic_transaction/__tests__/__snapshots__/index.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/generic_transaction/__tests__/generic_transaction_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/generic_transaction/__tests__/generic_transaction_form.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/generic_transaction/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/generic_transaction/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/generic_transaction/generic_transaction_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/generic_transaction/generic_transaction_form.jsx -------------------------------------------------------------------------------- /src/components/keystores/generic_transaction/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/generic_transaction/index.jsx -------------------------------------------------------------------------------- /src/components/keystores/import_keystore_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/import_keystore_form.jsx -------------------------------------------------------------------------------- /src/components/keystores/import_keystore_modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/import_keystore_modal.jsx -------------------------------------------------------------------------------- /src/components/keystores/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/index.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_buttons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_buttons.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_creation_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_creation_form.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_edit_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_edit_form.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_menu.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_modal.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_selector.jsx -------------------------------------------------------------------------------- /src/components/keystores/keystore_type_message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/keystore_type_message.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/__snapshots__/index.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/__snapshots__/index.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/__snapshots__/token_balance.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/__snapshots__/token_balance.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/__snapshots__/token_transfer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/__snapshots__/token_transfer.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/__snapshots__/token_transfer_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/__snapshots__/token_transfer_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/__snapshots__/token_tx_ui.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/__snapshots__/token_tx_ui.test.jsx.snap -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/token_balance.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/token_balance.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/token_transfer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/token_transfer.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/token_transfer_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/token_transfer_form.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/__tests__/token_tx_ui.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/__tests__/token_tx_ui.test.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/index.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/token_balance.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/token_balance.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/token_transfer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/token_transfer.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/token_transfer_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/token_transfer_form.jsx -------------------------------------------------------------------------------- /src/components/keystores/token/token_tx_ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/keystores/token/token_tx_ui.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_info.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_info.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_info_table.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_info_table.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_modal.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_modal.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_modal_container.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_modal_container.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_modal_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_modal_form.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_signing_overlay.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_signing_overlay.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/__snapshots__/transaction_tracker.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/__snapshots__/transaction_tracker.test.jsx.snap -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_info.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_info.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_info_table.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_info_table.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_modal.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_modal.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_modal_container.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_modal_container.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_modal_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_modal_form.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_signing_overlay.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_signing_overlay.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/__tests__/transaction_tracker.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/__tests__/transaction_tracker.test.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_info.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_info_table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_info_table.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_modal.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_modal_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_modal_container.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_modal_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_modal_form.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_signing_overlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_signing_overlay.jsx -------------------------------------------------------------------------------- /src/components/transactions/transaction_tracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/components/transactions/transaction_tracker.jsx -------------------------------------------------------------------------------- /src/helpers/blockie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/blockie.js -------------------------------------------------------------------------------- /src/helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/constants.js -------------------------------------------------------------------------------- /src/helpers/fileUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/fileUtils.js -------------------------------------------------------------------------------- /src/helpers/offlinePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/offlinePlugin.js -------------------------------------------------------------------------------- /src/helpers/registerReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/registerReducers.js -------------------------------------------------------------------------------- /src/helpers/seedStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/seedStore.js -------------------------------------------------------------------------------- /src/helpers/stringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/stringUtils.js -------------------------------------------------------------------------------- /src/helpers/uiRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/uiRegistry.js -------------------------------------------------------------------------------- /src/helpers/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/validation.js -------------------------------------------------------------------------------- /src/helpers/web3/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/web3/connect.js -------------------------------------------------------------------------------- /src/helpers/web3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/web3/index.js -------------------------------------------------------------------------------- /src/helpers/web3/redux_subprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/web3/redux_subprovider.js -------------------------------------------------------------------------------- /src/helpers/web3/rpc_subprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/helpers/web3/rpc_subprovider.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_address.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_address.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_creation_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_creation_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_edit_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_edit_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_transaction_signer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/__snapshots__/cold_keystore_transaction_signer.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/cold_keystore_address.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/cold_keystore_address.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/cold_keystore_creation_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/cold_keystore_creation_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/cold_keystore_edit_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/cold_keystore_edit_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/__tests__/cold_keystore_transaction_signer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/__tests__/cold_keystore_transaction_signer.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/cold_keystore_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/cold_keystore_actions.js -------------------------------------------------------------------------------- /src/keystoreTypes/cold/cold_keystore_address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/cold_keystore_address.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/cold_keystore_creation_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/cold_keystore_creation_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/cold_keystore_edit_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/cold_keystore_edit_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/cold_keystore_transaction_signer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/cold_keystore_transaction_signer.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/cold/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/cold/index.js -------------------------------------------------------------------------------- /src/keystoreTypes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/index.js -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_address_item.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_address_item.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_address_list.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_address_list.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_creation_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_creation_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_edit_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_edit_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_transaction_signer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/__snapshots__/ledger_keystore_transaction_signer.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/ledger_keystore_address_item.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/ledger_keystore_address_item.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/ledger_keystore_address_list.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/ledger_keystore_address_list.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/ledger_keystore_creation_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/ledger_keystore_creation_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/ledger_keystore_edit_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/ledger_keystore_edit_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/__tests__/ledger_keystore_transaction_signer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/__tests__/ledger_keystore_transaction_signer.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/index.js -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/ledger_keystore_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/ledger_keystore_actions.js -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/ledger_keystore_address_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/ledger_keystore_address_item.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/ledger_keystore_address_list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/ledger_keystore_address_list.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/ledger_keystore_creation_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/ledger_keystore_creation_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/ledger_keystore_edit_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/ledger_keystore_edit_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/ledger/ledger_keystore_transaction_signer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/ledger/ledger_keystore_transaction_signer.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_creation_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_creation_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_deploy_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_deploy_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_deploy_tx_ui.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_deploy_tx_ui.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_edit_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_edit_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_info.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_info.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_transaction_proxy.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_transaction_proxy.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_transaction_signer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/__snapshots__/multisig_keystore_transaction_signer.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_creation_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_creation_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_deploy_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_deploy_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_deploy_tx_ui.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_deploy_tx_ui.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_edit_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_edit_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_info.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_info.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_transaction_proxy.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_transaction_proxy.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/__tests__/multisig_keystore_transaction_signer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/__tests__/multisig_keystore_transaction_signer.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/index.js -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_actions.js -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_creation_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_creation_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_deploy_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_deploy_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_deploy_tx_ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_deploy_tx_ui.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_edit_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_edit_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_info.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_transaction_proxy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_transaction_proxy.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/multisig/multisig_keystore_transaction_signer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/multisig/multisig_keystore_transaction_signer.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_creation_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_creation_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_download_button.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_download_button.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_edit_form.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_edit_form.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_transaction_signer.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/__snapshots__/v3_keystore_transaction_signer.test.jsx.snap -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/v3_keystore_creation_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/v3_keystore_creation_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/v3_keystore_download_button.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/v3_keystore_download_button.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/v3_keystore_edit_form.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/v3_keystore_edit_form.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/__tests__/v3_keystore_transaction_signer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/__tests__/v3_keystore_transaction_signer.test.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/index.js -------------------------------------------------------------------------------- /src/keystoreTypes/v3/v3_keystore_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/v3_keystore_actions.js -------------------------------------------------------------------------------- /src/keystoreTypes/v3/v3_keystore_creation_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/v3_keystore_creation_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/v3_keystore_download_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/v3_keystore_download_button.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/v3_keystore_edit_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/v3_keystore_edit_form.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/v3_keystore_transaction_signer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/v3_keystore_transaction_signer.jsx -------------------------------------------------------------------------------- /src/keystoreTypes/v3/v3_sign_tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/keystoreTypes/v3/v3_sign_tx.js -------------------------------------------------------------------------------- /src/models/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/address.js -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/index.js -------------------------------------------------------------------------------- /src/models/keystore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/keystore.js -------------------------------------------------------------------------------- /src/models/keystoreType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/keystoreType.js -------------------------------------------------------------------------------- /src/models/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/network.js -------------------------------------------------------------------------------- /src/models/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/session.js -------------------------------------------------------------------------------- /src/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/models/token.js -------------------------------------------------------------------------------- /src/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/selectors.js -------------------------------------------------------------------------------- /src/semantic-ui/spectrum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/semantic-ui/spectrum.less -------------------------------------------------------------------------------- /src/semantic-ui/theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/semantic-ui/theme.config -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/src/store.js -------------------------------------------------------------------------------- /test/__mocks__/connectMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/__mocks__/connectMock.js -------------------------------------------------------------------------------- /test/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /test/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /test/cucumber/features/Example.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/features/Example.feature -------------------------------------------------------------------------------- /test/cucumber/features/V3Keystore.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/features/V3Keystore.feature -------------------------------------------------------------------------------- /test/cucumber/steps/given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/steps/given.js -------------------------------------------------------------------------------- /test/cucumber/steps/then.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/steps/then.js -------------------------------------------------------------------------------- /test/cucumber/steps/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/steps/when.js -------------------------------------------------------------------------------- /test/cucumber/support/action/clearInputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/clearInputField.js -------------------------------------------------------------------------------- /test/cucumber/support/action/clickElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/clickElement.js -------------------------------------------------------------------------------- /test/cucumber/support/action/closeAllButFirstTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/closeAllButFirstTab.js -------------------------------------------------------------------------------- /test/cucumber/support/action/closeLastOpenedWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/closeLastOpenedWindow.js -------------------------------------------------------------------------------- /test/cucumber/support/action/deleteCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/deleteCookie.js -------------------------------------------------------------------------------- /test/cucumber/support/action/dragElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/dragElement.js -------------------------------------------------------------------------------- /test/cucumber/support/action/focusLastOpenedWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/focusLastOpenedWindow.js -------------------------------------------------------------------------------- /test/cucumber/support/action/handleModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/handleModal.js -------------------------------------------------------------------------------- /test/cucumber/support/action/moveToElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/moveToElement.js -------------------------------------------------------------------------------- /test/cucumber/support/action/openSpectrumAndAcceptTerms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/openSpectrumAndAcceptTerms.js -------------------------------------------------------------------------------- /test/cucumber/support/action/openWebsite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/openWebsite.js -------------------------------------------------------------------------------- /test/cucumber/support/action/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/pause.js -------------------------------------------------------------------------------- /test/cucumber/support/action/pressButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/pressButton.js -------------------------------------------------------------------------------- /test/cucumber/support/action/resizeScreenSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/resizeScreenSize.js -------------------------------------------------------------------------------- /test/cucumber/support/action/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/scroll.js -------------------------------------------------------------------------------- /test/cucumber/support/action/selectOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/selectOption.js -------------------------------------------------------------------------------- /test/cucumber/support/action/selectOptionByIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/selectOptionByIndex.js -------------------------------------------------------------------------------- /test/cucumber/support/action/setCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/setCookie.js -------------------------------------------------------------------------------- /test/cucumber/support/action/setInputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/setInputField.js -------------------------------------------------------------------------------- /test/cucumber/support/action/setPromptText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/setPromptText.js -------------------------------------------------------------------------------- /test/cucumber/support/action/submitForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/submitForm.js -------------------------------------------------------------------------------- /test/cucumber/support/action/waitFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/waitFor.js -------------------------------------------------------------------------------- /test/cucumber/support/action/waitForVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/action/waitForVisible.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkClass.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkContainsAnyText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkContainsAnyText.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkContainsText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkContainsText.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkCookieContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkCookieContent.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkCookieExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkCookieExists.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkDimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkDimension.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkElementExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkElementExists.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkEqualsText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkEqualsText.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkFocus.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkInURLPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkInURLPath.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkIsEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkIsEmpty.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkIsOpenedInNewWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkIsOpenedInNewWindow.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkModal.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkModalText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkModalText.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkNewWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkNewWindow.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkOffset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkOffset.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkProperty.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkSelected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkSelected.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkTitle.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkURL.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkURLPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkURLPath.js -------------------------------------------------------------------------------- /test/cucumber/support/check/checkWithinViewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/checkWithinViewport.js -------------------------------------------------------------------------------- /test/cucumber/support/check/compareText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/compareText.js -------------------------------------------------------------------------------- /test/cucumber/support/check/isEnabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/isEnabled.js -------------------------------------------------------------------------------- /test/cucumber/support/check/isExisting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/isExisting.js -------------------------------------------------------------------------------- /test/cucumber/support/check/isVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/check/isVisible.js -------------------------------------------------------------------------------- /test/cucumber/support/lib/checkIfElementExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/test/cucumber/support/lib/checkIfElementExists.js -------------------------------------------------------------------------------- /wdio.ci.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/wdio.ci.config.js -------------------------------------------------------------------------------- /wdio.development.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/wdio.development.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.development.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/webpack.development.config.js -------------------------------------------------------------------------------- /webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IstoraMandiri/spectrum/HEAD/webpack.production.config.js --------------------------------------------------------------------------------