├── .github ├── ISSUE_TEMPLATE │ ├── blank.md │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .golangci.yml ├── .travis.yml ├── .travis ├── install-golangci-lint.sh ├── install-linux.sh ├── install-os.sh ├── install-qt-win.sh ├── qt-installer-windows.qs ├── report-progress.sh └── setup_release.sh ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE.GPLv3 ├── Makefile ├── README.md ├── ci-scripts ├── install-linux.sh ├── install-osx.sh └── version.sh ├── fonts.qrc ├── images.qrc ├── main.go ├── qml.qrc ├── qt.qrc ├── qtquickcontrols2.conf ├── resources ├── fonts │ ├── code-new-roman │ │ ├── code-new-roman.otf │ │ └── license.txt │ └── hemi-head │ │ ├── hemi-head.ttf │ │ └── typodermic-eula-02-2014.pdf ├── images │ └── icons │ │ ├── add-circle.svg │ │ ├── add.svg │ │ ├── appIcon │ │ ├── appIcon-fiber-shadow.png │ │ ├── appIcon-fiber.png │ │ ├── appIcon-wallet-shadow.png │ │ ├── appIcon-wallet.png │ │ ├── appIcon.icns │ │ ├── appIcon.ico │ │ ├── appIcon.png │ │ └── splash.png │ │ ├── back.svg │ │ ├── backspace.svg │ │ ├── backup.svg │ │ ├── blockchain.svg │ │ ├── check-simple.svg │ │ ├── check.svg │ │ ├── clear.svg │ │ ├── contacts.svg │ │ ├── copy-content.svg │ │ ├── copy.svg │ │ ├── country-flags │ │ ├── abkhazia.svg │ │ ├── afghanistan.svg │ │ ├── aland_islands.svg │ │ ├── albania.svg │ │ ├── algeria.svg │ │ ├── american_samoa.svg │ │ ├── andorra.svg │ │ ├── angola.svg │ │ ├── anguilla.svg │ │ ├── antigua_and_barbuda.svg │ │ ├── argentina.svg │ │ ├── armenia.svg │ │ ├── aruba.svg │ │ ├── australia.svg │ │ ├── austria.svg │ │ ├── azerbaijan.svg │ │ ├── azores_islands.svg │ │ ├── bahamas.svg │ │ ├── bahrain.svg │ │ ├── balearic_islands.svg │ │ ├── bangladesh.svg │ │ ├── barbados.svg │ │ ├── basque_country.svg │ │ ├── belarus.svg │ │ ├── belgium.svg │ │ ├── belize.svg │ │ ├── benin.svg │ │ ├── bermuda.svg │ │ ├── bhutan.svg │ │ ├── bolivia.svg │ │ ├── bonaire.svg │ │ ├── bosnia_and_herzegowina.svg │ │ ├── botswana.svg │ │ ├── brazil.svg │ │ ├── british_columbia.svg │ │ ├── british_indian_ocean_territory.svg │ │ ├── british_virgin_islands.svg │ │ ├── brunei.svg │ │ ├── bulgaria.svg │ │ ├── burkina_faso.svg │ │ ├── burundi.svg │ │ ├── cambodia.svg │ │ ├── cameroon.svg │ │ ├── canada.svg │ │ ├── canary_islands.svg │ │ ├── cape_verde.svg │ │ ├── cayman_islands.svg │ │ ├── central_african_republic.svg │ │ ├── ceuta.svg │ │ ├── ceuta_and_melilla.svg │ │ ├── chad.svg │ │ ├── chile.svg │ │ ├── china.svg │ │ ├── christmas_island.svg │ │ ├── cocos_islands.svg │ │ ├── colombia.svg │ │ ├── comoros.svg │ │ ├── congo_brazzaville.svg │ │ ├── congo_kinshasa.svg │ │ ├── cook_islands.svg │ │ ├── corsica.svg │ │ ├── costa_rica.svg │ │ ├── croatia.svg │ │ ├── cuba.svg │ │ ├── cura_sao.svg │ │ ├── cyprus.svg │ │ ├── czech_republic.svg │ │ ├── denmark.svg │ │ ├── djibouti.svg │ │ ├── dominica.svg │ │ ├── dominican_republic.svg │ │ ├── east_timor.svg │ │ ├── ecuador.svg │ │ ├── egypt.svg │ │ ├── el_salvador.svg │ │ ├── england.svg │ │ ├── equatorial_guinea.svg │ │ ├── eritrea.svg │ │ ├── estonia.svg │ │ ├── ethiopia.svg │ │ ├── european_union.svg │ │ ├── falkland_islands.svg │ │ ├── faroe_islands.svg │ │ ├── fiji.svg │ │ ├── finland.svg │ │ ├── france.svg │ │ ├── french_polynesia.svg │ │ ├── gabon.svg │ │ ├── galapagos_islands.svg │ │ ├── gambia.svg │ │ ├── georgia.svg │ │ ├── germany.svg │ │ ├── ghana.svg │ │ ├── gibraltar.svg │ │ ├── greece.svg │ │ ├── greenland.svg │ │ ├── grenada.svg │ │ ├── guam.svg │ │ ├── guatemala.svg │ │ ├── guernsey.svg │ │ ├── guinea.svg │ │ ├── guinea_bissau.svg │ │ ├── guyana.svg │ │ ├── haiti.svg │ │ ├── hawaii.svg │ │ ├── honduras.svg │ │ ├── hong_kong.svg │ │ ├── hungary.svg │ │ ├── iceland.svg │ │ ├── india.svg │ │ ├── indonesia.svg │ │ ├── iran.svg │ │ ├── iraq.svg │ │ ├── ireland.svg │ │ ├── isle_of_man.svg │ │ ├── israel.svg │ │ ├── italy.svg │ │ ├── ivory_coast.svg │ │ ├── jamaica.svg │ │ ├── japan.svg │ │ ├── jersey.svg │ │ ├── jordan.svg │ │ ├── kazakhstan.svg │ │ ├── kenya.svg │ │ ├── kiribati.svg │ │ ├── kosovo.svg │ │ ├── kuwait.svg │ │ ├── kyrgyzstan.svg │ │ ├── laos.svg │ │ ├── latvia.svg │ │ ├── lebanon.svg │ │ ├── lesotho.svg │ │ ├── liberia.svg │ │ ├── libya.svg │ │ ├── liechtenstein.svg │ │ ├── lithuania.svg │ │ ├── luxembourg.svg │ │ ├── macau.svg │ │ ├── macedonia.svg │ │ ├── madagascar.svg │ │ ├── madeira.svg │ │ ├── malawi.svg │ │ ├── malaysia.svg │ │ ├── maldives.svg │ │ ├── mali.svg │ │ ├── malta.svg │ │ ├── marshall_islands.svg │ │ ├── martinique.svg │ │ ├── mauritania.svg │ │ ├── mauritius.svg │ │ ├── mexico.svg │ │ ├── micronesia.svg │ │ ├── moldova.svg │ │ ├── monaco.svg │ │ ├── mongolia.svg │ │ ├── montenegro.svg │ │ ├── montserrat.svg │ │ ├── morocco.svg │ │ ├── mozambique.svg │ │ ├── myanmar.svg │ │ ├── namibia.svg │ │ ├── nato.svg │ │ ├── nauru.svg │ │ ├── nepal.svg │ │ ├── netherlands.svg │ │ ├── new_zealand.svg │ │ ├── nicaragua.svg │ │ ├── niger.svg │ │ ├── nigeria.svg │ │ ├── niue.svg │ │ ├── norfolk_island.svg │ │ ├── north_korea.svg │ │ ├── northen_cyprus.svg │ │ ├── northern_mariana_islands.svg │ │ ├── norway.svg │ │ ├── oman.svg │ │ ├── orkney_islands.svg │ │ ├── ossetia.svg │ │ ├── pakistan.svg │ │ ├── palau.svg │ │ ├── palestinian_territories.svg │ │ ├── panama.svg │ │ ├── papua_new_guinea.svg │ │ ├── paraguay.svg │ │ ├── peru.svg │ │ ├── philippines.svg │ │ ├── pitcairn.svg │ │ ├── poland.svg │ │ ├── portugal.svg │ │ ├── puerto_rico.svg │ │ ├── qatar.svg │ │ ├── rapa_nui.svg │ │ ├── romania.svg │ │ ├── russia.svg │ │ ├── rwanda.svg │ │ ├── saba_island.svg │ │ ├── saint_barthelemy.svg │ │ ├── saint_kitts_and_nevis.svg │ │ ├── saint_lucia.svg │ │ ├── saint_vincent_and_the_grenadines.svg │ │ ├── samoa.svg │ │ ├── san_marino.svg │ │ ├── sao_tome_and_principe.svg │ │ ├── sardinia.svg │ │ ├── saudi_arabia.svg │ │ ├── scotland.svg │ │ ├── senegal.svg │ │ ├── serbia.svg │ │ ├── seychelles.svg │ │ ├── sierra_leone.svg │ │ ├── singapore.svg │ │ ├── sint_eustatius.svg │ │ ├── sint_maarten.svg │ │ ├── slovakia.svg │ │ ├── slovenia.svg │ │ ├── solomon_islands.svg │ │ ├── somalia.svg │ │ ├── somaliland.svg │ │ ├── south_africa.svg │ │ ├── south_korea.svg │ │ ├── south_sudan.svg │ │ ├── spain.svg │ │ ├── sri_lanka.svg │ │ ├── sudan.svg │ │ ├── suriname.svg │ │ ├── swaziland.svg │ │ ├── sweden.svg │ │ ├── switzerland.svg │ │ ├── syria.svg │ │ ├── taiwan.svg │ │ ├── tajikistan.svg │ │ ├── tanzania.svg │ │ ├── thailand.svg │ │ ├── tibet.svg │ │ ├── togo.svg │ │ ├── tokelau.svg │ │ ├── tonga.svg │ │ ├── transnistria.svg │ │ ├── trinidad_and_tobago.svg │ │ ├── tunisia.svg │ │ ├── turkey.svg │ │ ├── turkmenistan.svg │ │ ├── turks_and_caicos_islands.svg │ │ ├── tuvalu.svg │ │ ├── uganda.svg │ │ ├── ukraine.svg │ │ ├── united_arab_emirates.svg │ │ ├── united_kingdom.svg │ │ ├── united_nations.svg │ │ ├── united_states.svg │ │ ├── united_states_virgin_islands.svg │ │ ├── uruguay.svg │ │ ├── uzbekistan.svg │ │ ├── vanuatu.svg │ │ ├── vatican_city_state.svg │ │ ├── venezuela.svg │ │ ├── vietnam.svg │ │ ├── wales.svg │ │ ├── western_sahara.svg │ │ ├── yemen.svg │ │ ├── zambia.svg │ │ └── zimbabwe.svg │ │ ├── cpu.svg │ │ ├── cut-content.svg │ │ ├── delete.svg │ │ ├── down.svg │ │ ├── edit.svg │ │ ├── error.svg │ │ ├── help.svg │ │ ├── license.svg │ │ ├── lockOff.svg │ │ ├── lockOn.svg │ │ ├── log_level_debug.svg │ │ ├── log_level_error.svg │ │ ├── log_level_fatal.svg │ │ ├── log_level_info.svg │ │ ├── log_level_panic.svg │ │ ├── log_level_warn.svg │ │ ├── moon.svg │ │ ├── networking.svg │ │ ├── outputs.svg │ │ ├── paste-content.svg │ │ ├── pending-transactions.svg │ │ ├── qr.svg │ │ ├── qt_logo_green_rgb.svg │ │ ├── qt_logo_green_rgb_256x256.png │ │ ├── question.svg │ │ ├── redo.svg │ │ ├── remove-circle.svg │ │ ├── security.svg │ │ ├── selectAll-content.svg │ │ ├── send-amber.svg │ │ ├── send-blue.svg │ │ ├── send.svg │ │ ├── settings.svg │ │ ├── sun.svg │ │ ├── system-language.svg │ │ ├── trash.svg │ │ ├── undo.svg │ │ ├── up.svg │ │ ├── upload.svg │ │ ├── usb.svg │ │ ├── user.svg │ │ ├── visibleOff.svg │ │ ├── visibleOn.svg │ │ └── warning.svg ├── platform │ ├── darwin │ │ └── Info.plist │ └── windows │ │ └── winResources.rc └── translations │ ├── FiberCryptoWallet_en.ts │ ├── FiberCryptoWallet_es.ts │ ├── FiberCryptoWallet_fr.ts │ └── update_translation_files.sh ├── src ├── coin │ ├── .gitkeep │ ├── mocks │ │ ├── Address.go │ │ ├── AddressBook.go │ │ ├── AddressIterator.go │ │ ├── AltcoinManager.go │ │ ├── AltcoinPlugin.go │ │ ├── Block.go │ │ ├── BlockchainSignService.go │ │ ├── BlockchainStatus.go │ │ ├── BlockchainTransactionAPI.go │ │ ├── Contact.go │ │ ├── CryptoAccount.go │ │ ├── KeyValueStore.go │ │ ├── MultiPool.go │ │ ├── MultiPoolSection.go │ │ ├── PEX.go │ │ ├── PexNode.go │ │ ├── PexNodeIterator.go │ │ ├── PexNodeSet.go │ │ ├── PooledObjectFactory.go │ │ ├── PubKey.go │ │ ├── SecKey.go │ │ ├── SeedGenerator.go │ │ ├── Storage.go │ │ ├── StringAddress.go │ │ ├── Transaction.go │ │ ├── TransactionInput.go │ │ ├── TransactionInputIterator.go │ │ ├── TransactionIterator.go │ │ ├── TransactionOutput.go │ │ ├── TransactionOutputIterator.go │ │ ├── TxnSigner.go │ │ ├── TxnSignerIterator.go │ │ ├── Wallet.go │ │ ├── WalletAddress.go │ │ ├── WalletEnv.go │ │ ├── WalletIterator.go │ │ ├── WalletOutput.go │ │ ├── WalletSet.go │ │ └── WalletStorage.go │ └── skycoin │ │ ├── .gitkeep │ │ ├── blockchain │ │ └── .gitkeep │ │ ├── config │ │ └── config.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── models │ │ ├── .gitkeep │ │ ├── account.go │ │ ├── account_test.go │ │ ├── api.go │ │ ├── blockchain.go │ │ ├── blockchain_test.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── coin.go │ │ ├── coin_test.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── network.go │ │ ├── network_test.go │ │ ├── params.go │ │ ├── sign.go │ │ ├── sky_test_utils.go │ │ ├── skyapi_test_mocks.go │ │ ├── testdata │ │ │ ├── empty_file.txt │ │ │ ├── encrypted.wlt │ │ │ ├── invalid │ │ │ │ └── wallets │ │ │ │ │ └── empty_wallet.wlt │ │ │ ├── original_files │ │ │ │ ├── encrypted.wlt │ │ │ │ └── test.wlt │ │ │ └── test.wlt │ │ ├── testsutils.go │ │ ├── util_test.go │ │ ├── wallet.go │ │ └── wallet_test.go │ │ ├── params │ │ └── params.go │ │ ├── sign │ │ └── .gitkeep │ │ ├── skymocks │ │ ├── ReadableTxn.go │ │ ├── SkycoinAPI.go │ │ ├── SkycoinTxn.go │ │ └── SkycoinWallet.go │ │ ├── skytypes │ │ ├── api.go │ │ └── wallet.go │ │ └── testsuite │ │ └── env.go ├── contrib │ └── skywallet │ │ ├── mocks │ │ ├── device_driver.go │ │ └── devicer.go │ │ ├── sky-wallet.go │ │ ├── sky-wallet_test.go │ │ └── skywallet_integration_test.go ├── core │ ├── .gitkeep │ ├── account.go │ ├── blockchain.go │ ├── cipher.go │ ├── coin.go │ ├── main.go │ ├── network.go │ ├── sign.go │ ├── storage.go │ ├── textutil.go │ └── wallet.go ├── data │ ├── addressbook.go │ ├── contact.go │ ├── data_test.go │ └── database.go ├── errors │ └── error.go ├── main │ ├── config.go │ ├── plugin.go │ └── sign.go ├── models │ ├── address │ │ └── address.go │ ├── addressBook │ │ ├── address.go │ │ └── contacts.go │ ├── addressesModel.go │ ├── blockchainModels.go │ ├── bridgeModel.go │ ├── config.go │ ├── history │ │ ├── history.go │ │ └── historyManager.go │ ├── modelAddresses.go │ ├── modelOutputs.go │ ├── modelWallets.go │ ├── models.go │ ├── modelsManager.go │ ├── networking.go │ ├── networkingManager.go │ ├── networkingModel.go │ ├── pending │ │ ├── Pending.go │ │ └── PendingModel.go │ ├── qtransaction.go │ ├── signersModel.go │ ├── transactions │ │ └── transactions.go │ ├── walletsManager.go │ └── walletsModel.go ├── params │ └── params.go ├── ui │ ├── AddressBook.qml │ ├── Blockchain.qml │ ├── BusyPopup.qml │ ├── ControlCustomSwitch.qml │ ├── ControlGenerateSeed.qml │ ├── Controls │ │ ├── +material │ │ │ ├── TextArea.qml │ │ │ └── TextField.qml │ │ ├── TextArea.qml │ │ └── TextField.qml │ ├── CreateLoadWallet.qml │ ├── CustomHeader.qml │ ├── CustomMenuBar.qml │ ├── CustomMenuItem.qml │ ├── Delegates │ │ ├── AddressListDelegate.qml │ │ ├── ContactDelegate.qml │ │ ├── DestinationListDelegate.qml │ │ ├── HistoryFilterListAddressDelegate.qml │ │ ├── HistoryFilterListDelegate.qml │ │ ├── HistoryListDelegate.qml │ │ ├── InputOutputDelegate.qml │ │ ├── NetworkingListDelegate.qml │ │ ├── OutputsListAddressDelegate.qml │ │ ├── OutputsListAddressOutputDelegate.qml │ │ ├── OutputsListDelegate.qml │ │ ├── PasswordRequesterDelegate.qml │ │ ├── PendingTransactionsDelegate.qml │ │ ├── SectionDelegate.qml │ │ ├── TransactionAddressDelegate.qml │ │ ├── WalletListAddressDelegate.qml │ │ └── WalletListDelegate.qml │ ├── Dialogs │ │ ├── DialogAbout.qml │ │ ├── DialogAboutLicense.qml │ │ ├── DialogAboutQt.qml │ │ ├── DialogAddAddresses.qml │ │ ├── DialogAddContact.qml │ │ ├── DialogAddLoadWallet.qml │ │ ├── DialogEditWallet.qml │ │ ├── DialogGetPassword.qml │ │ ├── DialogQR.qml │ │ ├── DialogSelectAddressByAddressBook.qml │ │ ├── DialogSelectAddressByWallet.qml │ │ ├── DialogSelectSecType.qml │ │ ├── DialogSendTransaction.qml │ │ ├── DialogSetPassword.qml │ │ ├── DialogShowContact.qml │ │ ├── DialogTransactionDetails.qml │ │ ├── DialogUnconfiguredWallet.qml │ │ ├── MsgDialog.qml │ │ ├── NumPadDialog.qml │ │ ├── RestoreBackupWordsDialog.qml │ │ ├── SecureWalletDialog.qml │ │ └── WalletCreatedDialog.qml │ ├── FilterComboBoxPopup.qml │ ├── GeneralStackView.qml │ ├── GeneralSwipeView.qml │ ├── HistoryFilterList.qml │ ├── MenuThemeAccent.qml │ ├── MultiplePasswordRequester.qml │ ├── NetworkSettings.qml │ ├── Networking.qml │ ├── Outputs.qml │ ├── PageCreateLoadWallet.qml │ ├── PageHistory.qml │ ├── PageSend.qml │ ├── PageWallets.qml │ ├── PasswordRequester.qml │ ├── PendingTransactions.qml │ ├── Settings.qml │ ├── SettingsAddressBook.qml │ ├── SubPageSendAdvanced.qml │ ├── SubPageSendSimple.qml │ ├── ToolButtonQR.qml │ ├── TransactionDetails.qml │ ├── Utils │ │ ├── QRCode.qml │ │ └── qqr.js │ ├── WalletSettings.qml │ ├── main.qml │ └── splash.qml └── util │ ├── .gitkeep │ ├── account.go │ ├── assertthat │ └── assertions.go │ ├── cipher.go │ ├── cipher_test.go │ ├── coin.go │ ├── coin_test.go │ ├── datetime.go │ ├── datetime_test.go │ ├── logging │ ├── formatter.go │ ├── hooks.go │ ├── logger.go │ ├── logging.go │ └── logging_test.go │ ├── main.go │ ├── main_test.go │ ├── plugin_test.go │ ├── pluginutil.go │ ├── requirethat │ └── require.go │ ├── sign.go │ ├── sign_test.go │ ├── signutil │ └── sign.go │ ├── storage.go │ ├── storage_test.go │ ├── testutil │ ├── collections.go │ └── requirements.go │ ├── textutil.go │ ├── textutil_test.go │ ├── util.go │ ├── util_test.go │ ├── wallet.go │ └── wallet_test.go ├── test └── integration │ └── util │ └── hardware-wallet.go └── vendor ├── github.com ├── NYTimes │ └── gziphandler │ │ ├── LICENSE │ │ ├── gzip.go │ │ └── gzip_go18.go ├── SkycoinProject │ └── skycoin │ │ ├── .dockerignore │ │ ├── .editorconfig │ │ ├── .github │ │ └── pull_request_template.md │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── INSTALLATION.md │ │ ├── INTEGRATION.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── ci-scripts │ │ ├── add-key.sh │ │ ├── build-wallet.sh │ │ ├── certs │ │ │ └── dist.p12 │ │ ├── install-golangci-lint.sh │ │ ├── install-nodejs-win.sh │ │ ├── integration-test-auth.sh │ │ ├── integration-test-disable-gui.sh │ │ ├── integration-test-disable-wallet-api.sh │ │ ├── integration-test-enable-seed-api.sh │ │ ├── integration-test-live.sh │ │ ├── integration-test-stable.sh │ │ ├── lint-and-test.sh │ │ ├── run-live-integration-test-node-cover.sh │ │ ├── run-live-integration-test-node.sh │ │ └── ui-e2e.sh │ │ ├── cmd │ │ ├── address_gen │ │ │ └── address_gen.go │ │ ├── cipher-testdata │ │ │ └── cipher-testdata.go │ │ ├── monitor-peers │ │ │ ├── connection │ │ │ │ └── connection.go │ │ │ └── monitor-peers.go │ │ ├── newcoin │ │ │ ├── README.md │ │ │ └── newcoin.go │ │ ├── skycoin-cli │ │ │ ├── README.md │ │ │ ├── skycoin-cli.go │ │ │ └── skycoin-cli_test.go │ │ └── skycoin │ │ │ ├── README.md │ │ │ ├── skycoin.go │ │ │ └── skycoin_test.go │ │ ├── docker │ │ └── images │ │ │ ├── dev-cli │ │ │ ├── Dockerfile │ │ │ └── README.md │ │ │ ├── dev-docker │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── dockerd-entrypoint.sh │ │ │ └── modprobe.sh │ │ │ ├── dev-vscode │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── hooks │ │ │ │ └── push │ │ │ └── start.sh │ │ │ └── mainnet │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ └── hooks │ │ │ └── push │ │ ├── docker_launcher.sh │ │ ├── electron │ │ ├── README.md │ │ ├── assets │ │ │ └── osx │ │ │ │ ├── Info.plist │ │ │ │ └── appIcon.icns │ │ ├── build-cli-release.sh │ │ ├── build-conf.sh │ │ ├── build-daemon-release.sh │ │ ├── build-electron-release.sh │ │ ├── build-standalone-release.sh │ │ ├── build.sh │ │ ├── build │ │ │ ├── icon.icns │ │ │ ├── icon.ico │ │ │ └── icons │ │ │ │ └── icon512x512.png │ │ ├── clean-static-libs.sh │ │ ├── clean.sh │ │ ├── compress-cli-release.sh │ │ ├── compress-daemon-release.sh │ │ ├── compress-electron-release.sh │ │ ├── compress-standalone-release.sh │ │ ├── electron-downloader.sh │ │ ├── gox.sh │ │ ├── install-node-modules.sh │ │ ├── package-cli-release.sh │ │ ├── package-daemon-release.sh │ │ ├── package-electron-release.sh │ │ ├── package-lock.json │ │ ├── package-source.sh │ │ ├── package-standalone-release.sh │ │ ├── package.json │ │ ├── skycoin │ │ │ └── current-skycoin.json │ │ └── src │ │ │ ├── .snyk │ │ │ ├── README.md │ │ │ ├── electron-api.js │ │ │ ├── electron-main.js │ │ │ ├── hardware-wallet.js │ │ │ ├── install-dependencies.sh │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── splash │ │ │ └── index.html │ │ ├── fiber.toml │ │ ├── iketheadore.asc │ │ ├── peers.txt │ │ ├── run-client.sh │ │ ├── run-daemon.sh │ │ ├── src │ │ ├── api │ │ │ ├── README.md │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── blockchain.go │ │ │ ├── blockchain_test.go │ │ │ ├── client.go │ │ │ ├── csrf.go │ │ │ ├── csrf_test.go │ │ │ ├── explorer.go │ │ │ ├── explorer_test.go │ │ │ ├── gateway.go │ │ │ ├── health.go │ │ │ ├── health_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── integration │ │ │ │ ├── empty.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── storage_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── address-transactions-2RRpfMDmPHEyG4LWmNYT6eWj5VcmUfCJY6D.golden │ │ │ │ │ ├── address-transactions-2b8ourW8fbTkC1yQBSLseVt6srhXvNMHvn9.golden │ │ │ │ │ ├── address-transactions-2jBbGxZRGoQG1mqhPBnXnLTxK6oxsTf8os6.golden │ │ │ │ │ ├── address-transactions-ALJVNKYL7WGxFBSriiZuwZKWD4b7fbV1od.golden │ │ │ │ │ ├── address-transactions-R6aHqKWSQfvpdo2fGSrq4F1RYXkBWR9HHJ.golden │ │ │ │ │ ├── address-transactions-incoming-212mwY3Dmey6vwnWpiph99zzCmopXTqeVEN.golden │ │ │ │ │ ├── address-transactions-outgoing-R6aHqKWSQfvpdo2fGSrq4F1RYXkBWR9HHJ.golden │ │ │ │ │ ├── all-unconfirmed-txns-verbose.golden │ │ │ │ │ ├── all-unconfirmed-txns.golden │ │ │ │ │ ├── balance-2THDupTBEo7UqB6dsVizkYUvkKq82Qn4gjf.golden │ │ │ │ │ ├── balance-affected-by-unconfirmed-txns.golden │ │ │ │ │ ├── balance-noaddrs.golden │ │ │ │ │ ├── balance-two-addrs.golden │ │ │ │ │ ├── block-hash-genesis.golden │ │ │ │ │ ├── block-hash-verbose-genesis.golden │ │ │ │ │ ├── block-hash-verbose.golden │ │ │ │ │ ├── block-hash.golden │ │ │ │ │ ├── block-last-verbose.golden │ │ │ │ │ ├── block-last.golden │ │ │ │ │ ├── block-seq-0.golden │ │ │ │ │ ├── block-seq-1.golden │ │ │ │ │ ├── block-seq-100.golden │ │ │ │ │ ├── block-seq-verbose-0.golden │ │ │ │ │ ├── block-seq-verbose-1.golden │ │ │ │ │ ├── block-seq-verbose-100.golden │ │ │ │ │ ├── blockchain-180-no-unconfirmed.db │ │ │ │ │ ├── blockchain-180.db │ │ │ │ │ ├── blockchain-metadata-no-unconfirmed.golden │ │ │ │ │ ├── blockchain-metadata.golden │ │ │ │ │ ├── blockchain-progress.golden │ │ │ │ │ ├── blocks-3-5-7-verbose.golden │ │ │ │ │ ├── blocks-3-5-7.golden │ │ │ │ │ ├── blocks-all.golden │ │ │ │ │ ├── blocks-end-less-than-start.golden │ │ │ │ │ ├── blocks-first-1.golden │ │ │ │ │ ├── blocks-first-10.golden │ │ │ │ │ ├── blocks-last-10.golden │ │ │ │ │ ├── blocks-verbose-all.golden │ │ │ │ │ ├── blocks-verbose-end-less-than-start.golden │ │ │ │ │ ├── blocks-verbose-first-1.golden │ │ │ │ │ ├── blocks-verbose-first-10.golden │ │ │ │ │ ├── blocks-verbose-genesis.golden │ │ │ │ │ ├── blocks-verbose-last-10.golden │ │ │ │ │ ├── coinsupply.golden │ │ │ │ │ ├── confirmed-and-unconfirmed-transactions-verbose.golden │ │ │ │ │ ├── confirmed-and-unconfirmed-transactions.golden │ │ │ │ │ ├── empty-addrs-transactions-verbose.golden │ │ │ │ │ ├── empty-addrs-transactions.golden │ │ │ │ │ ├── genesis-addr-transactions-verbose.golden │ │ │ │ │ ├── genesis-addr-transactions.golden │ │ │ │ │ ├── genesis-raw-tx.golden │ │ │ │ │ ├── genesis-transaction-encoded.golden │ │ │ │ │ ├── genesis-transaction-verbose.golden │ │ │ │ │ ├── genesis-transaction.golden │ │ │ │ │ ├── multiple-addr-transactions-verbose.golden │ │ │ │ │ ├── multiple-addr-transactions.golden │ │ │ │ │ ├── network-default-peers.golden │ │ │ │ │ ├── network-exchanged-peers.golden │ │ │ │ │ ├── network-trusted-peers.golden │ │ │ │ │ ├── no-unconfirmed-outputs-addrs.golden │ │ │ │ │ ├── no-unconfirmed-outputs-hashes.golden │ │ │ │ │ ├── no-unconfirmed-outputs-noargs.golden │ │ │ │ │ ├── no-unconfirmed-txns.golden │ │ │ │ │ ├── outputs-addrs.golden │ │ │ │ │ ├── outputs-hashes.golden │ │ │ │ │ ├── outputs-noargs.golden │ │ │ │ │ ├── pending-transactions.golden │ │ │ │ │ ├── richlist-150-include-distribution.golden │ │ │ │ │ ├── richlist-8.golden │ │ │ │ │ ├── richlist-all-include-distribution.golden │ │ │ │ │ ├── richlist-all.golden │ │ │ │ │ ├── richlist-default.golden │ │ │ │ │ ├── single-addr-transactions-verbose.golden │ │ │ │ │ ├── single-addr-transactions.golden │ │ │ │ │ ├── transaction-block-101.golden │ │ │ │ │ ├── transaction-block-517.golden │ │ │ │ │ ├── transaction-encoded-block-101.golden │ │ │ │ │ ├── transaction-encoded-block-105.golden │ │ │ │ │ ├── transaction-encoded.golden │ │ │ │ │ ├── transaction-unconfirmed-encoded.golden │ │ │ │ │ ├── transaction-unconfirmed-verbose.golden │ │ │ │ │ ├── transaction-unconfirmed.golden │ │ │ │ │ ├── transaction-verbose-block-101.golden │ │ │ │ │ ├── transaction-verbose-block-517.golden │ │ │ │ │ ├── unconfirmed-excluded-from-transactions-verbose.golden │ │ │ │ │ ├── unconfirmed-excluded-from-transactions.golden │ │ │ │ │ ├── uxout-addr.golden │ │ │ │ │ ├── uxout-noaddr.golden │ │ │ │ │ ├── uxout-spent.golden │ │ │ │ │ ├── uxout.golden │ │ │ │ │ ├── verbose-pending-transactions.golden │ │ │ │ │ ├── verify-address.golden │ │ │ │ │ ├── verify-transaction-invalid-bad-sig.golden │ │ │ │ │ ├── verify-transaction-invalid-empty.golden │ │ │ │ │ ├── wallet-balance-bip44.golden │ │ │ │ │ ├── wallet-balance-deterministic.golden │ │ │ │ │ ├── wallet-balance-xpub.golden │ │ │ │ │ ├── wallet-bip44-transactions-verbose.golden │ │ │ │ │ ├── wallet-bip44-transactions.golden │ │ │ │ │ ├── wallet-deterministic-transactions-verbose.golden │ │ │ │ │ ├── wallet-deterministic-transactions.golden │ │ │ │ │ ├── wallet-xpub-transactions-verbose.golden │ │ │ │ │ └── wallet-xpub-transactions.golden │ │ │ │ ├── transactions_test.go │ │ │ │ └── wallet_test.go │ │ │ ├── metrics.go │ │ │ ├── middleware.go │ │ │ ├── middleware_test.go │ │ │ ├── mock_gatewayer_test.go │ │ │ ├── network.go │ │ │ ├── network_test.go │ │ │ ├── outputs.go │ │ │ ├── outputs_test.go │ │ │ ├── spend.go │ │ │ ├── spend_test.go │ │ │ ├── storage.go │ │ │ ├── storage_test.go │ │ │ ├── transaction.go │ │ │ ├── transaction_test.go │ │ │ ├── uxout.go │ │ │ ├── uxout_test.go │ │ │ ├── version.go │ │ │ ├── wallet.go │ │ │ └── wallet_test.go │ │ ├── cipher │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── base58 │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE_old │ │ │ │ ├── README.md │ │ │ │ ├── base58.go │ │ │ │ ├── base58_old.go │ │ │ │ ├── base58_test.go │ │ │ │ └── internal │ │ │ │ │ ├── base58fuzz.go │ │ │ │ │ └── corpus │ │ │ │ │ ├── 1111bad │ │ │ │ │ ├── 1111x │ │ │ │ │ ├── 29e2dcfbb16f63bb0254df7585a15bb6fb5e927d-2 │ │ │ │ │ ├── 5ba93c9db0cff93f52b521d7420e43f6eda2784f-2 │ │ │ │ │ ├── 63cc529d9461baca5d2c91e0324ca72f5cb1aed7 │ │ │ │ │ ├── 7722745105e9e02e8f1aaf17f7b3aac5c56cd805-4 │ │ │ │ │ ├── 7f39d13d5e2aa7375797fb77077e6aa12a60ae0a │ │ │ │ │ ├── 81b1b384bb7472094196462c7df78a379f7b138d │ │ │ │ │ ├── 82571bcccd0d67578b68076a0a3e5d5613e0d645-1 │ │ │ │ │ ├── 8696cf0f4655636cc93c566c1be2dad311da646c-7 │ │ │ │ │ ├── 8c1e6ab4270792c51304ea06f47dc20ce51ba57b-2 │ │ │ │ │ ├── 8d9f954cc9a4c3ef1840c989f2b71e18873f0589 │ │ │ │ │ ├── 9069ca78e7450a285173431b3e52c5c25299e473-3 │ │ │ │ │ ├── 930e9a975a3e73d83f90ea559a52017e69bd0a00 │ │ │ │ │ ├── 931613845dd0e72f1b1a5ba0c89f1c34e5cc089d-8 │ │ │ │ │ ├── 9694c4ebd673a5e2fd26e4b2e64f92e914ebd95f-5 │ │ │ │ │ ├── 979280a6ddd4c774e8f1747337ee9a95b0a8a515-3 │ │ │ │ │ ├── 990f38b139e8a5d4b80012947e7512c6fc32c58b-2 │ │ │ │ │ ├── a0b42fa23623c8d15ac8477d74c13d5299ac8461-1 │ │ │ │ │ ├── a614af7858f3baeec55490a10c3b9e6283838faf │ │ │ │ │ ├── a770e927c71c77a0a9ba32e12cd7eae07148f0e7-6 │ │ │ │ │ ├── abcd │ │ │ │ │ ├── b6589fc6ab0dc82cf12099d1c2d40ab994e8410c │ │ │ │ │ ├── bfcb34f317e08e8d0b3d10c2e03c3704cb99242d │ │ │ │ │ ├── d5aa874081d093c9ba2af462799ba66d98033b8c │ │ │ │ │ ├── d775adbd66b5eeebfeb273d73655a908fcad5498 │ │ │ │ │ ├── da39a3ee5e6b4b0d3255bfef95601890afd80709-1 │ │ │ │ │ ├── da6ce8d669450d7c33af7d22a55b97e3b7123734-1 │ │ │ │ │ ├── e93a7ad811a68a06a65b11f91bd7266fb29a9f79 │ │ │ │ │ ├── ec541f6dcf03854cc36fb729db91fb04e6421ea0-2 │ │ │ │ │ ├── empty │ │ │ │ │ ├── f061cd9b3021c1d204229980a55e56546bf1978b │ │ │ │ │ ├── f62410abfef601b7470b42124a59aa0d0ec3a673-1 │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test2 │ │ │ │ │ └── test3 │ │ │ ├── bip32 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bip32.go │ │ │ │ ├── bip32_test.go │ │ │ │ ├── path.go │ │ │ │ └── utils.go │ │ │ ├── bip39 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bip39.go │ │ │ │ ├── bip39_test.go │ │ │ │ ├── example_test.go │ │ │ │ └── wordlists │ │ │ │ │ ├── chinese_simplified.go │ │ │ │ │ ├── chinese_traditional.go │ │ │ │ │ ├── english.go │ │ │ │ │ ├── french.go │ │ │ │ │ ├── italian.go │ │ │ │ │ ├── japanese.go │ │ │ │ │ ├── korean.go │ │ │ │ │ └── spanish.go │ │ │ ├── bip44 │ │ │ │ ├── bip44.go │ │ │ │ ├── bip44_test.go │ │ │ │ └── example_test.go │ │ │ ├── bitcoin.go │ │ │ ├── bitcoin_test.go │ │ │ ├── chacha20poly1305 │ │ │ │ ├── chacha20poly1305.go │ │ │ │ ├── chacha20poly1305_amd64.go │ │ │ │ ├── chacha20poly1305_amd64.s │ │ │ │ ├── chacha20poly1305_generic.go │ │ │ │ ├── chacha20poly1305_noasm.go │ │ │ │ ├── chacha20poly1305_test.go │ │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ │ └── internal │ │ │ │ │ └── chacha20 │ │ │ │ │ ├── chacha_generic.go │ │ │ │ │ └── chacha_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── encoder │ │ │ │ ├── README.md │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_test.go │ │ │ │ ├── internal │ │ │ │ │ ├── corpus │ │ │ │ │ │ ├── 041b1e464b2ba38e33a5351a0a1e44224d8009c3-6 │ │ │ │ │ │ ├── 077dc23e8eb7e862e73b328d31933197c811c649-15 │ │ │ │ │ │ ├── 089fa205b8b7238fa0c53ff2ee37eea31cc96cf0-5 │ │ │ │ │ │ ├── 0bcb8572beb6f78163173d22d05d0b829eeb8536-9 │ │ │ │ │ │ ├── 0ce250a330a226ac76e02b62fe67b2a5d4453768-9 │ │ │ │ │ │ ├── 0e2c5892a020afbfb4c69e6b3fbf62611894cbd3-5 │ │ │ │ │ │ ├── 136480971168a1f51c8771dca4f98ec33b45ebed-19 │ │ │ │ │ │ ├── 1872c242562f8c741cb523f7a8c67d1a6cbf6114-14 │ │ │ │ │ │ ├── 1ccc50005fac8ad75770f8c59bd85ba9f732f4f9-2 │ │ │ │ │ │ ├── 2531e551ac6da0b5a8aa9a7be236f6c28f10fc86-8 │ │ │ │ │ │ ├── 26f7b389dbc8fa0cba8e06dfec8119ab38b7169e-7 │ │ │ │ │ │ ├── 2749b52ac05c6a17cff3b18309e67797a6e4eb23-8 │ │ │ │ │ │ ├── 29506ec6042c7ad6d573cc04fa6f5326d72393b1-4 │ │ │ │ │ │ ├── 2970bf40d22e53690825af48f0c5a2d207d6dc35-10 │ │ │ │ │ │ ├── 2ccb8d1be0035433d872c000bbc2939790bda364-8 │ │ │ │ │ │ ├── 32fb84cb7eaa06c2e2df5fadc878538d31fbee4d-8 │ │ │ │ │ │ ├── 3336f9e174fe5c484c9db9c7e9886f42f88161c0-6 │ │ │ │ │ │ ├── 33af649be84c4dae0f2f55db97dd4de0a73d655e-15 │ │ │ │ │ │ ├── 33c24c3476c3f9c874372c21a171b8fbacf3bcea-2 │ │ │ │ │ │ ├── 35539f3efc6318e51ba224be44807d0efbb7059b-7 │ │ │ │ │ │ ├── 37338dc621d742a5c9d05865df851c9e39913bba-6 │ │ │ │ │ │ ├── 3a51db55e30887d6f3fe57ae7e762b99f3b904d2-9 │ │ │ │ │ │ ├── 3b8fee13e7d43ef5ee563571f37558527352cc2f-9 │ │ │ │ │ │ ├── 420b9123c6f5e27a4b70457d2896711648f32587-9 │ │ │ │ │ │ ├── 4687701f52eb1ebf05ba1c5e511f0e3d3e9ec85a-13 │ │ │ │ │ │ ├── 4e29838ae6ef4fe445ac868b22e9110a55a5e45d-4 │ │ │ │ │ │ ├── 4f7355e86769b5de8a676a0d6eb689cff5c86a73-8 │ │ │ │ │ │ ├── 503360a5973eb6690b249de0dcae67234dec5ebc-18 │ │ │ │ │ │ ├── 549736bf7e173f6fce9fdbd4541f9edfff6946e7-11 │ │ │ │ │ │ ├── 56f670c79df3276598ffdf7bb96f19790f0ca91a-16 │ │ │ │ │ │ ├── 5be6cccdfa04fc4b82c64c7645ee6a674d7c4e92-5 │ │ │ │ │ │ ├── 5fac2f16b26878136ec3590108d5037e25d0670b-4 │ │ │ │ │ │ ├── 6187cd16bd7e898a241ab9da57c48d47a9cc0c51-10 │ │ │ │ │ │ ├── 64321c57e11b3301c331fb0944ce5da1b2a6da30-7 │ │ │ │ │ │ ├── 66bc94bc50bd9e1e0154f3f9159b51c3afc65a6d-17 │ │ │ │ │ │ ├── 68ae7e24181f8835ab699edb50a469edb5a7e639-1 │ │ │ │ │ │ ├── 69a32273a7f7947656fc987a6ed63ea2f840eccc-1 │ │ │ │ │ │ ├── 6c509c4d239263ccb5763cfadea9a623cc7fba78-3 │ │ │ │ │ │ ├── 6ef7698bc2ff390365fdd219ff89238427d880b0-4 │ │ │ │ │ │ ├── 758131515c424fa182cf4c5a3913daffeff757f9-15 │ │ │ │ │ │ ├── 7a9ce113e3f8e9a032f51e42b73febfa0c88102e-7 │ │ │ │ │ │ ├── 7e084c67224f01361d2ebbe58842ec7c0374e687-11 │ │ │ │ │ │ ├── 80264feff826888953082aa7e15c0ac885f9e599-14 │ │ │ │ │ │ ├── 860ce68c0e8febf9c801982f06471d4382198983-20 │ │ │ │ │ │ ├── 8a68666cb26cbc69b5e00716d6ff155b340c058c-4 │ │ │ │ │ │ ├── 8caf69f543d97113462f8b4c5f036e06bb9b672f-17 │ │ │ │ │ │ ├── 9069ca78e7450a285173431b3e52c5c25299e473 │ │ │ │ │ │ ├── 9449700da8e8e406ff4c6c4db21ed97e251db2a5-2 │ │ │ │ │ │ ├── 95514c598a7891b09f368766d1533d7e66113639-9 │ │ │ │ │ │ ├── 9904b7300bd20f370a99fb47411a7aa0a4fc0745-7 │ │ │ │ │ │ ├── 9d4cf58e90324733edca6e1b934e35f73d1ebea6-15 │ │ │ │ │ │ ├── 9de6f2bbd4635419b74ed98081097765b68982fe-1 │ │ │ │ │ │ ├── a06c8725aa396d2dee53394f1f1a07cfae073a56-7 │ │ │ │ │ │ ├── a1133dacbc19a4b3f59434944387897107e5ab09-17 │ │ │ │ │ │ ├── a14e6c14df85b1a05934e56f9dbb8adc194cf726-3 │ │ │ │ │ │ ├── a1c39fcf65469e76790a0e15bf52ae8b44567f5c-12 │ │ │ │ │ │ ├── a2accc510a183328ff269a3487e16ce54714ed9f-6 │ │ │ │ │ │ ├── a9935fff6d379203b62e011d39c85c69ab90bc25-13 │ │ │ │ │ │ ├── abe8937a39c3413fda2387eb5356a0b9eaf4ea7b-13 │ │ │ │ │ │ ├── aef89a58363b964551a5f544be9c804e3fd53bd5-6 │ │ │ │ │ │ ├── b041a0b90d9bc8c74a1cd879d336bb8204d10efc-14 │ │ │ │ │ │ ├── b1b97c4860bd6b45e2a168e27018032a6327126f-13 │ │ │ │ │ │ ├── bf4b7e1d763d79835646d84b3e06b09be39fd40e-4 │ │ │ │ │ │ ├── c03f33b370fee562858b596818280c41f03fbe9a-1 │ │ │ │ │ │ ├── c52fe64291e1edc6709766b184bc55b4ae5c3bf5-1 │ │ │ │ │ │ ├── caf902d1a7d48dc4474b888739e8ebf6bb4e4d21-8 │ │ │ │ │ │ ├── cf886c5afb98cd7ca1a40b2abdc7875aa84b231d-9 │ │ │ │ │ │ ├── d1d44dee03fb91be62e28827941afc04cb268057-8 │ │ │ │ │ │ ├── d71a8731a29c71e5ef7bcd09c0731cfcea3b0195-9 │ │ │ │ │ │ ├── d7bd05d8b31190fb1beea885eb5766671cb5189a-2 │ │ │ │ │ │ ├── da39a3ee5e6b4b0d3255bfef95601890afd80709 │ │ │ │ │ │ ├── da6d6d7bd15a8a5eb93bdc25d79239aed62c2a89-14 │ │ │ │ │ │ ├── e1023efdabed24a21bbee19f16d38b849462102d-14 │ │ │ │ │ │ ├── e3e1ce0d82369c7c4d77b97bbb36adb219301aaa-11 │ │ │ │ │ │ ├── e8a40e28e25690d4a7845adb423069822d20d9bf-11 │ │ │ │ │ │ ├── ead0c77c531dc48ef7cb0e40ed5994b44bdd8351-18 │ │ │ │ │ │ ├── ebfcdfbcdaa26064949184656376fb0e677dcece-6 │ │ │ │ │ │ ├── f3fb81782fdc71e47477802945ee2b84e0faaa20-12 │ │ │ │ │ │ ├── f68374cd8433a09a006c2d80655691171a5141c9-15 │ │ │ │ │ │ ├── f793d6352b6d0d92c21660b6ff5c39bd628abad8-5 │ │ │ │ │ │ ├── f7e04d0cfa0a3d927efc18ae1e7a1f73abb337cc-7 │ │ │ │ │ │ ├── f82afcaf7653e5248862ce80ca989b2b2bceafe6-16 │ │ │ │ │ │ ├── fa57b5d7162c57a67c550c57e8d7ff4d2502f9ad-15 │ │ │ │ │ │ ├── fb348445b6108e2ae34d45d161e19de632a3ef8a-9 │ │ │ │ │ │ ├── fcf3b78f943921415f4dfa801a1ac48d7a0b896f-12 │ │ │ │ │ │ ├── fe4236573e1ab50aa1ce65ac96905533eb03e0d2-5 │ │ │ │ │ │ ├── ffc89ebf75eda9a93566a2227bded8b2c23971b0-4 │ │ │ │ │ │ ├── thing.serialized │ │ │ │ │ │ ├── thing2.serialized │ │ │ │ │ │ └── thing3.serialized │ │ │ │ │ └── encoderfuzz.go │ │ │ │ └── testdata │ │ │ │ │ └── encode-every-type.golden │ │ │ ├── encrypt │ │ │ │ ├── scrypt_chacha20poly1305.go │ │ │ │ ├── scrypt_chacha20poly1305_test.go │ │ │ │ ├── sha256xor.go │ │ │ │ └── sha256xor_test.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── pbkdf2 │ │ │ │ ├── pbkdf2.go │ │ │ │ └── pbkdf2_test.go │ │ │ ├── poly1305 │ │ │ │ ├── poly1305.go │ │ │ │ ├── poly1305_test.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_arm.go │ │ │ │ ├── sum_arm.s │ │ │ │ └── sum_ref.go │ │ │ ├── ripemd160 │ │ │ │ ├── ripemd160block.go │ │ │ │ └── ripmd_160.go │ │ │ ├── scrypt │ │ │ │ ├── scrypt.go │ │ │ │ └── scrypt_test.go │ │ │ ├── secp256k1-go │ │ │ │ ├── README.md │ │ │ │ ├── secp256_rand.go │ │ │ │ ├── secp256_test.go │ │ │ │ ├── secp256k1-go2 │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ec.go │ │ │ │ │ ├── ec_test.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── field_test.go │ │ │ │ │ ├── num.go │ │ │ │ │ ├── secp256k1.go │ │ │ │ │ ├── sig.go │ │ │ │ │ ├── sig_test.go │ │ │ │ │ ├── xy.go │ │ │ │ │ ├── xyz.go │ │ │ │ │ ├── xyz_test.go │ │ │ │ │ ├── z_consts.go │ │ │ │ │ └── z_init.go │ │ │ │ └── secp256k1.go │ │ │ └── testsuite │ │ │ │ ├── testdata │ │ │ │ ├── input-hashes.golden │ │ │ │ ├── many-addresses.golden │ │ │ │ ├── seed-0000.golden │ │ │ │ ├── seed-0001.golden │ │ │ │ ├── seed-0002.golden │ │ │ │ ├── seed-0003.golden │ │ │ │ ├── seed-0004.golden │ │ │ │ ├── seed-0005.golden │ │ │ │ ├── seed-0006.golden │ │ │ │ ├── seed-0007.golden │ │ │ │ ├── seed-0008.golden │ │ │ │ ├── seed-0009.golden │ │ │ │ ├── seed-0010.golden │ │ │ │ ├── seed-bip32-0000.golden │ │ │ │ ├── seed-bip32-0001.golden │ │ │ │ ├── seed-bip32-0002.golden │ │ │ │ ├── seed-bip32-0003.golden │ │ │ │ ├── seed-bip32-0004.golden │ │ │ │ ├── seed-bip32-0005.golden │ │ │ │ ├── seed-bip32-0006.golden │ │ │ │ ├── seed-bip32-0007.golden │ │ │ │ ├── seed-bip32-0008.golden │ │ │ │ └── seed-bip32-0009.golden │ │ │ │ ├── testsuite.go │ │ │ │ └── testsuite_test.go │ │ ├── cli │ │ │ ├── add_private_key.go │ │ │ ├── address_gen.go │ │ │ ├── addresscount.go │ │ │ ├── blocks.go │ │ │ ├── broadcast_rawtx.go │ │ │ ├── check_balance.go │ │ │ ├── check_balance_test.go │ │ │ ├── checkdb.go │ │ │ ├── cli.go │ │ │ ├── cli_test.go │ │ │ ├── create_rawtx.go │ │ │ ├── create_rawtx_test.go │ │ │ ├── decrypt_wallet.go │ │ │ ├── distribute_genesis.go │ │ │ ├── encrypt_wallet.go │ │ │ ├── generate_addrs.go │ │ │ ├── generate_wallet.go │ │ │ ├── integration │ │ │ │ ├── empty.go │ │ │ │ ├── integration_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── address-balance.golden │ │ │ │ │ ├── address-outputs.golden │ │ │ │ │ ├── block0.golden │ │ │ │ │ ├── blocks0-5.golden │ │ │ │ │ ├── blocks180.golden │ │ │ │ │ ├── decode-raw-transaction.golden │ │ │ │ │ ├── generate-addresses-2.golden │ │ │ │ │ ├── generate-addresses-encrypted.golden │ │ │ │ │ ├── generate-addresses.golden │ │ │ │ │ ├── genesis-transaction-cli.golden │ │ │ │ │ ├── genesis-transaction.golden │ │ │ │ │ ├── integration-test-encrypted.wlt │ │ │ │ │ ├── integration-test.wlt │ │ │ │ │ ├── last-blocks0.golden │ │ │ │ │ ├── last-blocks1.golden │ │ │ │ │ ├── last-blocks2.golden │ │ │ │ │ ├── list-addresses.golden │ │ │ │ │ ├── list-wallets.golden │ │ │ │ │ ├── recompute-transaction-hash.golden │ │ │ │ │ ├── show-config.golden │ │ │ │ │ ├── status-csrf-enabled-header-check-disabled-no-unconfirmed.golden │ │ │ │ │ ├── status-csrf-enabled-header-check-disabled.golden │ │ │ │ │ ├── status-no-unconfirmed.golden │ │ │ │ │ ├── status.golden │ │ │ │ │ ├── two-addresses-outputs.golden │ │ │ │ │ ├── unconfirmed-transaction-cli.golden │ │ │ │ │ ├── wallet-balance.golden │ │ │ │ │ ├── wallet-history.golden │ │ │ │ │ └── wallet-outputs.golden │ │ │ ├── last_blocks.go │ │ │ ├── list_addrs.go │ │ │ ├── list_wallets.go │ │ │ ├── outputs.go │ │ │ ├── richlist.go │ │ │ ├── send.go │ │ │ ├── show_seed.go │ │ │ ├── status.go │ │ │ ├── transaction.go │ │ │ ├── verify_address.go │ │ │ ├── version.go │ │ │ ├── wallet_history.go │ │ │ └── wallet_key_export.go │ │ ├── coin │ │ │ ├── block.go │ │ │ ├── block_body_skyencoder.go │ │ │ ├── block_body_skyencoder_test.go │ │ │ ├── block_header_skyencoder.go │ │ │ ├── block_header_skyencoder_test.go │ │ │ ├── block_test.go │ │ │ ├── outputs.go │ │ │ ├── outputs_test.go │ │ │ ├── transaction_inputs_skyencoder.go │ │ │ ├── transaction_inputs_skyencoder_test.go │ │ │ ├── transaction_outputs_skyencoder.go │ │ │ ├── transaction_outputs_skyencoder_test.go │ │ │ ├── transaction_skyencoder.go │ │ │ ├── transaction_skyencoder_test.go │ │ │ ├── transactions.go │ │ │ ├── transactions_test.go │ │ │ ├── ux_body_skyencoder.go │ │ │ ├── ux_body_skyencoder_test.go │ │ │ ├── ux_head_skyencoder.go │ │ │ └── ux_head_skyencoder_test.go │ │ ├── consensus │ │ │ ├── blockstat.go │ │ │ ├── connection_manager.go │ │ │ ├── consensus.go │ │ │ ├── consensus_test.go │ │ │ ├── example │ │ │ │ ├── README.md │ │ │ │ ├── example.go │ │ │ │ ├── example_gnet.go │ │ │ │ └── example_minimal.go │ │ │ ├── participant.go │ │ │ └── public_broadcast_channel │ │ │ │ └── public_broadcast_channel.go │ │ ├── daemon │ │ │ ├── announce_blocks_message_skyencoder.go │ │ │ ├── announce_blocks_message_skyencoder_test.go │ │ │ ├── announce_txns_message_skyencoder.go │ │ │ ├── announce_txns_message_skyencoder_test.go │ │ │ ├── announced_txns.go │ │ │ ├── connections.go │ │ │ ├── connections_test.go │ │ │ ├── daemon.go │ │ │ ├── daemon_test.go │ │ │ ├── disconnect_message_skyencoder.go │ │ │ ├── disconnect_message_skyencoder_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── get_blocks_message_skyencoder.go │ │ │ ├── get_blocks_message_skyencoder_test.go │ │ │ ├── get_txns_message_skyencoder.go │ │ │ ├── get_txns_message_skyencoder_test.go │ │ │ ├── give_blocks_message_skyencoder.go │ │ │ ├── give_blocks_message_skyencoder_test.go │ │ │ ├── give_peers_message_skyencoder.go │ │ │ ├── give_peers_message_skyencoder_test.go │ │ │ ├── give_txns_message_skyencoder.go │ │ │ ├── give_txns_message_skyencoder_test.go │ │ │ ├── gnet │ │ │ │ ├── README.md │ │ │ │ ├── dispatcher.go │ │ │ │ ├── dispatcher_test.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── pool.go │ │ │ │ └── pool_test.go │ │ │ ├── introduction_message_skyencoder.go │ │ │ ├── introduction_message_skyencoder_test.go │ │ │ ├── ip_addr_skyencoder.go │ │ │ ├── ip_addr_skyencoder_test.go │ │ │ ├── messages.go │ │ │ ├── messages_benchmark_test.go │ │ │ ├── messages_test.go │ │ │ ├── mock_daemoner_test.go │ │ │ ├── pex │ │ │ │ ├── README.md │ │ │ │ ├── peerlist.go │ │ │ │ ├── peerlist_test.go │ │ │ │ ├── pex.go │ │ │ │ └── pex_test.go │ │ │ ├── pool.go │ │ │ ├── signed_block_skyencoder.go │ │ │ ├── signed_block_skyencoder_test.go │ │ │ ├── strand │ │ │ │ └── strand.go │ │ │ ├── testdata │ │ │ │ ├── announce-blocks-msg.golden │ │ │ │ ├── announce-txns-msg.golden │ │ │ │ ├── get-blocks-msg.golden │ │ │ │ ├── get-peers-msg.golden │ │ │ │ ├── get-txns-msg.golden │ │ │ │ ├── give-blocks-msg.golden │ │ │ │ ├── give-peers-msg.golden │ │ │ │ ├── give-txns-msg.golden │ │ │ │ ├── intro-msg-extra.golden │ │ │ │ ├── intro-msg.golden │ │ │ │ ├── ping-msg.golden │ │ │ │ └── pong-msg.golden │ │ │ ├── transaction_skyencoder.go │ │ │ └── transaction_skyencoder_test.go │ │ ├── fiber │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── testdata │ │ │ │ └── test.fiber.toml │ │ ├── gui │ │ │ └── static │ │ │ │ ├── .angular-cli.json │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── 0.d5967d50848818a3b5b3.chunk.js │ │ │ │ ├── 1.bf6ae8acc706c3217da3.chunk.js │ │ │ │ ├── 2.af5e2fa6c65ff6f39739.chunk.js │ │ │ │ ├── 3.b1328f7fc5fe260edda4.chunk.js │ │ │ │ ├── 3rdpartylicenses.txt │ │ │ │ ├── 4.7f8f58ff3f30291666bf.chunk.js │ │ │ │ ├── 5.a2cdc3b5d1d15440fa16.chunk.js │ │ │ │ ├── 6.86e4e580e25082578bb8.chunk.js │ │ │ │ ├── MaterialIcons-Regular.012cf6a10129e2275d79.woff │ │ │ │ ├── MaterialIcons-Regular.570eb83859dc23dd0eec.woff2 │ │ │ │ ├── MaterialIcons-Regular.a37b0c01c0baf1888ca8.ttf │ │ │ │ ├── MaterialIcons-Regular.e79bfd88537def476913.eot │ │ │ │ ├── Skycoin-Bold.42363955889f2f20c527.woff │ │ │ │ ├── Skycoin-Bold.6ccafc6fabc0cc8a971a.woff2 │ │ │ │ ├── Skycoin-BoldItalic.923dce74069362d168fe.woff │ │ │ │ ├── Skycoin-BoldItalic.c414dad20c4e3020221c.woff2 │ │ │ │ ├── Skycoin-Light.4be01e4a68be8bf590da.woff │ │ │ │ ├── Skycoin-Light.770b27ec05c2f97a1a27.woff2 │ │ │ │ ├── Skycoin-LightItalic.39e68da05bf8b4a77aa2.woff │ │ │ │ ├── Skycoin-LightItalic.d10a437db5d8e2a52b4a.woff2 │ │ │ │ ├── Skycoin-Regular.21b4caaaedc00594e7bd.woff2 │ │ │ │ ├── Skycoin-Regular.98d953e74f174cf013b4.woff │ │ │ │ ├── Skycoin-RegularItalic.9947360f79b09132fd21.woff │ │ │ │ ├── Skycoin-RegularItalic.9eabbc2e01a7e17bb57d.woff2 │ │ │ │ ├── assets │ │ │ │ │ ├── bip39-word-list.json │ │ │ │ │ ├── error-alert │ │ │ │ │ │ ├── big-error-icon.png │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── material-icons │ │ │ │ │ │ │ ├── MaterialIcons-Regular.eot │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ │ │ │ │ ├── MaterialIcons-Regular.svg │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ │ │ │ └── material-icons.css │ │ │ │ │ │ └── skycoin │ │ │ │ │ │ │ ├── Skycoin-Bold.woff │ │ │ │ │ │ │ ├── Skycoin-Bold.woff2 │ │ │ │ │ │ │ ├── Skycoin-BoldItalic.woff │ │ │ │ │ │ │ ├── Skycoin-BoldItalic.woff2 │ │ │ │ │ │ │ ├── Skycoin-Light.woff │ │ │ │ │ │ │ ├── Skycoin-Light.woff2 │ │ │ │ │ │ │ ├── Skycoin-LightItalic.woff │ │ │ │ │ │ │ ├── Skycoin-LightItalic.woff2 │ │ │ │ │ │ │ ├── Skycoin-Regular.woff │ │ │ │ │ │ │ ├── Skycoin-Regular.woff2 │ │ │ │ │ │ │ ├── Skycoin-RegularItalic.woff │ │ │ │ │ │ │ └── Skycoin-RegularItalic.woff2 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app1.png │ │ │ │ │ │ ├── app2.png │ │ │ │ │ │ ├── check.js │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_base.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ └── zh_base.json │ │ │ │ │ ├── img │ │ │ │ │ │ ├── alert-red.png │ │ │ │ │ │ ├── big-error-icon.png │ │ │ │ │ │ ├── chevron-right-grey.png │ │ │ │ │ │ ├── close-grey.png │ │ │ │ │ │ ├── delete-grey.png │ │ │ │ │ │ ├── delete-red.png │ │ │ │ │ │ ├── edit-blue.png │ │ │ │ │ │ ├── edit-grey.png │ │ │ │ │ │ ├── header.png │ │ │ │ │ │ ├── hw-gold.png │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── en.png │ │ │ │ │ │ │ ├── es.png │ │ │ │ │ │ │ ├── ru.png │ │ │ │ │ │ │ └── zh.png │ │ │ │ │ │ ├── load-gold.png │ │ │ │ │ │ ├── lock-gold.png │ │ │ │ │ │ ├── lock-grey.png │ │ │ │ │ │ ├── logo-white.png │ │ │ │ │ │ ├── minus-grey.png │ │ │ │ │ │ ├── minus-red.png │ │ │ │ │ │ ├── money-gold.png │ │ │ │ │ │ ├── otc-background.jpg │ │ │ │ │ │ ├── plus-gold.png │ │ │ │ │ │ ├── plus-green.png │ │ │ │ │ │ ├── plus-grey.png │ │ │ │ │ │ ├── qr-code-black.png │ │ │ │ │ │ ├── send-black.png │ │ │ │ │ │ ├── send-blue.png │ │ │ │ │ │ ├── send-gold.png │ │ │ │ │ │ ├── send-white.png │ │ │ │ │ │ ├── size-alert.png │ │ │ │ │ │ ├── transactions-black.png │ │ │ │ │ │ ├── unlock-gold.png │ │ │ │ │ │ ├── unlock-grey.png │ │ │ │ │ │ └── wallet-black.png │ │ │ │ │ ├── logo-white.png │ │ │ │ │ └── scripts │ │ │ │ │ │ └── qrcode.min.js │ │ │ │ ├── favicon.ico │ │ │ │ ├── fontawesome-webfont.674f50d287a8c48dc19b.eot │ │ │ │ ├── fontawesome-webfont.912ec66d7572ff821749.svg │ │ │ │ ├── fontawesome-webfont.af7ae505a9eed503f8b8.woff2 │ │ │ │ ├── fontawesome-webfont.b06871f281fee6b241d6.ttf │ │ │ │ ├── fontawesome-webfont.fee66e712a8a08eef580.woff │ │ │ │ ├── header.03fb33b04c982a1a804d.png │ │ │ │ ├── header.e11f7c6852766b9319d6.png │ │ │ │ ├── index.html │ │ │ │ ├── inline.2fc97466d3eec1b646d4.bundle.js │ │ │ │ ├── main.85a0e2e4ac9f36ebc6fd.bundle.js │ │ │ │ ├── polyfills.44742ea60435cec4c09d.bundle.js │ │ │ │ ├── scripts.8c1255aec48c8ec38c00.bundle.js │ │ │ │ └── styles.3072000db951801c187c.bundle.css │ │ │ │ ├── e2e-proxy.config.js │ │ │ │ ├── e2e │ │ │ │ ├── onboarding.e2e-spec.ts │ │ │ │ ├── onboarding.po.ts │ │ │ │ ├── send.e2e-spec.ts │ │ │ │ ├── send.po.ts │ │ │ │ ├── transactions.e2e-spec.ts │ │ │ │ ├── transactions.po.ts │ │ │ │ ├── tsconfig.e2e.json │ │ │ │ ├── wallets.e2e-spec.ts │ │ │ │ └── wallets.po.ts │ │ │ │ ├── karma.conf.js │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── protractor.conf.js │ │ │ │ ├── proxy.config.js │ │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.html │ │ │ │ │ ├── app.component.scss │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ ├── app.component.ts │ │ │ │ │ ├── app.config.ts │ │ │ │ │ ├── app.datatypes.ts │ │ │ │ │ ├── app.module.ts │ │ │ │ │ ├── app.theme.scss │ │ │ │ │ ├── app.translate-loader.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ │ ├── button.component.html │ │ │ │ │ │ │ │ ├── button.component.scss │ │ │ │ │ │ │ │ ├── button.component.spec.ts │ │ │ │ │ │ │ │ └── button.component.ts │ │ │ │ │ │ │ ├── confirmation │ │ │ │ │ │ │ │ ├── confirmation.component.html │ │ │ │ │ │ │ │ ├── confirmation.component.scss │ │ │ │ │ │ │ │ ├── confirmation.component.spec.ts │ │ │ │ │ │ │ │ └── confirmation.component.ts │ │ │ │ │ │ │ ├── double-button │ │ │ │ │ │ │ │ ├── double-button.component.html │ │ │ │ │ │ │ │ ├── double-button.component.scss │ │ │ │ │ │ │ │ ├── double-button.component.spec.ts │ │ │ │ │ │ │ │ └── double-button.component.ts │ │ │ │ │ │ │ ├── hardware-wallet │ │ │ │ │ │ │ │ ├── hw-added-dialog │ │ │ │ │ │ │ │ │ ├── hw-added-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-added-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-added-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-added-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-backup-dialog │ │ │ │ │ │ │ │ │ ├── hw-backup-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-backup-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-backup-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-backup-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-change-pin-dialog │ │ │ │ │ │ │ │ │ ├── hw-change-pin-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-change-pin-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-change-pin-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-change-pin-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-confirm-address-dialog │ │ │ │ │ │ │ │ │ ├── hw-confirm-address-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-confirm-address-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-confirm-address-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-confirm-address-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-confirm-tx-dialog │ │ │ │ │ │ │ │ │ ├── hw-confirm-tx-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-confirm-tx-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-confirm-tx-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-confirm-tx-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-dialog-base.component.ts │ │ │ │ │ │ │ │ ├── hw-generate-seed-dialog │ │ │ │ │ │ │ │ │ ├── hw-generate-seed-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-generate-seed-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-generate-seed-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-generate-seed-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-message │ │ │ │ │ │ │ │ │ ├── hw-message.component.html │ │ │ │ │ │ │ │ │ ├── hw-message.component.scss │ │ │ │ │ │ │ │ │ ├── hw-message.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-message.component.ts │ │ │ │ │ │ │ │ ├── hw-options-dialog │ │ │ │ │ │ │ │ │ ├── hw-options-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-options-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-options-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-options-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-pin-dialog │ │ │ │ │ │ │ │ │ ├── hw-pin-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-pin-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-pin-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-pin-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-pin-help-dialog │ │ │ │ │ │ │ │ │ ├── hw-pin-help-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-pin-help-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-pin-help-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-pin-help-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-remove-pin-dialog │ │ │ │ │ │ │ │ │ ├── hw-remove-pin-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-remove-pin-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-remove-pin-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-remove-pin-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-restore-seed-dialog │ │ │ │ │ │ │ │ │ ├── hw-restore-seed-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-restore-seed-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-restore-seed-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-restore-seed-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-update-alert-dialog │ │ │ │ │ │ │ │ │ ├── hw-update-alert-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-update-alert-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-update-alert-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-update-alert-dialog.component.ts │ │ │ │ │ │ │ │ ├── hw-update-firmware-dialog │ │ │ │ │ │ │ │ │ ├── hw-update-firmware-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-update-firmware-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-update-firmware-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-update-firmware-dialog.component.ts │ │ │ │ │ │ │ │ └── hw-wipe-dialog │ │ │ │ │ │ │ │ │ ├── hw-wipe-dialog.component.html │ │ │ │ │ │ │ │ │ ├── hw-wipe-dialog.component.scss │ │ │ │ │ │ │ │ │ ├── hw-wipe-dialog.component.spec.ts │ │ │ │ │ │ │ │ │ └── hw-wipe-dialog.component.ts │ │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ │ ├── header.component.html │ │ │ │ │ │ │ │ ├── header.component.scss │ │ │ │ │ │ │ │ ├── header.component.spec.ts │ │ │ │ │ │ │ │ ├── header.component.ts │ │ │ │ │ │ │ │ ├── nav-bar │ │ │ │ │ │ │ │ │ ├── nav-bar.component.html │ │ │ │ │ │ │ │ │ ├── nav-bar.component.scss │ │ │ │ │ │ │ │ │ ├── nav-bar.component.spec.ts │ │ │ │ │ │ │ │ │ └── nav-bar.component.ts │ │ │ │ │ │ │ │ └── top-bar │ │ │ │ │ │ │ │ │ ├── top-bar.component.html │ │ │ │ │ │ │ │ │ ├── top-bar.component.scss │ │ │ │ │ │ │ │ │ ├── top-bar.component.spec.ts │ │ │ │ │ │ │ │ │ └── top-bar.component.ts │ │ │ │ │ │ │ ├── loading-content │ │ │ │ │ │ │ │ ├── loading-content.component.html │ │ │ │ │ │ │ │ ├── loading-content.component.scss │ │ │ │ │ │ │ │ ├── loading-content.component.spec.ts │ │ │ │ │ │ │ │ └── loading-content.component.ts │ │ │ │ │ │ │ ├── modal │ │ │ │ │ │ │ │ ├── modal.component.html │ │ │ │ │ │ │ │ ├── modal.component.scss │ │ │ │ │ │ │ │ ├── modal.component.spec.ts │ │ │ │ │ │ │ │ └── modal.component.ts │ │ │ │ │ │ │ ├── msg-bar │ │ │ │ │ │ │ │ ├── msg-bar.component.html │ │ │ │ │ │ │ │ ├── msg-bar.component.scss │ │ │ │ │ │ │ │ ├── msg-bar.component.spec.ts │ │ │ │ │ │ │ │ └── msg-bar.component.ts │ │ │ │ │ │ │ ├── multiple-destinations-dialog │ │ │ │ │ │ │ │ ├── multiple-destinations-dialog.component.html │ │ │ │ │ │ │ │ ├── multiple-destinations-dialog.component.scss │ │ │ │ │ │ │ │ ├── multiple-destinations-dialog.component.spec.ts │ │ │ │ │ │ │ │ └── multiple-destinations-dialog.component.ts │ │ │ │ │ │ │ ├── password-dialog │ │ │ │ │ │ │ │ ├── password-dialog.component.html │ │ │ │ │ │ │ │ ├── password-dialog.component.scss │ │ │ │ │ │ │ │ ├── password-dialog.component.spec.ts │ │ │ │ │ │ │ │ └── password-dialog.component.ts │ │ │ │ │ │ │ ├── qr-code │ │ │ │ │ │ │ │ ├── qr-code.component.html │ │ │ │ │ │ │ │ ├── qr-code.component.scss │ │ │ │ │ │ │ │ ├── qr-code.component.spec.ts │ │ │ │ │ │ │ │ └── qr-code.component.ts │ │ │ │ │ │ │ ├── seed-word-dialog │ │ │ │ │ │ │ │ ├── seed-word-dialog.component.html │ │ │ │ │ │ │ │ ├── seed-word-dialog.component.scss │ │ │ │ │ │ │ │ ├── seed-word-dialog.component.spec.ts │ │ │ │ │ │ │ │ └── seed-word-dialog.component.ts │ │ │ │ │ │ │ └── select-language │ │ │ │ │ │ │ │ ├── select-language.component.html │ │ │ │ │ │ │ │ ├── select-language.component.scss │ │ │ │ │ │ │ │ ├── select-language.component.spec.ts │ │ │ │ │ │ │ │ └── select-language.component.ts │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── buy │ │ │ │ │ │ │ ├── add-deposit-address │ │ │ │ │ │ │ │ ├── add-deposit-address.component.css │ │ │ │ │ │ │ │ ├── add-deposit-address.component.html │ │ │ │ │ │ │ │ ├── add-deposit-address.component.spec.ts │ │ │ │ │ │ │ │ └── add-deposit-address.component.ts │ │ │ │ │ │ │ ├── buy.component.html │ │ │ │ │ │ │ ├── buy.component.scss │ │ │ │ │ │ │ ├── buy.component.spec.ts │ │ │ │ │ │ │ └── buy.component.ts │ │ │ │ │ │ │ ├── exchange │ │ │ │ │ │ │ ├── exchange-create │ │ │ │ │ │ │ │ ├── exchange-create.component.html │ │ │ │ │ │ │ │ ├── exchange-create.component.scss │ │ │ │ │ │ │ │ ├── exchange-create.component.spec.ts │ │ │ │ │ │ │ │ └── exchange-create.component.ts │ │ │ │ │ │ │ ├── exchange-history │ │ │ │ │ │ │ │ ├── exchange-history.component.html │ │ │ │ │ │ │ │ ├── exchange-history.component.scss │ │ │ │ │ │ │ │ ├── exchange-history.component.spec.ts │ │ │ │ │ │ │ │ └── exchange-history.component.ts │ │ │ │ │ │ │ ├── exchange-status │ │ │ │ │ │ │ │ ├── exchange-status.component.html │ │ │ │ │ │ │ │ ├── exchange-status.component.scss │ │ │ │ │ │ │ │ ├── exchange-status.component.spec.ts │ │ │ │ │ │ │ │ └── exchange-status.component.ts │ │ │ │ │ │ │ ├── exchange.component.html │ │ │ │ │ │ │ ├── exchange.component.scss │ │ │ │ │ │ │ ├── exchange.component.spec.ts │ │ │ │ │ │ │ └── exchange.component.ts │ │ │ │ │ │ │ ├── onboarding │ │ │ │ │ │ │ ├── onboarding-create-wallet │ │ │ │ │ │ │ │ ├── onboarding-create-wallet.component.html │ │ │ │ │ │ │ │ ├── onboarding-create-wallet.component.scss │ │ │ │ │ │ │ │ ├── onboarding-create-wallet.component.spec.ts │ │ │ │ │ │ │ │ ├── onboarding-create-wallet.component.ts │ │ │ │ │ │ │ │ └── onboarding-safeguard │ │ │ │ │ │ │ │ │ ├── onboarding-safeguard.component.html │ │ │ │ │ │ │ │ │ ├── onboarding-safeguard.component.scss │ │ │ │ │ │ │ │ │ ├── onboarding-safeguard.component.spec.ts │ │ │ │ │ │ │ │ │ └── onboarding-safeguard.component.ts │ │ │ │ │ │ │ ├── onboarding-encrypt-wallet │ │ │ │ │ │ │ │ ├── onboarding-encrypt-wallet.component.html │ │ │ │ │ │ │ │ ├── onboarding-encrypt-wallet.component.scss │ │ │ │ │ │ │ │ ├── onboarding-encrypt-wallet.component.spec.ts │ │ │ │ │ │ │ │ └── onboarding-encrypt-wallet.component.ts │ │ │ │ │ │ │ ├── onboarding.component.html │ │ │ │ │ │ │ ├── onboarding.component.scss │ │ │ │ │ │ │ ├── onboarding.component.spec.ts │ │ │ │ │ │ │ └── onboarding.component.ts │ │ │ │ │ │ │ ├── reset-password │ │ │ │ │ │ │ ├── reset-password.component.html │ │ │ │ │ │ │ ├── reset-password.component.scss │ │ │ │ │ │ │ ├── reset-password.component.spec.ts │ │ │ │ │ │ │ └── reset-password.component.ts │ │ │ │ │ │ │ ├── send-skycoin │ │ │ │ │ │ │ ├── send-form-advanced │ │ │ │ │ │ │ │ ├── select-address │ │ │ │ │ │ │ │ │ ├── select-address.html │ │ │ │ │ │ │ │ │ ├── select-address.scss │ │ │ │ │ │ │ │ │ ├── select-address.spec.ts │ │ │ │ │ │ │ │ │ └── select-address.ts │ │ │ │ │ │ │ │ ├── send-form-advanced.component.html │ │ │ │ │ │ │ │ ├── send-form-advanced.component.scss │ │ │ │ │ │ │ │ ├── send-form-advanced.component.spec.ts │ │ │ │ │ │ │ │ └── send-form-advanced.component.ts │ │ │ │ │ │ │ ├── send-form │ │ │ │ │ │ │ │ ├── send-form.component.html │ │ │ │ │ │ │ │ ├── send-form.component.scss │ │ │ │ │ │ │ │ ├── send-form.component.spec.ts │ │ │ │ │ │ │ │ └── send-form.component.ts │ │ │ │ │ │ │ ├── send-preview │ │ │ │ │ │ │ │ ├── send-preview.component.html │ │ │ │ │ │ │ │ ├── send-preview.component.scss │ │ │ │ │ │ │ │ ├── send-preview.component.spec.ts │ │ │ │ │ │ │ │ ├── send-preview.component.ts │ │ │ │ │ │ │ │ └── transaction-info │ │ │ │ │ │ │ │ │ ├── change-note │ │ │ │ │ │ │ │ │ ├── change-note.component.html │ │ │ │ │ │ │ │ │ ├── change-note.component.scss │ │ │ │ │ │ │ │ │ ├── change-note.component.spec.ts │ │ │ │ │ │ │ │ │ └── change-note.component.ts │ │ │ │ │ │ │ │ │ ├── transaction-info.component.html │ │ │ │ │ │ │ │ │ ├── transaction-info.component.scss │ │ │ │ │ │ │ │ │ ├── transaction-info.component.spec.ts │ │ │ │ │ │ │ │ │ └── transaction-info.component.ts │ │ │ │ │ │ │ ├── send-skycoin.component.html │ │ │ │ │ │ │ ├── send-skycoin.component.scss │ │ │ │ │ │ │ ├── send-skycoin.component.spec.ts │ │ │ │ │ │ │ └── send-skycoin.component.ts │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ │ ├── backup.component.html │ │ │ │ │ │ │ │ ├── backup.component.scss │ │ │ │ │ │ │ │ ├── backup.component.spec.ts │ │ │ │ │ │ │ │ ├── backup.component.ts │ │ │ │ │ │ │ │ └── seed-modal │ │ │ │ │ │ │ │ │ ├── seed-modal.component.css │ │ │ │ │ │ │ │ │ ├── seed-modal.component.html │ │ │ │ │ │ │ │ │ ├── seed-modal.component.spec.ts │ │ │ │ │ │ │ │ │ └── seed-modal.component.ts │ │ │ │ │ │ │ ├── blockchain │ │ │ │ │ │ │ │ ├── blockchain.component.html │ │ │ │ │ │ │ │ ├── blockchain.component.scss │ │ │ │ │ │ │ │ ├── blockchain.component.spec.ts │ │ │ │ │ │ │ │ └── blockchain.component.ts │ │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ │ ├── network.component.html │ │ │ │ │ │ │ │ ├── network.component.scss │ │ │ │ │ │ │ │ ├── network.component.spec.ts │ │ │ │ │ │ │ │ └── network.component.ts │ │ │ │ │ │ │ ├── outputs │ │ │ │ │ │ │ │ ├── outputs.component.html │ │ │ │ │ │ │ │ ├── outputs.component.scss │ │ │ │ │ │ │ │ ├── outputs.component.spec.ts │ │ │ │ │ │ │ │ └── outputs.component.ts │ │ │ │ │ │ │ └── pending-transactions │ │ │ │ │ │ │ │ ├── pending-transactions.component.html │ │ │ │ │ │ │ │ ├── pending-transactions.component.scss │ │ │ │ │ │ │ │ ├── pending-transactions.component.spec.ts │ │ │ │ │ │ │ │ └── pending-transactions.component.ts │ │ │ │ │ │ │ ├── transaction-list │ │ │ │ │ │ │ ├── transaction-detail │ │ │ │ │ │ │ │ ├── transaction-detail.component.html │ │ │ │ │ │ │ │ ├── transaction-detail.component.scss │ │ │ │ │ │ │ │ ├── transaction-detail.component.spec.ts │ │ │ │ │ │ │ │ └── transaction-detail.component.ts │ │ │ │ │ │ │ ├── transaction-list.component.html │ │ │ │ │ │ │ ├── transaction-list.component.scss │ │ │ │ │ │ │ ├── transaction-list.component.spec.ts │ │ │ │ │ │ │ └── transaction-list.component.ts │ │ │ │ │ │ │ └── wallets │ │ │ │ │ │ │ ├── change-name │ │ │ │ │ │ │ ├── change-name.component.html │ │ │ │ │ │ │ ├── change-name.component.scss │ │ │ │ │ │ │ ├── change-name.component.spec.ts │ │ │ │ │ │ │ └── change-name.component.ts │ │ │ │ │ │ │ ├── create-wallet │ │ │ │ │ │ │ ├── create-wallet-form │ │ │ │ │ │ │ │ ├── create-wallet-form.component.html │ │ │ │ │ │ │ │ ├── create-wallet-form.component.scss │ │ │ │ │ │ │ │ ├── create-wallet-form.component.spec.ts │ │ │ │ │ │ │ │ └── create-wallet-form.component.ts │ │ │ │ │ │ │ ├── create-wallet.component.html │ │ │ │ │ │ │ ├── create-wallet.component.scss │ │ │ │ │ │ │ ├── create-wallet.component.spec.ts │ │ │ │ │ │ │ └── create-wallet.component.ts │ │ │ │ │ │ │ ├── number-of-addresses │ │ │ │ │ │ │ ├── number-of-addresses.css │ │ │ │ │ │ │ ├── number-of-addresses.html │ │ │ │ │ │ │ ├── number-of-addresses.spec.ts │ │ │ │ │ │ │ └── number-of-addresses.ts │ │ │ │ │ │ │ ├── wallet-detail │ │ │ │ │ │ │ ├── wallet-detail.component.html │ │ │ │ │ │ │ ├── wallet-detail.component.scss │ │ │ │ │ │ │ ├── wallet-detail.component.spec.ts │ │ │ │ │ │ │ └── wallet-detail.component.ts │ │ │ │ │ │ │ ├── wallets.component.html │ │ │ │ │ │ │ ├── wallets.component.scss │ │ │ │ │ │ │ ├── wallets.component.spec.ts │ │ │ │ │ │ │ └── wallets.component.ts │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── dontsavepassword.directive.spec.ts │ │ │ │ │ │ └── dontsavepassword.directive.ts │ │ │ │ │ ├── pipes │ │ │ │ │ │ ├── amount.pipe.spec.ts │ │ │ │ │ │ ├── amount.pipe.ts │ │ │ │ │ │ ├── common-text.pipe.spec.ts │ │ │ │ │ │ ├── common-text.pipe.ts │ │ │ │ │ │ ├── date-from-now.pipe.spec.ts │ │ │ │ │ │ ├── date-from-now.pipe.ts │ │ │ │ │ │ ├── date-time.pipe.spec.ts │ │ │ │ │ │ ├── date-time.pipe.ts │ │ │ │ │ │ ├── teller-status.pipe.spec.ts │ │ │ │ │ │ └── teller-status.pipe.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── api.service.spec.ts │ │ │ │ │ │ ├── api.service.ts │ │ │ │ │ │ ├── app.service.spec.ts │ │ │ │ │ │ ├── app.service.ts │ │ │ │ │ │ ├── bip39-word-list.service.ts │ │ │ │ │ │ ├── blockchain.service.spec.ts │ │ │ │ │ │ ├── blockchain.service.ts │ │ │ │ │ │ ├── exchange.service.spec.ts │ │ │ │ │ │ ├── exchange.service.ts │ │ │ │ │ │ ├── hw-wallet-daemon-tests.service.ts │ │ │ │ │ │ ├── hw-wallet-daemon.service.spec.ts │ │ │ │ │ │ ├── hw-wallet-daemon.service.ts │ │ │ │ │ │ ├── hw-wallet-pin.service.spec.ts │ │ │ │ │ │ ├── hw-wallet-pin.service.ts │ │ │ │ │ │ ├── hw-wallet-seed-word.service.ts │ │ │ │ │ │ ├── hw-wallet.service.spec.ts │ │ │ │ │ │ ├── hw-wallet.service.ts │ │ │ │ │ │ ├── language.service.spec.ts │ │ │ │ │ │ ├── language.service.ts │ │ │ │ │ │ ├── msg-bar.service.spec.ts │ │ │ │ │ │ ├── msg-bar.service.ts │ │ │ │ │ │ ├── nav-bar.service.spec.ts │ │ │ │ │ │ ├── nav-bar.service.ts │ │ │ │ │ │ ├── network.service.spec.ts │ │ │ │ │ │ ├── network.service.ts │ │ │ │ │ │ ├── price.service.spec.ts │ │ │ │ │ │ ├── price.service.ts │ │ │ │ │ │ ├── purchase.service.spec.ts │ │ │ │ │ │ ├── purchase.service.ts │ │ │ │ │ │ ├── storage.service.spec.ts │ │ │ │ │ │ ├── storage.service.ts │ │ │ │ │ │ ├── wallet.service.spec.ts │ │ │ │ │ │ ├── wallet.service.ts │ │ │ │ │ │ ├── wizard-guard.service.spec.ts │ │ │ │ │ │ └── wizard-guard.service.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── errors.spec.ts │ │ │ │ │ │ ├── errors.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── semver.spec.ts │ │ │ │ │ │ ├── semver.ts │ │ │ │ │ │ ├── tx-encoder.spec.ts │ │ │ │ │ │ └── tx-encoder.ts │ │ │ │ ├── assets │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── bip39-word-list.json │ │ │ │ │ ├── error-alert │ │ │ │ │ │ ├── big-error-icon.png │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── material-icons │ │ │ │ │ │ │ ├── MaterialIcons-Regular.eot │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ │ │ │ │ ├── MaterialIcons-Regular.svg │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ │ │ │ └── material-icons.css │ │ │ │ │ │ └── skycoin │ │ │ │ │ │ │ ├── Skycoin-Bold.woff │ │ │ │ │ │ │ ├── Skycoin-Bold.woff2 │ │ │ │ │ │ │ ├── Skycoin-BoldItalic.woff │ │ │ │ │ │ │ ├── Skycoin-BoldItalic.woff2 │ │ │ │ │ │ │ ├── Skycoin-Light.woff │ │ │ │ │ │ │ ├── Skycoin-Light.woff2 │ │ │ │ │ │ │ ├── Skycoin-LightItalic.woff │ │ │ │ │ │ │ ├── Skycoin-LightItalic.woff2 │ │ │ │ │ │ │ ├── Skycoin-Regular.woff │ │ │ │ │ │ │ ├── Skycoin-Regular.woff2 │ │ │ │ │ │ │ ├── Skycoin-RegularItalic.woff │ │ │ │ │ │ │ └── Skycoin-RegularItalic.woff2 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app1.png │ │ │ │ │ │ ├── app2.png │ │ │ │ │ │ ├── check.js │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_base.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ └── zh_base.json │ │ │ │ │ ├── img │ │ │ │ │ │ ├── alert-red.png │ │ │ │ │ │ ├── big-error-icon.png │ │ │ │ │ │ ├── chevron-right-grey.png │ │ │ │ │ │ ├── close-grey.png │ │ │ │ │ │ ├── delete-grey.png │ │ │ │ │ │ ├── delete-red.png │ │ │ │ │ │ ├── edit-blue.png │ │ │ │ │ │ ├── edit-grey.png │ │ │ │ │ │ ├── header.png │ │ │ │ │ │ ├── hw-gold.png │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── en.png │ │ │ │ │ │ │ ├── es.png │ │ │ │ │ │ │ ├── ru.png │ │ │ │ │ │ │ └── zh.png │ │ │ │ │ │ ├── load-gold.png │ │ │ │ │ │ ├── lock-gold.png │ │ │ │ │ │ ├── lock-grey.png │ │ │ │ │ │ ├── logo-white.png │ │ │ │ │ │ ├── minus-grey.png │ │ │ │ │ │ ├── minus-red.png │ │ │ │ │ │ ├── money-gold.png │ │ │ │ │ │ ├── otc-background.jpg │ │ │ │ │ │ ├── plus-gold.png │ │ │ │ │ │ ├── plus-green.png │ │ │ │ │ │ ├── plus-grey.png │ │ │ │ │ │ ├── qr-code-black.png │ │ │ │ │ │ ├── send-black.png │ │ │ │ │ │ ├── send-blue.png │ │ │ │ │ │ ├── send-gold.png │ │ │ │ │ │ ├── send-white.png │ │ │ │ │ │ ├── size-alert.png │ │ │ │ │ │ ├── transactions-black.png │ │ │ │ │ │ ├── unlock-gold.png │ │ │ │ │ │ ├── unlock-grey.png │ │ │ │ │ │ └── wallet-black.png │ │ │ │ │ ├── logo-white.png │ │ │ │ │ └── scripts │ │ │ │ │ │ └── qrcode.min.js │ │ │ │ ├── current-skycoin.json │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ ├── styles.scss │ │ │ │ ├── test.ts │ │ │ │ ├── theme │ │ │ │ │ ├── _modals.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── tsconfig.app.json │ │ │ │ ├── tsconfig.spec.json │ │ │ │ └── typings.d.ts │ │ │ │ ├── test-fixtures │ │ │ │ └── encoded-txs.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── kvstorage │ │ │ ├── empty.go │ │ │ ├── error.go │ │ │ ├── kvstorage.go │ │ │ ├── kvstorage_test.go │ │ │ ├── manager.go │ │ │ ├── manager_config.go │ │ │ ├── manager_test.go │ │ │ ├── map.go │ │ │ └── testdata │ │ │ │ ├── data.json │ │ │ │ ├── empty.json │ │ │ │ └── txid.json │ │ ├── params │ │ │ ├── distribution.go │ │ │ ├── distribution_test.go │ │ │ ├── droplet.go │ │ │ ├── droplet_test.go │ │ │ ├── init.go │ │ │ ├── params.go │ │ │ └── verify_txn.go │ │ ├── readable │ │ │ ├── block.go │ │ │ ├── blockchain.go │ │ │ ├── fiber.go │ │ │ ├── network.go │ │ │ ├── output.go │ │ │ ├── richlist.go │ │ │ ├── transaction.go │ │ │ ├── verbose.go │ │ │ ├── version.go │ │ │ └── wallet.go │ │ ├── skycoin │ │ │ ├── config.go │ │ │ ├── skycoin.go │ │ │ ├── skycoin_test.go │ │ │ └── testdata │ │ │ │ ├── no-version.db │ │ │ │ ├── version-0.24.1.db │ │ │ │ └── version-0.25.0.db │ │ ├── testutil │ │ │ ├── assert │ │ │ │ └── assertions.go │ │ │ ├── require │ │ │ │ └── require.go │ │ │ └── testutil.go │ │ ├── transaction │ │ │ ├── choose.go │ │ │ ├── choose_test.go │ │ │ ├── create.go │ │ │ ├── create_test.go │ │ │ ├── hours.go │ │ │ ├── hours_test.go │ │ │ ├── params.go │ │ │ └── params_test.go │ │ ├── util │ │ │ ├── apputil │ │ │ │ └── apputil.go │ │ │ ├── certutil │ │ │ │ ├── LICENSE │ │ │ │ ├── cert.go │ │ │ │ └── cert_test.go │ │ │ ├── droplet │ │ │ │ ├── droplet.go │ │ │ │ └── droplet_test.go │ │ │ ├── elapse │ │ │ │ └── elapser.go │ │ │ ├── fee │ │ │ │ ├── fee.go │ │ │ │ └── fee_test.go │ │ │ ├── file │ │ │ │ ├── file.go │ │ │ │ └── file_test.go │ │ │ ├── http │ │ │ │ ├── error.go │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ └── log.go │ │ │ ├── iputil │ │ │ │ ├── iputil.go │ │ │ │ └── iputil_test.go │ │ │ ├── logging │ │ │ │ ├── formatter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── logger.go │ │ │ │ └── logging.go │ │ │ ├── mathutil │ │ │ │ ├── mathutil.go │ │ │ │ ├── mathutil_64bit_test.go │ │ │ │ └── mathutil_test.go │ │ │ ├── timeutil │ │ │ │ └── timeutil.go │ │ │ └── useragent │ │ │ │ ├── useragent.go │ │ │ │ └── useragent_test.go │ │ ├── visor │ │ │ ├── blockchain.go │ │ │ ├── blockchain_test.go │ │ │ ├── blockchain_verify_test.go │ │ │ ├── blockdb │ │ │ │ ├── block_skyencoder.go │ │ │ │ ├── block_skyencoder_test.go │ │ │ │ ├── block_tree.go │ │ │ │ ├── block_tree_test.go │ │ │ │ ├── blockchain.go │ │ │ │ ├── blockchain_test.go │ │ │ │ ├── blocksigs.go │ │ │ │ ├── blocksigs_test.go │ │ │ │ ├── chain_meta.go │ │ │ │ ├── hash_pairs_wrapper_skyencoder.go │ │ │ │ ├── hash_pairs_wrapper_skyencoder_test.go │ │ │ │ ├── hashes_wrapper_skyencoder.go │ │ │ │ ├── hashes_wrapper_skyencoder_test.go │ │ │ │ ├── sig_wrapper_skyencoder.go │ │ │ │ ├── sig_wrapper_skyencoder_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── blockchain-180.no-unspent-addr-index.db │ │ │ │ ├── unspent.go │ │ │ │ ├── unspent_test.go │ │ │ │ ├── ux_out_skyencoder.go │ │ │ │ ├── ux_out_skyencoder_test.go │ │ │ │ └── verify.go │ │ │ ├── config.go │ │ │ ├── daemon_visor_test.go │ │ │ ├── db.go │ │ │ ├── dbutil │ │ │ │ └── dbutil.go │ │ │ ├── distribution.go │ │ │ ├── distribution_test.go │ │ │ ├── historydb │ │ │ │ ├── address_txn.go │ │ │ │ ├── address_txn_test.go │ │ │ │ ├── address_uxout.go │ │ │ │ ├── hashes_wrapper_skyencoder.go │ │ │ │ ├── hashes_wrapper_skyencoder_test.go │ │ │ │ ├── history_meta.go │ │ │ │ ├── history_meta_test.go │ │ │ │ ├── historydb.go │ │ │ │ ├── historydb_test.go │ │ │ │ ├── output.go │ │ │ │ ├── transaction.go │ │ │ │ ├── transaction_skyencoder.go │ │ │ │ ├── transaction_skyencoder_test.go │ │ │ │ ├── transaction_test.go │ │ │ │ ├── ux_out_skyencoder.go │ │ │ │ ├── ux_out_skyencoder_test.go │ │ │ │ └── verify.go │ │ │ ├── interfaces.go │ │ │ ├── meta.go │ │ │ ├── meta_test.go │ │ │ ├── mock_blockchainer_test.go │ │ │ ├── mock_historyer_test.go │ │ │ ├── mock_unconfirmed_transaction_pooler_test.go │ │ │ ├── mock_unspent_pooler_test.go │ │ │ ├── objects.go │ │ │ ├── objects_test.go │ │ │ ├── richlist.go │ │ │ ├── richlist_test.go │ │ │ ├── skyencoder_test.go │ │ │ ├── testdata │ │ │ │ ├── data.db.garbage │ │ │ │ ├── data.db.no-addr-txn-index │ │ │ │ ├── data.db.no-addr-uxout-index │ │ │ │ ├── data.db.nosig │ │ │ │ ├── data.db.notxn │ │ │ │ ├── data.db.nouxout │ │ │ │ └── data.db.ok │ │ │ ├── unconfirmed.go │ │ │ ├── unconfirmed_transaction_skyencoder.go │ │ │ ├── unconfirmed_transaction_skyencoder_test.go │ │ │ ├── ux_array_skyencoder.go │ │ │ ├── ux_array_skyencoder_test.go │ │ │ ├── verify.go │ │ │ ├── visor.go │ │ │ ├── visor_test.go │ │ │ ├── visor_wallet.go │ │ │ └── visor_wallet_test.go │ │ └── wallet │ │ │ ├── balance.go │ │ │ ├── bip44_wallet.go │ │ │ ├── collection_wallet.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── deterministic_wallet.go │ │ │ ├── entry.go │ │ │ ├── meta.go │ │ │ ├── readable.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── testdata │ │ │ ├── duplicate_wallets │ │ │ │ ├── test3.1.wlt │ │ │ │ └── test3.wlt │ │ │ ├── empty_bip44_wallet │ │ │ │ └── empty.wlt │ │ │ ├── empty_wallet │ │ │ │ └── empty.wlt │ │ │ ├── invalid_wallets │ │ │ │ ├── err_type.wlt │ │ │ │ ├── no_coin.wlt │ │ │ │ ├── no_seed.wlt │ │ │ │ └── no_type.wlt │ │ │ ├── scrypt-chacha20poly1305-encrypted.wlt │ │ │ ├── sha256xor-encrypted.wlt │ │ │ ├── test1.wlt │ │ │ ├── test2.wlt │ │ │ ├── test3.wlt │ │ │ ├── test4-collection.wlt │ │ │ ├── test5-bip44.wlt │ │ │ ├── test6-bip44.wlt │ │ │ ├── test6-passphrase-bip44.wlt │ │ │ ├── v2_no_encrypt.wlt │ │ │ └── xpub-test.wlt │ │ │ ├── transaction.go │ │ │ ├── transaction_test.go │ │ │ ├── wallet.go │ │ │ ├── wallet_test.go │ │ │ ├── wallets.go │ │ │ └── xpub_wallet.go │ │ ├── template │ │ ├── coin.template │ │ ├── coin_test.template │ │ └── params.template │ │ └── vendor │ │ ├── github.com │ │ ├── NYTimes │ │ │ └── gziphandler │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── gzip.go │ │ │ │ └── gzip_go18.go │ │ ├── SkycoinProject │ │ │ └── encodertest │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cmp.go │ │ │ │ └── populate.go │ │ ├── andreyvit │ │ │ └── diff │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── diff.go │ │ │ │ ├── doc.go │ │ │ │ └── trim.go │ │ ├── beorn7 │ │ │ └── perks │ │ │ │ ├── LICENSE │ │ │ │ └── quantile │ │ │ │ ├── exampledata.txt │ │ │ │ └── stream.go │ │ ├── blang │ │ │ └── semver │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── json.go │ │ │ │ ├── package.json │ │ │ │ ├── range.go │ │ │ │ ├── semver.go │ │ │ │ ├── sort.go │ │ │ │ └── sql.go │ │ ├── boltdb │ │ │ └── bolt │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ ├── bolt_386.go │ │ │ │ ├── bolt_amd64.go │ │ │ │ ├── bolt_arm.go │ │ │ │ ├── bolt_arm64.go │ │ │ │ ├── bolt_linux.go │ │ │ │ ├── bolt_openbsd.go │ │ │ │ ├── bolt_ppc.go │ │ │ │ ├── bolt_ppc64.go │ │ │ │ ├── bolt_ppc64le.go │ │ │ │ ├── bolt_s390x.go │ │ │ │ ├── bolt_unix.go │ │ │ │ ├── bolt_unix_solaris.go │ │ │ │ ├── bolt_windows.go │ │ │ │ ├── boltsync_unix.go │ │ │ │ ├── bucket.go │ │ │ │ ├── cursor.go │ │ │ │ ├── db.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── freelist.go │ │ │ │ ├── node.go │ │ │ │ ├── page.go │ │ │ │ └── tx.go │ │ ├── cenkalti │ │ │ └── backoff │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── backoff.go │ │ │ │ ├── context.go │ │ │ │ ├── exponential.go │ │ │ │ ├── retry.go │ │ │ │ ├── ticker.go │ │ │ │ └── tries.go │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── LICENSE │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ ├── fsnotify │ │ │ └── fsnotify │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fen.go │ │ │ │ ├── fsnotify.go │ │ │ │ ├── inotify.go │ │ │ │ ├── inotify_poller.go │ │ │ │ ├── kqueue.go │ │ │ │ ├── open_mode_bsd.go │ │ │ │ ├── open_mode_darwin.go │ │ │ │ └── windows.go │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ └── proto │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── discard.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ ├── google │ │ │ └── go-cmp │ │ │ │ ├── LICENSE │ │ │ │ └── cmp │ │ │ │ ├── cmpopts │ │ │ │ ├── equate.go │ │ │ │ ├── ignore.go │ │ │ │ ├── sort.go │ │ │ │ ├── sort_go17.go │ │ │ │ ├── sort_go18.go │ │ │ │ └── struct_filter.go │ │ │ │ ├── compare.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── format.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── reporter.go │ │ │ │ ├── unsafe_panic.go │ │ │ │ └── unsafe_reflect.go │ │ ├── hashicorp │ │ │ └── hcl │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ ├── decoder.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── hcl.go │ │ │ │ ├── hcl │ │ │ │ ├── ast │ │ │ │ │ ├── ast.go │ │ │ │ │ └── walk.go │ │ │ │ ├── parser │ │ │ │ │ ├── error.go │ │ │ │ │ └── parser.go │ │ │ │ ├── printer │ │ │ │ │ ├── nodes.go │ │ │ │ │ └── printer.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ ├── strconv │ │ │ │ │ └── quote.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ │ ├── json │ │ │ │ ├── parser │ │ │ │ │ ├── flatten.go │ │ │ │ │ └── parser.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ │ ├── lex.go │ │ │ │ └── parse.go │ │ ├── inconshreveable │ │ │ └── mousetrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── trap_others.go │ │ │ │ ├── trap_windows.go │ │ │ │ └── trap_windows_1.4.go │ │ ├── konsorten │ │ │ └── go-windows-terminal-sequences │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ └── sequences.go │ │ ├── magiconair │ │ │ └── properties │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── integrate.go │ │ │ │ ├── lex.go │ │ │ │ ├── load.go │ │ │ │ ├── parser.go │ │ │ │ ├── properties.go │ │ │ │ └── rangecheck.go │ │ ├── mattn │ │ │ ├── go-colorable │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── colorable_appengine.go │ │ │ │ ├── colorable_others.go │ │ │ │ ├── colorable_windows.go │ │ │ │ └── noncolorable.go │ │ │ └── go-isatty │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── isatty_appengine.go │ │ │ │ ├── isatty_bsd.go │ │ │ │ ├── isatty_linux.go │ │ │ │ ├── isatty_linux_ppc64x.go │ │ │ │ ├── isatty_others.go │ │ │ │ ├── isatty_solaris.go │ │ │ │ └── isatty_windows.go │ │ ├── matttproud │ │ │ └── golang_protobuf_extensions │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── pbutil │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── mgutz │ │ │ └── ansi │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── ansi.go │ │ │ │ ├── doc.go │ │ │ │ └── print.go │ │ ├── mitchellh │ │ │ └── mapstructure │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode_hooks.go │ │ │ │ ├── error.go │ │ │ │ ├── go.mod │ │ │ │ └── mapstructure.go │ │ ├── pelletier │ │ │ └── go-toml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── benchmark.json │ │ │ │ ├── benchmark.sh │ │ │ │ ├── benchmark.toml │ │ │ │ ├── benchmark.yml │ │ │ │ ├── doc.go │ │ │ │ ├── example-crlf.toml │ │ │ │ ├── example.toml │ │ │ │ ├── fuzz.go │ │ │ │ ├── fuzz.sh │ │ │ │ ├── keysparsing.go │ │ │ │ ├── lexer.go │ │ │ │ ├── marshal.go │ │ │ │ ├── marshal_test.toml │ │ │ │ ├── parser.go │ │ │ │ ├── position.go │ │ │ │ ├── test.sh │ │ │ │ ├── token.go │ │ │ │ ├── toml.go │ │ │ │ ├── tomltree_create.go │ │ │ │ └── tomltree_write.go │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── LICENSE │ │ │ │ └── difflib │ │ │ │ └── difflib.go │ │ ├── prometheus │ │ │ ├── client_golang │ │ │ │ ├── AUTHORS.md │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── prometheus │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collector.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── desc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── expvar_collector.go │ │ │ │ │ ├── fnv.go │ │ │ │ │ ├── gauge.go │ │ │ │ │ ├── go_collector.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── process_collector.go │ │ │ │ │ ├── promhttp │ │ │ │ │ └── http.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── summary.go │ │ │ │ │ ├── untyped.go │ │ │ │ │ ├── value.go │ │ │ │ │ └── vec.go │ │ │ ├── client_model │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── ruby │ │ │ │ │ └── LICENSE │ │ │ ├── common │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── expfmt │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── expfmt.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── text_create.go │ │ │ │ │ └── text_parse.go │ │ │ │ ├── internal │ │ │ │ │ └── bitbucket.org │ │ │ │ │ │ └── ww │ │ │ │ │ │ └── goautoneg │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ └── autoneg.go │ │ │ │ └── model │ │ │ │ │ ├── alert.go │ │ │ │ │ ├── fingerprinting.go │ │ │ │ │ ├── fnv.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── labelset.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── model.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── silence.go │ │ │ │ │ ├── time.go │ │ │ │ │ └── value.go │ │ │ └── procfs │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── Makefile │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── buddyinfo.go │ │ │ │ ├── doc.go │ │ │ │ ├── fixtures.ttar │ │ │ │ ├── fs.go │ │ │ │ ├── internal │ │ │ │ └── util │ │ │ │ │ ├── parse.go │ │ │ │ │ └── sysreadfile_linux.go │ │ │ │ ├── ipvs.go │ │ │ │ ├── mdstat.go │ │ │ │ ├── mountstats.go │ │ │ │ ├── net_dev.go │ │ │ │ ├── nfs │ │ │ │ ├── nfs.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_nfs.go │ │ │ │ └── parse_nfsd.go │ │ │ │ ├── proc.go │ │ │ │ ├── proc_io.go │ │ │ │ ├── proc_limits.go │ │ │ │ ├── proc_ns.go │ │ │ │ ├── proc_stat.go │ │ │ │ ├── stat.go │ │ │ │ ├── ttar │ │ │ │ ├── xfrm.go │ │ │ │ └── xfs │ │ │ │ ├── parse.go │ │ │ │ └── xfs.go │ │ ├── rs │ │ │ └── cors │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cors.go │ │ │ │ ├── go.mod │ │ │ │ └── utils.go │ │ ├── sergi │ │ │ └── go-diff │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ └── diffmatchpatch │ │ │ │ ├── diff.go │ │ │ │ ├── diffmatchpatch.go │ │ │ │ ├── match.go │ │ │ │ ├── mathutil.go │ │ │ │ ├── patch.go │ │ │ │ └── stringutil.go │ │ ├── shopspring │ │ │ └── decimal │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decimal-go.go │ │ │ │ ├── decimal.go │ │ │ │ └── rounding.go │ │ ├── sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── hooks.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_check_appengine.go │ │ │ │ ├── terminal_check_js.go │ │ │ │ ├── terminal_check_notappengine.go │ │ │ │ ├── terminal_check_windows.go │ │ │ │ ├── terminal_notwindows.go │ │ │ │ ├── terminal_windows.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ ├── spf13 │ │ │ ├── afero │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── afero.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── basepath.go │ │ │ │ ├── cacheOnReadFs.go │ │ │ │ ├── const_bsds.go │ │ │ │ ├── const_win_unix.go │ │ │ │ ├── copyOnWriteFs.go │ │ │ │ ├── go.mod │ │ │ │ ├── httpFs.go │ │ │ │ ├── ioutil.go │ │ │ │ ├── lstater.go │ │ │ │ ├── match.go │ │ │ │ ├── mem │ │ │ │ │ ├── dir.go │ │ │ │ │ ├── dirmap.go │ │ │ │ │ └── file.go │ │ │ │ ├── memmap.go │ │ │ │ ├── os.go │ │ │ │ ├── path.go │ │ │ │ ├── readonlyfs.go │ │ │ │ ├── regexpfs.go │ │ │ │ ├── unionFile.go │ │ │ │ └── util.go │ │ │ ├── cast │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── cast.go │ │ │ │ └── caste.go │ │ │ ├── cobra │ │ │ │ ├── .gitignore │ │ │ │ ├── .mailmap │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── args.go │ │ │ │ ├── bash_completions.go │ │ │ │ ├── bash_completions.md │ │ │ │ ├── cobra.go │ │ │ │ ├── cobra │ │ │ │ │ └── cmd │ │ │ │ │ │ └── testdata │ │ │ │ │ │ └── LICENSE.golden │ │ │ │ ├── command.go │ │ │ │ ├── command_notwin.go │ │ │ │ ├── command_win.go │ │ │ │ └── zsh_completions.go │ │ │ ├── jwalterweatherman │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── default_notepad.go │ │ │ │ ├── go.mod │ │ │ │ ├── log_counter.go │ │ │ │ └── notepad.go │ │ │ ├── pflag │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── bytes.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_slice.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float64.go │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int16.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── string_to_int.go │ │ │ │ ├── string_to_string.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ │ └── viper │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── flags.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── util.go │ │ │ │ └── viper.go │ │ ├── stretchr │ │ │ ├── objx │ │ │ │ ├── .codeclimate.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Taskfile.yml │ │ │ │ ├── accessors.go │ │ │ │ ├── constants.go │ │ │ │ ├── conversions.go │ │ │ │ ├── doc.go │ │ │ │ ├── map.go │ │ │ │ ├── mutations.go │ │ │ │ ├── security.go │ │ │ │ ├── tests.go │ │ │ │ ├── type_specific_codegen.go │ │ │ │ └── value.go │ │ │ └── testify │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── assert │ │ │ │ ├── assertion_format.go │ │ │ │ ├── assertion_format.go.tmpl │ │ │ │ ├── assertion_forward.go │ │ │ │ ├── assertion_forward.go.tmpl │ │ │ │ ├── assertions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── forward_assertions.go │ │ │ │ └── http_assertions.go │ │ │ │ ├── mock │ │ │ │ ├── doc.go │ │ │ │ └── mock.go │ │ │ │ └── require │ │ │ │ ├── doc.go │ │ │ │ ├── forward_requirements.go │ │ │ │ ├── require.go │ │ │ │ ├── require.go.tmpl │ │ │ │ ├── require_forward.go │ │ │ │ ├── require_forward.go.tmpl │ │ │ │ └── requirements.go │ │ ├── toqueteos │ │ │ └── webbrowser │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── webbrowser.go │ │ └── urfave │ │ │ └── cli │ │ │ ├── .flake8 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── appveyor.yml │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── errors.go │ │ │ ├── flag-types.json │ │ │ ├── flag.go │ │ │ ├── flag_generated.go │ │ │ ├── funcs.go │ │ │ ├── generate-flag-types │ │ │ ├── help.go │ │ │ └── runtests │ │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── ssh │ │ │ │ └── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── net │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── context │ │ │ │ ├── context.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ └── pre_go19.go │ │ │ ├── sys │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── affinity_linux.go │ │ │ │ ├── aliases.go │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mkpost.go │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksyscall_aix_ppc.pl │ │ │ │ ├── mksyscall_aix_ppc64.pl │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_aix.go │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── types_aix.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── xattr_bsd.go │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zptrace386_linux.go │ │ │ │ ├── zptracearm_linux.go │ │ │ │ ├── zptracemips_linux.go │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── text │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── internal │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ └── ucd │ │ │ │ └── ucd.go │ │ │ ├── transform │ │ │ └── transform.go │ │ │ └── unicode │ │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── collate.go │ │ │ ├── decode.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── slice.go │ │ │ └── xml.go │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trie.go │ │ │ └── triegen.go │ │ └── gopkg.in │ │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ └── stream.go ├── blang │ └── semver │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── boltdb │ └── bolt │ │ ├── LICENSE │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_linux.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_s390x.go │ │ ├── bolt_unix.go │ │ ├── bolt_unix_solaris.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── cursor.go │ │ ├── db.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelist.go │ │ ├── node.go │ │ ├── page.go │ │ └── tx.go ├── cenkalti │ └── backoff │ │ ├── LICENSE │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── tries.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── fibercrypto │ ├── skywallet-go │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── blank.md │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ └── pull_request_template.md │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── Makefile │ │ ├── README.md │ │ ├── VERSION │ │ ├── ci-scripts │ │ │ ├── install-linux.sh │ │ │ ├── install-osx.sh │ │ │ ├── integration-test.sh │ │ │ └── version.sh │ │ ├── cmd │ │ │ └── cli │ │ │ │ ├── README.md │ │ │ │ ├── autocomplete │ │ │ │ ├── bash_autocomplete │ │ │ │ └── zsh_autocomplete │ │ │ │ ├── cli.go │ │ │ │ └── install.sh │ │ └── src │ │ │ ├── cli │ │ │ ├── address_gen.go │ │ │ ├── apply_settings.go │ │ │ ├── backup.go │ │ │ ├── cancel.go │ │ │ ├── check_message_signature.go │ │ │ ├── cli.go │ │ │ ├── features.go │ │ │ ├── firmware_update.go │ │ │ ├── generate_mnemonic.go │ │ │ ├── get_mixed_entropy.go │ │ │ ├── get_raw_entropy.go │ │ │ ├── integration │ │ │ │ └── empty.go │ │ │ ├── recovery.go │ │ │ ├── remove_pin_code.go │ │ │ ├── set_mnemonic.go │ │ │ ├── set_pin_code.go │ │ │ ├── sign_message.go │ │ │ ├── transaction_sign.go │ │ │ ├── usbhid.go │ │ │ ├── utils.go │ │ │ └── wipe.go │ │ │ ├── integration │ │ │ └── proxy │ │ │ │ └── sequencer.go │ │ │ ├── skywallet │ │ │ ├── bit_encoded_flags.go │ │ │ ├── helper.go │ │ │ ├── messages.go │ │ │ ├── progress_bar.go │ │ │ ├── skywallet.go │ │ │ ├── usb │ │ │ │ ├── bus.go │ │ │ │ ├── hidapi.go │ │ │ │ ├── hidapi_shim.go │ │ │ │ ├── libusb.go │ │ │ │ └── udp.go │ │ │ └── wire │ │ │ │ ├── protobuf.go │ │ │ │ └── v1.go │ │ │ └── usb │ │ │ └── lowlevel │ │ │ ├── hidapi │ │ │ ├── README.md │ │ │ ├── c │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ └── mac │ │ │ │ │ └── hid.c │ │ │ ├── hid.go │ │ │ ├── log.go │ │ │ └── wchar.go │ │ │ └── libusb │ │ │ ├── README.md │ │ │ ├── c │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── config.h │ │ │ ├── core.c │ │ │ ├── descriptor.c │ │ │ ├── hotplug.c │ │ │ ├── hotplug.h │ │ │ ├── io.c │ │ │ ├── libusb.h │ │ │ ├── libusbi.h │ │ │ ├── os │ │ │ │ ├── darwin_usb.c │ │ │ │ ├── darwin_usb.h │ │ │ │ ├── linux_netlink.c │ │ │ │ ├── linux_usbfs.c │ │ │ │ ├── linux_usbfs.h │ │ │ │ ├── poll_posix.c │ │ │ │ ├── poll_posix.h │ │ │ │ ├── poll_windows.c │ │ │ │ ├── poll_windows.h │ │ │ │ ├── threads_posix.c │ │ │ │ ├── threads_posix.h │ │ │ │ ├── threads_windows.c │ │ │ │ ├── threads_windows.h │ │ │ │ ├── windows_common.h │ │ │ │ ├── windows_nt_common.c │ │ │ │ ├── windows_nt_common.h │ │ │ │ ├── windows_winusb.c │ │ │ │ └── windows_winusb.h │ │ │ ├── strerror.c │ │ │ ├── sync.c │ │ │ ├── version.h │ │ │ └── version_nano.h │ │ │ ├── libusb.go │ │ │ └── log.go │ └── skywallet-protob │ │ └── go │ │ ├── google │ │ └── protobuf │ │ │ └── descriptor.pb.go │ │ ├── messages.pb.go │ │ └── types.pb.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go ├── golang │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── text.go │ │ └── text_parser.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ └── any.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ └── duration.pb.go │ │ ├── timestamp.go │ │ └── timestamp │ │ └── timestamp.pb.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── konsorten │ └── go-windows-terminal-sequences │ │ ├── LICENSE │ │ ├── sequences.go │ │ └── sequences_dummy.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ └── noncolorable.go │ └── go-isatty │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── mgutz │ └── ansi │ │ ├── LICENSE │ │ ├── ansi.go │ │ ├── doc.go │ │ └── print.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus │ ├── client_golang │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── go_collector.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── metric.go │ │ │ ├── process_collector.go │ │ │ ├── promhttp │ │ │ └── http.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ └── vec.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ └── value.go │ └── procfs │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cpuinfo.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountinfo_test.go │ │ ├── mountstats.go │ │ ├── net_dev.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_unix.go │ │ ├── proc.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── schedstat.go │ │ ├── stat.go │ │ ├── vm.go │ │ ├── xfrm.go │ │ └── zoneinfo.go ├── rs │ └── cors │ │ ├── LICENSE │ │ ├── cors.go │ │ └── utils.go ├── shopspring │ └── decimal │ │ ├── LICENSE │ │ ├── decimal-go.go │ │ ├── decimal.go │ │ └── rounding.go ├── sirupsen │ └── logrus │ │ ├── LICENSE │ │ ├── alt_exit.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── skycoin │ └── skycoin │ │ └── src │ │ ├── cipher │ │ ├── address.go │ │ ├── base58 │ │ │ ├── LICENSE │ │ │ ├── LICENSE_old │ │ │ ├── base58.go │ │ │ └── base58_old.go │ │ ├── bip32 │ │ │ └── LICENSE │ │ ├── bip39 │ │ │ └── LICENSE │ │ ├── bitcoin.go │ │ ├── crypto.go │ │ ├── hash.go │ │ ├── ripemd160 │ │ │ ├── ripemd160block.go │ │ │ └── ripmd_160.go │ │ └── secp256k1-go │ │ │ ├── secp256_rand.go │ │ │ ├── secp256k1-go2 │ │ │ ├── COPYING │ │ │ ├── ec.go │ │ │ ├── field.go │ │ │ ├── num.go │ │ │ ├── secp256k1.go │ │ │ ├── sig.go │ │ │ ├── xy.go │ │ │ ├── xyz.go │ │ │ ├── z_consts.go │ │ │ └── z_init.go │ │ │ └── secp256k1.go │ │ └── util │ │ ├── certutil │ │ └── LICENSE │ │ └── logging │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── logger.go │ │ └── logging.go ├── spf13 │ ├── cobra │ │ ├── LICENSE.txt │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── cobra.go │ │ ├── cobra │ │ │ └── cmd │ │ │ │ └── testdata │ │ │ │ └── LICENSE.golden │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ └── pflag │ │ ├── LICENSE │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go └── stretchr │ ├── objx │ ├── LICENSE │ ├── accessors.go │ ├── conversions.go │ ├── doc.go │ ├── map.go │ ├── mutations.go │ ├── security.go │ ├── tests.go │ ├── type_specific.go │ ├── type_specific_codegen.go │ └── value.go │ └── testify │ ├── LICENCE.txt │ ├── LICENSE │ ├── assert │ ├── assertion_format.go │ ├── assertion_forward.go │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go │ ├── mock │ ├── doc.go │ └── mock.go │ └── require │ ├── doc.go │ ├── forward_requirements.go │ ├── require.go │ ├── require_forward.go │ └── requirements.go └── golang.org └── x ├── crypto ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── acme │ ├── autocert │ │ └── autocert.go │ └── internal │ │ └── acmeprobe │ │ └── prober.go ├── bcrypt │ ├── base64.go │ └── bcrypt.go ├── blowfish │ ├── block.go │ ├── cipher.go │ └── const.go ├── chacha20poly1305 │ ├── chacha20poly1305.go │ ├── chacha20poly1305_amd64.go │ ├── chacha20poly1305_generic.go │ ├── chacha20poly1305_vectors_test.go │ └── xchacha20poly1305.go ├── curve25519 │ ├── curve25519.go │ └── curve25519_test.go ├── go.mod ├── openpgp │ └── elgamal │ │ ├── elgamal.go │ │ └── elgamal_test.go ├── pbkdf2 │ └── pbkdf2.go ├── pkcs12 │ └── pkcs12.go ├── poly1305 │ ├── poly1305.go │ ├── poly1305_test.go │ ├── sum_amd64.go │ ├── sum_amd64.s │ ├── sum_arm.go │ ├── sum_generic.go │ ├── sum_noasm.go │ ├── sum_ppc64le.go │ ├── sum_ppc64le.s │ └── sum_s390x.go ├── sha3 │ ├── sha3.go │ ├── xor.go │ └── xor_unaligned.go └── ssh │ ├── agent │ └── client_test.go │ ├── cipher.go │ ├── kex.go │ ├── terminal │ ├── terminal.go │ ├── util.go │ ├── util_aix.go │ ├── util_bsd.go │ ├── util_linux.go │ ├── util_plan9.go │ ├── util_solaris.go │ └── util_windows.go │ └── test │ └── forward_unix_test.go ├── net ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── context │ ├── context.go │ ├── go17.go │ ├── go19.go │ ├── pre_go17.go │ └── pre_go19.go ├── html │ ├── parse.go │ └── testdata │ │ └── webkit │ │ ├── adoption01.dat │ │ ├── adoption02.dat │ │ ├── comments01.dat │ │ ├── doctype01.dat │ │ ├── entities01.dat │ │ ├── entities02.dat │ │ ├── html5test-com.dat │ │ ├── inbody01.dat │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ ├── pending-spec-changes.dat │ │ ├── plain-text-unsafe.dat │ │ ├── scriptdata01.dat │ │ ├── tables01.dat │ │ ├── template.dat │ │ ├── tests1.dat │ │ ├── tests10.dat │ │ ├── tests11.dat │ │ ├── tests14.dat │ │ ├── tests15.dat │ │ ├── tests17.dat │ │ ├── tests18.dat │ │ ├── tests19.dat │ │ ├── tests2.dat │ │ ├── tests20.dat │ │ ├── tests21.dat │ │ ├── tests22.dat │ │ ├── tests23.dat │ │ ├── tests26.dat │ │ ├── tests3.dat │ │ ├── tests4.dat │ │ ├── tests6.dat │ │ ├── tests7.dat │ │ ├── tests8.dat │ │ ├── tests9.dat │ │ ├── tests_innerHTML_1.dat │ │ ├── tricky01.dat │ │ ├── webkit01.dat │ │ └── webkit02.dat ├── http2 │ ├── server.go │ ├── server_test.go │ └── transport_test.go ├── icmp │ └── listen_posix.go ├── idna │ └── tables11.0.0.go ├── internal │ ├── socket │ │ ├── rawconn_mmsg.go │ │ ├── rawconn_msg.go │ │ └── socket_test.go │ └── timeseries │ │ └── timeseries.go ├── ipv4 │ ├── control_bsd.go │ ├── defs_linux.go │ ├── sys_bpf.go │ ├── sys_linux.go │ ├── zsys_linux_386.go │ ├── zsys_linux_amd64.go │ ├── zsys_linux_arm.go │ ├── zsys_linux_arm64.go │ ├── zsys_linux_mips.go │ ├── zsys_linux_mips64.go │ ├── zsys_linux_mips64le.go │ ├── zsys_linux_mipsle.go │ ├── zsys_linux_ppc.go │ ├── zsys_linux_ppc64.go │ ├── zsys_linux_ppc64le.go │ ├── zsys_linux_riscv64.go │ └── zsys_linux_s390x.go ├── ipv6 │ ├── defs_linux.go │ ├── sys_bpf.go │ ├── sys_linux.go │ ├── zsys_linux_386.go │ ├── zsys_linux_amd64.go │ ├── zsys_linux_arm.go │ ├── zsys_linux_arm64.go │ ├── zsys_linux_mips.go │ ├── zsys_linux_mips64.go │ ├── zsys_linux_mips64le.go │ ├── zsys_linux_mipsle.go │ ├── zsys_linux_ppc.go │ ├── zsys_linux_ppc64.go │ ├── zsys_linux_ppc64le.go │ ├── zsys_linux_riscv64.go │ └── zsys_linux_s390x.go ├── nettest │ └── nettest.go ├── netutil │ └── listen_test.go └── webdav │ └── lock_test.go └── sys ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── cpu ├── cpu_mips64x.go ├── cpu_mipsx.go ├── cpu_other_arm64.go └── cpu_wasm.go ├── unix ├── affinity_linux.go ├── aliases.go ├── asm_aix_ppc64.s ├── asm_darwin_386.s ├── asm_darwin_amd64.s ├── asm_darwin_arm.s ├── asm_darwin_arm64.s ├── asm_dragonfly_amd64.s ├── asm_freebsd_386.s ├── asm_freebsd_amd64.s ├── asm_freebsd_arm.s ├── asm_freebsd_arm64.s ├── asm_linux_386.s ├── asm_linux_amd64.s ├── asm_linux_arm.s ├── asm_linux_arm64.s ├── asm_linux_mips64x.s ├── asm_linux_mipsx.s ├── asm_linux_ppc64x.s ├── asm_linux_riscv64.s ├── asm_linux_s390x.s ├── asm_netbsd_386.s ├── asm_netbsd_amd64.s ├── asm_netbsd_arm.s ├── asm_netbsd_arm64.s ├── asm_openbsd_386.s ├── asm_openbsd_amd64.s ├── asm_openbsd_arm.s ├── asm_openbsd_arm64.s ├── asm_solaris_amd64.s ├── bluetooth_linux.go ├── cap_freebsd.go ├── constants.go ├── dev_aix_ppc.go ├── dev_aix_ppc64.go ├── dev_darwin.go ├── dev_dragonfly.go ├── dev_freebsd.go ├── dev_linux.go ├── dev_netbsd.go ├── dev_openbsd.go ├── dirent.go ├── endian_big.go ├── endian_little.go ├── env_unix.go ├── errors_freebsd_386.go ├── errors_freebsd_amd64.go ├── errors_freebsd_arm.go ├── fcntl.go ├── fcntl_darwin.go ├── fcntl_linux_32bit.go ├── fdset.go ├── gccgo.go ├── gccgo_c.c ├── gccgo_linux_amd64.go ├── ioctl.go ├── mkasm_darwin.go ├── mkpost.go ├── mksyscall.go ├── mksyscall_aix_ppc.go ├── mksyscall_aix_ppc64.go ├── mksyscall_solaris.go ├── mksysctl_openbsd.go ├── mksysnum.go ├── pagesize_unix.go ├── pledge_openbsd.go ├── race.go ├── race0.go ├── readdirent_getdents.go ├── readdirent_getdirentries.go ├── sockcmsg_dragonfly.go ├── sockcmsg_linux.go ├── sockcmsg_unix.go ├── sockcmsg_unix_other.go ├── str.go ├── syscall.go ├── syscall_aix.go ├── syscall_aix_ppc.go ├── syscall_aix_ppc64.go ├── syscall_aix_test.go ├── syscall_bsd.go ├── syscall_bsd_test.go ├── syscall_darwin.1_12.go ├── syscall_darwin.1_13.go ├── syscall_darwin.go ├── syscall_darwin_386.1_11.go ├── syscall_darwin_386.go ├── syscall_darwin_amd64.1_11.go ├── syscall_darwin_amd64.go ├── syscall_darwin_arm.1_11.go ├── syscall_darwin_arm.go ├── syscall_darwin_arm64.1_11.go ├── syscall_darwin_arm64.go ├── syscall_darwin_libSystem.go ├── syscall_dragonfly.go ├── syscall_dragonfly_amd64.go ├── syscall_freebsd.go ├── syscall_freebsd_386.go ├── syscall_freebsd_amd64.go ├── syscall_freebsd_arm.go ├── syscall_freebsd_arm64.go ├── syscall_linux.go ├── syscall_linux_386.go ├── syscall_linux_amd64.go ├── syscall_linux_amd64_gc.go ├── syscall_linux_arm.go ├── syscall_linux_arm64.go ├── syscall_linux_gc.go ├── syscall_linux_gc_386.go ├── syscall_linux_gccgo_386.go ├── syscall_linux_gccgo_arm.go ├── syscall_linux_mips64x.go ├── syscall_linux_mipsx.go ├── syscall_linux_ppc64x.go ├── syscall_linux_riscv64.go ├── syscall_linux_s390x.go ├── syscall_linux_sparc64.go ├── syscall_linux_test.go ├── syscall_netbsd.go ├── syscall_netbsd_386.go ├── syscall_netbsd_amd64.go ├── syscall_netbsd_arm.go ├── syscall_netbsd_arm64.go ├── syscall_openbsd.go ├── syscall_openbsd_386.go ├── syscall_openbsd_amd64.go ├── syscall_openbsd_arm.go ├── syscall_openbsd_arm64.go ├── syscall_solaris.go ├── syscall_solaris_amd64.go ├── syscall_solaris_test.go ├── syscall_unix.go ├── syscall_unix_gc.go ├── syscall_unix_gc_ppc64x.go ├── syscall_unix_test.go ├── timestruct.go ├── types_aix.go ├── types_darwin.go ├── types_dragonfly.go ├── types_freebsd.go ├── types_netbsd.go ├── types_openbsd.go ├── types_solaris.go ├── unveil_openbsd.go ├── xattr_bsd.go ├── zerrors_aix_ppc.go ├── zerrors_aix_ppc64.go ├── zerrors_darwin_386.go ├── zerrors_darwin_amd64.go ├── zerrors_darwin_arm.go ├── zerrors_darwin_arm64.go ├── zerrors_dragonfly_amd64.go ├── zerrors_freebsd_386.go ├── zerrors_freebsd_amd64.go ├── zerrors_freebsd_arm.go ├── zerrors_freebsd_arm64.go ├── zerrors_linux_386.go ├── zerrors_linux_amd64.go ├── zerrors_linux_arm.go ├── zerrors_linux_arm64.go ├── zerrors_linux_mips.go ├── zerrors_linux_mips64.go ├── zerrors_linux_mips64le.go ├── zerrors_linux_mipsle.go ├── zerrors_linux_ppc64.go ├── zerrors_linux_ppc64le.go ├── zerrors_linux_riscv64.go ├── zerrors_linux_s390x.go ├── zerrors_linux_sparc64.go ├── zerrors_netbsd_386.go ├── zerrors_netbsd_amd64.go ├── zerrors_netbsd_arm.go ├── zerrors_netbsd_arm64.go ├── zerrors_openbsd_386.go ├── zerrors_openbsd_amd64.go ├── zerrors_openbsd_arm.go ├── zerrors_openbsd_arm64.go ├── zerrors_solaris_amd64.go ├── zptrace_armnn_linux.go ├── zptrace_linux_arm64.go ├── zptrace_mipsnn_linux.go ├── zptrace_mipsnnle_linux.go ├── zptrace_x86_linux.go ├── zsyscall_aix_ppc.go ├── zsyscall_aix_ppc64.go ├── zsyscall_aix_ppc64_gc.go ├── zsyscall_aix_ppc64_gccgo.go ├── zsyscall_darwin_386.1_11.go ├── zsyscall_darwin_386.1_13.go ├── zsyscall_darwin_386.1_13.s ├── zsyscall_darwin_386.go ├── zsyscall_darwin_386.s ├── zsyscall_darwin_amd64.1_11.go ├── zsyscall_darwin_amd64.1_13.go ├── zsyscall_darwin_amd64.1_13.s ├── zsyscall_darwin_amd64.go ├── zsyscall_darwin_amd64.s ├── zsyscall_darwin_arm.1_11.go ├── zsyscall_darwin_arm.1_13.go ├── zsyscall_darwin_arm.1_13.s ├── zsyscall_darwin_arm.go ├── zsyscall_darwin_arm.s ├── zsyscall_darwin_arm64.1_11.go ├── zsyscall_darwin_arm64.1_13.go ├── zsyscall_darwin_arm64.1_13.s ├── zsyscall_darwin_arm64.go ├── zsyscall_darwin_arm64.s ├── zsyscall_dragonfly_amd64.go ├── zsyscall_freebsd_386.go ├── zsyscall_freebsd_amd64.go ├── zsyscall_freebsd_arm.go ├── zsyscall_freebsd_arm64.go ├── zsyscall_linux_386.go ├── zsyscall_linux_amd64.go ├── zsyscall_linux_arm.go ├── zsyscall_linux_arm64.go ├── zsyscall_linux_mips.go ├── zsyscall_linux_mips64.go ├── zsyscall_linux_mips64le.go ├── zsyscall_linux_mipsle.go ├── zsyscall_linux_ppc64.go ├── zsyscall_linux_ppc64le.go ├── zsyscall_linux_riscv64.go ├── zsyscall_linux_s390x.go ├── zsyscall_linux_sparc64.go ├── zsyscall_netbsd_386.go ├── zsyscall_netbsd_amd64.go ├── zsyscall_netbsd_arm.go ├── zsyscall_netbsd_arm64.go ├── zsyscall_openbsd_386.go ├── zsyscall_openbsd_amd64.go ├── zsyscall_openbsd_arm.go ├── zsyscall_openbsd_arm64.go ├── zsyscall_solaris_amd64.go ├── zsysctl_openbsd_386.go ├── zsysctl_openbsd_amd64.go ├── zsysctl_openbsd_arm.go ├── zsysctl_openbsd_arm64.go ├── zsysnum_darwin_386.go ├── zsysnum_darwin_amd64.go ├── zsysnum_darwin_arm.go ├── zsysnum_darwin_arm64.go ├── zsysnum_dragonfly_amd64.go ├── zsysnum_freebsd_386.go ├── zsysnum_freebsd_amd64.go ├── zsysnum_freebsd_arm.go ├── zsysnum_freebsd_arm64.go ├── zsysnum_linux_386.go ├── zsysnum_linux_amd64.go ├── zsysnum_linux_arm.go ├── zsysnum_linux_arm64.go ├── zsysnum_linux_mips.go ├── zsysnum_linux_mips64.go ├── zsysnum_linux_mips64le.go ├── zsysnum_linux_mipsle.go ├── zsysnum_linux_ppc64.go ├── zsysnum_linux_ppc64le.go ├── zsysnum_linux_riscv64.go ├── zsysnum_linux_s390x.go ├── zsysnum_linux_sparc64.go ├── zsysnum_netbsd_386.go ├── zsysnum_netbsd_amd64.go ├── zsysnum_netbsd_arm.go ├── zsysnum_netbsd_arm64.go ├── zsysnum_openbsd_386.go ├── zsysnum_openbsd_amd64.go ├── zsysnum_openbsd_arm.go ├── zsysnum_openbsd_arm64.go ├── ztypes_aix_ppc.go ├── ztypes_aix_ppc64.go ├── ztypes_darwin_386.go ├── ztypes_darwin_amd64.go ├── ztypes_darwin_arm.go ├── ztypes_darwin_arm64.go ├── ztypes_dragonfly_amd64.go ├── ztypes_freebsd_386.go ├── ztypes_freebsd_amd64.go ├── ztypes_freebsd_arm.go ├── ztypes_freebsd_arm64.go ├── ztypes_linux_386.go ├── ztypes_linux_amd64.go ├── ztypes_linux_arm.go ├── ztypes_linux_arm64.go ├── ztypes_linux_mips.go ├── ztypes_linux_mips64.go ├── ztypes_linux_mips64le.go ├── ztypes_linux_mipsle.go ├── ztypes_linux_ppc64.go ├── ztypes_linux_ppc64le.go ├── ztypes_linux_riscv64.go ├── ztypes_linux_s390x.go ├── ztypes_linux_sparc64.go ├── ztypes_netbsd_386.go ├── ztypes_netbsd_amd64.go ├── ztypes_netbsd_arm.go ├── ztypes_netbsd_arm64.go ├── ztypes_openbsd_386.go ├── ztypes_openbsd_amd64.go ├── ztypes_openbsd_arm.go ├── ztypes_openbsd_arm64.go └── ztypes_solaris_amd64.go └── windows ├── aliases.go ├── dll_windows.go ├── empty.s ├── env_windows.go ├── eventlog.go ├── exec_windows.go ├── memory_windows.go ├── mksyscall.go ├── race.go ├── race0.go ├── security_windows.go ├── service.go ├── str.go ├── syscall.go ├── syscall_windows.go ├── types_windows.go ├── types_windows_386.go ├── types_windows_amd64.go ├── types_windows_arm.go ├── zerrors_windows.go ├── zknownfolderids_windows.go └── zsyscall_windows.go /.github/ISSUE_TEMPLATE/blank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.github/ISSUE_TEMPLATE/blank.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/install-golangci-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/install-golangci-lint.sh -------------------------------------------------------------------------------- /.travis/install-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/install-linux.sh -------------------------------------------------------------------------------- /.travis/install-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/install-os.sh -------------------------------------------------------------------------------- /.travis/install-qt-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/install-qt-win.sh -------------------------------------------------------------------------------- /.travis/qt-installer-windows.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/qt-installer-windows.qs -------------------------------------------------------------------------------- /.travis/report-progress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/report-progress.sh -------------------------------------------------------------------------------- /.travis/setup_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/.travis/setup_release.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/LICENSE.GPLv3 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/README.md -------------------------------------------------------------------------------- /ci-scripts/install-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/ci-scripts/install-linux.sh -------------------------------------------------------------------------------- /ci-scripts/install-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/ci-scripts/install-osx.sh -------------------------------------------------------------------------------- /ci-scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/ci-scripts/version.sh -------------------------------------------------------------------------------- /fonts.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/fonts.qrc -------------------------------------------------------------------------------- /images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/images.qrc -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/main.go -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/qml.qrc -------------------------------------------------------------------------------- /qt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/qt.qrc -------------------------------------------------------------------------------- /qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/qtquickcontrols2.conf -------------------------------------------------------------------------------- /resources/fonts/code-new-roman/code-new-roman.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/fonts/code-new-roman/code-new-roman.otf -------------------------------------------------------------------------------- /resources/fonts/code-new-roman/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/fonts/code-new-roman/license.txt -------------------------------------------------------------------------------- /resources/fonts/hemi-head/hemi-head.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/fonts/hemi-head/hemi-head.ttf -------------------------------------------------------------------------------- /resources/images/icons/add-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/add-circle.svg -------------------------------------------------------------------------------- /resources/images/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/add.svg -------------------------------------------------------------------------------- /resources/images/icons/appIcon/appIcon-fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/appIcon/appIcon-fiber.png -------------------------------------------------------------------------------- /resources/images/icons/appIcon/appIcon-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/appIcon/appIcon-wallet.png -------------------------------------------------------------------------------- /resources/images/icons/appIcon/appIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/appIcon/appIcon.icns -------------------------------------------------------------------------------- /resources/images/icons/appIcon/appIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/appIcon/appIcon.ico -------------------------------------------------------------------------------- /resources/images/icons/appIcon/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/appIcon/appIcon.png -------------------------------------------------------------------------------- /resources/images/icons/appIcon/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/appIcon/splash.png -------------------------------------------------------------------------------- /resources/images/icons/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/back.svg -------------------------------------------------------------------------------- /resources/images/icons/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/backspace.svg -------------------------------------------------------------------------------- /resources/images/icons/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/backup.svg -------------------------------------------------------------------------------- /resources/images/icons/blockchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/blockchain.svg -------------------------------------------------------------------------------- /resources/images/icons/check-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/check-simple.svg -------------------------------------------------------------------------------- /resources/images/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/check.svg -------------------------------------------------------------------------------- /resources/images/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/clear.svg -------------------------------------------------------------------------------- /resources/images/icons/contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/contacts.svg -------------------------------------------------------------------------------- /resources/images/icons/copy-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/copy-content.svg -------------------------------------------------------------------------------- /resources/images/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/copy.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/abkhazia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/abkhazia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/albania.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/albania.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/algeria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/algeria.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/andorra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/andorra.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/angola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/angola.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/anguilla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/anguilla.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/armenia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/armenia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/aruba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/aruba.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/austria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/austria.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bahamas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bahamas.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bahrain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bahrain.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/barbados.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/barbados.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/belarus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/belarus.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/belgium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/belgium.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/belize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/belize.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/benin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/benin.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bermuda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bermuda.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bhutan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bhutan.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bolivia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bolivia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bonaire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bonaire.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/botswana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/botswana.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/brazil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/brazil.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/brunei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/brunei.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/bulgaria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/bulgaria.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/burundi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/burundi.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/cambodia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/cambodia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/cameroon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/cameroon.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/canada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/canada.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/ceuta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/ceuta.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/chad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/chad.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/chile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/chile.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/china.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/china.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/colombia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/colombia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/comoros.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/comoros.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/corsica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/corsica.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/croatia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/croatia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/cuba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/cuba.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/cura_sao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/cura_sao.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/cyprus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/cyprus.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/denmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/denmark.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/djibouti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/djibouti.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/dominica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/dominica.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/ecuador.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/ecuador.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/egypt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/egypt.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/england.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/england.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/eritrea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/eritrea.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/estonia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/estonia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/ethiopia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/ethiopia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/fiji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/fiji.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/finland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/finland.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/france.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/france.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/gabon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/gabon.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/gambia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/gambia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/georgia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/georgia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/germany.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/germany.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/ghana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/ghana.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/greece.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/greece.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/grenada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/grenada.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/guam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/guam.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/guernsey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/guernsey.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/guinea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/guinea.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/guyana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/guyana.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/haiti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/haiti.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/hawaii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/hawaii.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/honduras.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/honduras.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/hungary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/hungary.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/iceland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/iceland.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/india.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/india.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/iran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/iran.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/iraq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/iraq.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/ireland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/ireland.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/israel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/israel.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/italy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/italy.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/jamaica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/jamaica.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/japan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/japan.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/jersey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/jersey.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/jordan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/jordan.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/kenya.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/kenya.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/kiribati.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/kiribati.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/kosovo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/kosovo.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/kuwait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/kuwait.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/laos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/laos.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/latvia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/latvia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/lebanon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/lebanon.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/lesotho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/lesotho.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/liberia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/liberia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/libya.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/libya.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/macau.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/macau.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/madeira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/madeira.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/malawi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/malawi.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/malaysia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/malaysia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/maldives.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/maldives.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/mali.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/mali.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/malta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/malta.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/mexico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/mexico.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/moldova.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/moldova.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/monaco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/monaco.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/mongolia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/mongolia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/morocco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/morocco.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/myanmar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/myanmar.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/namibia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/namibia.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/nato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/nato.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/nauru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/nauru.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/nepal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/nepal.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/niger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/niger.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/nigeria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/nigeria.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/niue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/niue.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/norway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/norway.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/oman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/oman.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/palau.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/palau.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/peru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/peru.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/qatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/qatar.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/samoa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/samoa.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/spain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/spain.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/sudan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/sudan.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/syria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/syria.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/tibet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/tibet.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/togo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/togo.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/tonga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/tonga.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/wales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/wales.svg -------------------------------------------------------------------------------- /resources/images/icons/country-flags/yemen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/country-flags/yemen.svg -------------------------------------------------------------------------------- /resources/images/icons/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/cpu.svg -------------------------------------------------------------------------------- /resources/images/icons/cut-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/cut-content.svg -------------------------------------------------------------------------------- /resources/images/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/delete.svg -------------------------------------------------------------------------------- /resources/images/icons/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/down.svg -------------------------------------------------------------------------------- /resources/images/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/edit.svg -------------------------------------------------------------------------------- /resources/images/icons/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/error.svg -------------------------------------------------------------------------------- /resources/images/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/help.svg -------------------------------------------------------------------------------- /resources/images/icons/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/license.svg -------------------------------------------------------------------------------- /resources/images/icons/lockOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/lockOff.svg -------------------------------------------------------------------------------- /resources/images/icons/lockOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/lockOn.svg -------------------------------------------------------------------------------- /resources/images/icons/log_level_debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/log_level_debug.svg -------------------------------------------------------------------------------- /resources/images/icons/log_level_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/log_level_error.svg -------------------------------------------------------------------------------- /resources/images/icons/log_level_fatal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/log_level_fatal.svg -------------------------------------------------------------------------------- /resources/images/icons/log_level_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/log_level_info.svg -------------------------------------------------------------------------------- /resources/images/icons/log_level_panic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/log_level_panic.svg -------------------------------------------------------------------------------- /resources/images/icons/log_level_warn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/log_level_warn.svg -------------------------------------------------------------------------------- /resources/images/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/moon.svg -------------------------------------------------------------------------------- /resources/images/icons/networking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/networking.svg -------------------------------------------------------------------------------- /resources/images/icons/outputs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/outputs.svg -------------------------------------------------------------------------------- /resources/images/icons/paste-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/paste-content.svg -------------------------------------------------------------------------------- /resources/images/icons/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/qr.svg -------------------------------------------------------------------------------- /resources/images/icons/qt_logo_green_rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/qt_logo_green_rgb.svg -------------------------------------------------------------------------------- /resources/images/icons/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/question.svg -------------------------------------------------------------------------------- /resources/images/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/redo.svg -------------------------------------------------------------------------------- /resources/images/icons/remove-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/remove-circle.svg -------------------------------------------------------------------------------- /resources/images/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/security.svg -------------------------------------------------------------------------------- /resources/images/icons/selectAll-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/selectAll-content.svg -------------------------------------------------------------------------------- /resources/images/icons/send-amber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/send-amber.svg -------------------------------------------------------------------------------- /resources/images/icons/send-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/send-blue.svg -------------------------------------------------------------------------------- /resources/images/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/send.svg -------------------------------------------------------------------------------- /resources/images/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/settings.svg -------------------------------------------------------------------------------- /resources/images/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/sun.svg -------------------------------------------------------------------------------- /resources/images/icons/system-language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/system-language.svg -------------------------------------------------------------------------------- /resources/images/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/trash.svg -------------------------------------------------------------------------------- /resources/images/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/undo.svg -------------------------------------------------------------------------------- /resources/images/icons/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/up.svg -------------------------------------------------------------------------------- /resources/images/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/upload.svg -------------------------------------------------------------------------------- /resources/images/icons/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/usb.svg -------------------------------------------------------------------------------- /resources/images/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/user.svg -------------------------------------------------------------------------------- /resources/images/icons/visibleOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/visibleOff.svg -------------------------------------------------------------------------------- /resources/images/icons/visibleOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/visibleOn.svg -------------------------------------------------------------------------------- /resources/images/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/images/icons/warning.svg -------------------------------------------------------------------------------- /resources/platform/darwin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/platform/darwin/Info.plist -------------------------------------------------------------------------------- /resources/platform/windows/winResources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/platform/windows/winResources.rc -------------------------------------------------------------------------------- /resources/translations/FiberCryptoWallet_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/translations/FiberCryptoWallet_en.ts -------------------------------------------------------------------------------- /resources/translations/FiberCryptoWallet_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/translations/FiberCryptoWallet_es.ts -------------------------------------------------------------------------------- /resources/translations/FiberCryptoWallet_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/resources/translations/FiberCryptoWallet_fr.ts -------------------------------------------------------------------------------- /src/coin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/mocks/Address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/Address.go -------------------------------------------------------------------------------- /src/coin/mocks/AddressBook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/AddressBook.go -------------------------------------------------------------------------------- /src/coin/mocks/AddressIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/AddressIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/AltcoinManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/AltcoinManager.go -------------------------------------------------------------------------------- /src/coin/mocks/AltcoinPlugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/AltcoinPlugin.go -------------------------------------------------------------------------------- /src/coin/mocks/Block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/Block.go -------------------------------------------------------------------------------- /src/coin/mocks/BlockchainSignService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/BlockchainSignService.go -------------------------------------------------------------------------------- /src/coin/mocks/BlockchainStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/BlockchainStatus.go -------------------------------------------------------------------------------- /src/coin/mocks/BlockchainTransactionAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/BlockchainTransactionAPI.go -------------------------------------------------------------------------------- /src/coin/mocks/Contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/Contact.go -------------------------------------------------------------------------------- /src/coin/mocks/CryptoAccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/CryptoAccount.go -------------------------------------------------------------------------------- /src/coin/mocks/KeyValueStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/KeyValueStore.go -------------------------------------------------------------------------------- /src/coin/mocks/MultiPool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/MultiPool.go -------------------------------------------------------------------------------- /src/coin/mocks/MultiPoolSection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/MultiPoolSection.go -------------------------------------------------------------------------------- /src/coin/mocks/PEX.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/PEX.go -------------------------------------------------------------------------------- /src/coin/mocks/PexNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/PexNode.go -------------------------------------------------------------------------------- /src/coin/mocks/PexNodeIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/PexNodeIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/PexNodeSet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/PexNodeSet.go -------------------------------------------------------------------------------- /src/coin/mocks/PooledObjectFactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/PooledObjectFactory.go -------------------------------------------------------------------------------- /src/coin/mocks/PubKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/PubKey.go -------------------------------------------------------------------------------- /src/coin/mocks/SecKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/SecKey.go -------------------------------------------------------------------------------- /src/coin/mocks/SeedGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/SeedGenerator.go -------------------------------------------------------------------------------- /src/coin/mocks/Storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/Storage.go -------------------------------------------------------------------------------- /src/coin/mocks/StringAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/StringAddress.go -------------------------------------------------------------------------------- /src/coin/mocks/Transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/Transaction.go -------------------------------------------------------------------------------- /src/coin/mocks/TransactionInput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TransactionInput.go -------------------------------------------------------------------------------- /src/coin/mocks/TransactionInputIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TransactionInputIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/TransactionIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TransactionIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/TransactionOutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TransactionOutput.go -------------------------------------------------------------------------------- /src/coin/mocks/TransactionOutputIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TransactionOutputIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/TxnSigner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TxnSigner.go -------------------------------------------------------------------------------- /src/coin/mocks/TxnSignerIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/TxnSignerIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/Wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/Wallet.go -------------------------------------------------------------------------------- /src/coin/mocks/WalletAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/WalletAddress.go -------------------------------------------------------------------------------- /src/coin/mocks/WalletEnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/WalletEnv.go -------------------------------------------------------------------------------- /src/coin/mocks/WalletIterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/WalletIterator.go -------------------------------------------------------------------------------- /src/coin/mocks/WalletOutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/WalletOutput.go -------------------------------------------------------------------------------- /src/coin/mocks/WalletSet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/WalletSet.go -------------------------------------------------------------------------------- /src/coin/mocks/WalletStorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/mocks/WalletStorage.go -------------------------------------------------------------------------------- /src/coin/skycoin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/skycoin/blockchain/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/skycoin/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/config/config.go -------------------------------------------------------------------------------- /src/coin/skycoin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/main.go -------------------------------------------------------------------------------- /src/coin/skycoin/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/main_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/skycoin/models/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/account.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/account_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/api.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/blockchain.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/blockchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/blockchain_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/cipher.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/cipher_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/coin.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/coin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/coin_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/main.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/main_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/network.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/network_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/params.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/sign.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/sky_test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/sky_test_utils.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/skyapi_test_mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/skyapi_test_mocks.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/testdata/empty_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/skycoin/models/testdata/encrypted.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/testdata/encrypted.wlt -------------------------------------------------------------------------------- /src/coin/skycoin/models/testdata/invalid/wallets/empty_wallet.wlt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/skycoin/models/testdata/test.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/testdata/test.wlt -------------------------------------------------------------------------------- /src/coin/skycoin/models/testsutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/testsutils.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/util_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/wallet.go -------------------------------------------------------------------------------- /src/coin/skycoin/models/wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/models/wallet_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/params/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/params/params.go -------------------------------------------------------------------------------- /src/coin/skycoin/sign/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coin/skycoin/skymocks/ReadableTxn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/skymocks/ReadableTxn.go -------------------------------------------------------------------------------- /src/coin/skycoin/skymocks/SkycoinAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/skymocks/SkycoinAPI.go -------------------------------------------------------------------------------- /src/coin/skycoin/skymocks/SkycoinTxn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/skymocks/SkycoinTxn.go -------------------------------------------------------------------------------- /src/coin/skycoin/skymocks/SkycoinWallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/skymocks/SkycoinWallet.go -------------------------------------------------------------------------------- /src/coin/skycoin/skytypes/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/skytypes/api.go -------------------------------------------------------------------------------- /src/coin/skycoin/skytypes/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/skytypes/wallet.go -------------------------------------------------------------------------------- /src/coin/skycoin/testsuite/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/coin/skycoin/testsuite/env.go -------------------------------------------------------------------------------- /src/contrib/skywallet/mocks/device_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/contrib/skywallet/mocks/device_driver.go -------------------------------------------------------------------------------- /src/contrib/skywallet/mocks/devicer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/contrib/skywallet/mocks/devicer.go -------------------------------------------------------------------------------- /src/contrib/skywallet/sky-wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/contrib/skywallet/sky-wallet.go -------------------------------------------------------------------------------- /src/contrib/skywallet/sky-wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/contrib/skywallet/sky-wallet_test.go -------------------------------------------------------------------------------- /src/core/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/account.go -------------------------------------------------------------------------------- /src/core/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/blockchain.go -------------------------------------------------------------------------------- /src/core/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/cipher.go -------------------------------------------------------------------------------- /src/core/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/coin.go -------------------------------------------------------------------------------- /src/core/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/main.go -------------------------------------------------------------------------------- /src/core/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/network.go -------------------------------------------------------------------------------- /src/core/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/sign.go -------------------------------------------------------------------------------- /src/core/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/storage.go -------------------------------------------------------------------------------- /src/core/textutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/textutil.go -------------------------------------------------------------------------------- /src/core/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/core/wallet.go -------------------------------------------------------------------------------- /src/data/addressbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/data/addressbook.go -------------------------------------------------------------------------------- /src/data/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/data/contact.go -------------------------------------------------------------------------------- /src/data/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/data/data_test.go -------------------------------------------------------------------------------- /src/data/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/data/database.go -------------------------------------------------------------------------------- /src/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/errors/error.go -------------------------------------------------------------------------------- /src/main/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/main/config.go -------------------------------------------------------------------------------- /src/main/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/main/plugin.go -------------------------------------------------------------------------------- /src/main/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/main/sign.go -------------------------------------------------------------------------------- /src/models/address/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/address/address.go -------------------------------------------------------------------------------- /src/models/addressBook/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/addressBook/address.go -------------------------------------------------------------------------------- /src/models/addressBook/contacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/addressBook/contacts.go -------------------------------------------------------------------------------- /src/models/addressesModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/addressesModel.go -------------------------------------------------------------------------------- /src/models/blockchainModels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/blockchainModels.go -------------------------------------------------------------------------------- /src/models/bridgeModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/bridgeModel.go -------------------------------------------------------------------------------- /src/models/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/config.go -------------------------------------------------------------------------------- /src/models/history/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/history/history.go -------------------------------------------------------------------------------- /src/models/history/historyManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/history/historyManager.go -------------------------------------------------------------------------------- /src/models/modelAddresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/modelAddresses.go -------------------------------------------------------------------------------- /src/models/modelOutputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/modelOutputs.go -------------------------------------------------------------------------------- /src/models/modelWallets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/modelWallets.go -------------------------------------------------------------------------------- /src/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/models.go -------------------------------------------------------------------------------- /src/models/modelsManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/modelsManager.go -------------------------------------------------------------------------------- /src/models/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/networking.go -------------------------------------------------------------------------------- /src/models/networkingManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/networkingManager.go -------------------------------------------------------------------------------- /src/models/networkingModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/networkingModel.go -------------------------------------------------------------------------------- /src/models/pending/Pending.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/pending/Pending.go -------------------------------------------------------------------------------- /src/models/pending/PendingModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/pending/PendingModel.go -------------------------------------------------------------------------------- /src/models/qtransaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/qtransaction.go -------------------------------------------------------------------------------- /src/models/signersModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/signersModel.go -------------------------------------------------------------------------------- /src/models/transactions/transactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/transactions/transactions.go -------------------------------------------------------------------------------- /src/models/walletsManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/walletsManager.go -------------------------------------------------------------------------------- /src/models/walletsModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/models/walletsModel.go -------------------------------------------------------------------------------- /src/params/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/params/params.go -------------------------------------------------------------------------------- /src/ui/AddressBook.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/AddressBook.qml -------------------------------------------------------------------------------- /src/ui/Blockchain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Blockchain.qml -------------------------------------------------------------------------------- /src/ui/BusyPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/BusyPopup.qml -------------------------------------------------------------------------------- /src/ui/ControlCustomSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/ControlCustomSwitch.qml -------------------------------------------------------------------------------- /src/ui/ControlGenerateSeed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/ControlGenerateSeed.qml -------------------------------------------------------------------------------- /src/ui/Controls/+material/TextArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Controls/+material/TextArea.qml -------------------------------------------------------------------------------- /src/ui/Controls/+material/TextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Controls/+material/TextField.qml -------------------------------------------------------------------------------- /src/ui/Controls/TextArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Controls/TextArea.qml -------------------------------------------------------------------------------- /src/ui/Controls/TextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Controls/TextField.qml -------------------------------------------------------------------------------- /src/ui/CreateLoadWallet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/CreateLoadWallet.qml -------------------------------------------------------------------------------- /src/ui/CustomHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/CustomHeader.qml -------------------------------------------------------------------------------- /src/ui/CustomMenuBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/CustomMenuBar.qml -------------------------------------------------------------------------------- /src/ui/CustomMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/CustomMenuItem.qml -------------------------------------------------------------------------------- /src/ui/Delegates/AddressListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/AddressListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/ContactDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/ContactDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/DestinationListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/DestinationListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/HistoryFilterListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/HistoryFilterListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/HistoryListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/HistoryListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/InputOutputDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/InputOutputDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/NetworkingListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/NetworkingListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/OutputsListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/OutputsListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/PasswordRequesterDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/PasswordRequesterDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/SectionDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/SectionDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/WalletListAddressDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/WalletListAddressDelegate.qml -------------------------------------------------------------------------------- /src/ui/Delegates/WalletListDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Delegates/WalletListDelegate.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogAbout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogAbout.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogAboutLicense.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogAboutLicense.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogAboutQt.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogAboutQt.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogAddAddresses.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogAddAddresses.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogAddContact.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogAddContact.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogAddLoadWallet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogAddLoadWallet.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogEditWallet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogEditWallet.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogGetPassword.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogGetPassword.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogQR.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogQR.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogSelectAddressByWallet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogSelectAddressByWallet.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogSelectSecType.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogSelectSecType.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogSendTransaction.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogSendTransaction.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogSetPassword.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogSetPassword.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogShowContact.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogShowContact.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogTransactionDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogTransactionDetails.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/DialogUnconfiguredWallet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/DialogUnconfiguredWallet.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/MsgDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/MsgDialog.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/NumPadDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/NumPadDialog.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/RestoreBackupWordsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/RestoreBackupWordsDialog.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/SecureWalletDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/SecureWalletDialog.qml -------------------------------------------------------------------------------- /src/ui/Dialogs/WalletCreatedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Dialogs/WalletCreatedDialog.qml -------------------------------------------------------------------------------- /src/ui/FilterComboBoxPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/FilterComboBoxPopup.qml -------------------------------------------------------------------------------- /src/ui/GeneralStackView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/GeneralStackView.qml -------------------------------------------------------------------------------- /src/ui/GeneralSwipeView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/GeneralSwipeView.qml -------------------------------------------------------------------------------- /src/ui/HistoryFilterList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/HistoryFilterList.qml -------------------------------------------------------------------------------- /src/ui/MenuThemeAccent.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/MenuThemeAccent.qml -------------------------------------------------------------------------------- /src/ui/MultiplePasswordRequester.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/MultiplePasswordRequester.qml -------------------------------------------------------------------------------- /src/ui/NetworkSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/NetworkSettings.qml -------------------------------------------------------------------------------- /src/ui/Networking.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Networking.qml -------------------------------------------------------------------------------- /src/ui/Outputs.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Outputs.qml -------------------------------------------------------------------------------- /src/ui/PageCreateLoadWallet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/PageCreateLoadWallet.qml -------------------------------------------------------------------------------- /src/ui/PageHistory.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/PageHistory.qml -------------------------------------------------------------------------------- /src/ui/PageSend.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/PageSend.qml -------------------------------------------------------------------------------- /src/ui/PageWallets.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/PageWallets.qml -------------------------------------------------------------------------------- /src/ui/PasswordRequester.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/PasswordRequester.qml -------------------------------------------------------------------------------- /src/ui/PendingTransactions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/PendingTransactions.qml -------------------------------------------------------------------------------- /src/ui/Settings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Settings.qml -------------------------------------------------------------------------------- /src/ui/SettingsAddressBook.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/SettingsAddressBook.qml -------------------------------------------------------------------------------- /src/ui/SubPageSendAdvanced.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/SubPageSendAdvanced.qml -------------------------------------------------------------------------------- /src/ui/SubPageSendSimple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/SubPageSendSimple.qml -------------------------------------------------------------------------------- /src/ui/ToolButtonQR.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/ToolButtonQR.qml -------------------------------------------------------------------------------- /src/ui/TransactionDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/TransactionDetails.qml -------------------------------------------------------------------------------- /src/ui/Utils/QRCode.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Utils/QRCode.qml -------------------------------------------------------------------------------- /src/ui/Utils/qqr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/Utils/qqr.js -------------------------------------------------------------------------------- /src/ui/WalletSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/WalletSettings.qml -------------------------------------------------------------------------------- /src/ui/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/main.qml -------------------------------------------------------------------------------- /src/ui/splash.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/ui/splash.qml -------------------------------------------------------------------------------- /src/util/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/util/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/account.go -------------------------------------------------------------------------------- /src/util/assertthat/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/assertthat/assertions.go -------------------------------------------------------------------------------- /src/util/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/cipher.go -------------------------------------------------------------------------------- /src/util/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/cipher_test.go -------------------------------------------------------------------------------- /src/util/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/coin.go -------------------------------------------------------------------------------- /src/util/coin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/coin_test.go -------------------------------------------------------------------------------- /src/util/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/datetime.go -------------------------------------------------------------------------------- /src/util/datetime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/datetime_test.go -------------------------------------------------------------------------------- /src/util/logging/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/logging/formatter.go -------------------------------------------------------------------------------- /src/util/logging/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/logging/hooks.go -------------------------------------------------------------------------------- /src/util/logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/logging/logger.go -------------------------------------------------------------------------------- /src/util/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/logging/logging.go -------------------------------------------------------------------------------- /src/util/logging/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/logging/logging_test.go -------------------------------------------------------------------------------- /src/util/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/main.go -------------------------------------------------------------------------------- /src/util/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/main_test.go -------------------------------------------------------------------------------- /src/util/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/plugin_test.go -------------------------------------------------------------------------------- /src/util/pluginutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/pluginutil.go -------------------------------------------------------------------------------- /src/util/requirethat/require.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/requirethat/require.go -------------------------------------------------------------------------------- /src/util/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/sign.go -------------------------------------------------------------------------------- /src/util/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/sign_test.go -------------------------------------------------------------------------------- /src/util/signutil/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/signutil/sign.go -------------------------------------------------------------------------------- /src/util/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/storage.go -------------------------------------------------------------------------------- /src/util/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/storage_test.go -------------------------------------------------------------------------------- /src/util/testutil/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/testutil/collections.go -------------------------------------------------------------------------------- /src/util/testutil/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/testutil/requirements.go -------------------------------------------------------------------------------- /src/util/textutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/textutil.go -------------------------------------------------------------------------------- /src/util/textutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/textutil_test.go -------------------------------------------------------------------------------- /src/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/util.go -------------------------------------------------------------------------------- /src/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/util_test.go -------------------------------------------------------------------------------- /src/util/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/wallet.go -------------------------------------------------------------------------------- /src/util/wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/src/util/wallet_test.go -------------------------------------------------------------------------------- /test/integration/util/hardware-wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/test/integration/util/hardware-wallet.go -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/NYTimes/gziphandler/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/NYTimes/gziphandler/gzip.go -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/address-transactions-2RRpfMDmPHEyG4LWmNYT6eWj5VcmUfCJY6D.golden: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/address-transactions-2b8ourW8fbTkC1yQBSLseVt6srhXvNMHvn9.golden: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/blocks-end-less-than-start.golden: -------------------------------------------------------------------------------- 1 | { 2 | "blocks": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/blocks-verbose-end-less-than-start.golden: -------------------------------------------------------------------------------- 1 | { 2 | "blocks": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/genesis-raw-tx.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/network-exchanged-peers.golden: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/no-unconfirmed-txns.golden: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/uxout-noaddr.golden: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/verify-address.golden: -------------------------------------------------------------------------------- 1 | { 2 | "version": 0 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/wallet-bip44-transactions-verbose.golden: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/wallet-bip44-transactions.golden: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/wallet-deterministic-transactions-verbose.golden: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/wallet-deterministic-transactions.golden: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/wallet-xpub-transactions-verbose.golden: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/api/integration/testdata/wallet-xpub-transactions.golden: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/1111bad: -------------------------------------------------------------------------------- 1 | 1111~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/1111x: -------------------------------------------------------------------------------- 1 | 1111x 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/29e2dcfbb16f63bb0254df7585a15bb6fb5e927d-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/5ba93c9db0cff93f52b521d7420e43f6eda2784f-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/7722745105e9e02e8f1aaf17f7b3aac5c56cd805-4: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/8696cf0f4655636cc93c566c1be2dad311da646c-7: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/9069ca78e7450a285173431b3e52c5c25299e473-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/979280a6ddd4c774e8f1747337ee9a95b0a8a515-3: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/990f38b139e8a5d4b80012947e7512c6fc32c58b-2: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/a0b42fa23623c8d15ac8477d74c13d5299ac8461-1: -------------------------------------------------------------------------------- 1 | 8ZxXGpoYtbaJ5UPYnVLNmw2BHS -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/a770e927c71c77a0a9ba32e12cd7eae07148f0e7-6: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/abcd: -------------------------------------------------------------------------------- 1 | abcd 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/b6589fc6ab0dc82cf12099d1c2d40ab994e8410c: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/da39a3ee5e6b4b0d3255bfef95601890afd80709-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/da6ce8d669450d7c33af7d22a55b97e3b7123734-1: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/ec541f6dcf03854cc36fb729db91fb04e6421ea0-2: -------------------------------------------------------------------------------- 1 | 51 -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/test1: -------------------------------------------------------------------------------- 1 | 1111 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/test2: -------------------------------------------------------------------------------- 1 | rRfsgEUCTgk3AZcoYCRmS5Rinadrw8LAp6 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/base58/internal/corpus/test3: -------------------------------------------------------------------------------- 1 | 2WBKTdT58ZxXGpoYtbaJ5UPYnVLNmw2BHSH 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/encoder/internal/corpus/9069ca78e7450a285173431b3e52c5c25299e473: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cipher/encoder/internal/corpus/da39a3ee5e6b4b0d3255bfef95601890afd80709: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cli/integration/testdata/last-blocks0.golden: -------------------------------------------------------------------------------- 1 | { 2 | "blocks": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/cli/integration/testdata/wallet-history.golden: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/consensus/example/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/consensus/public_broadcast_channel/public_broadcast_channel.go: -------------------------------------------------------------------------------- 1 | //nolint 2 | package public_broadcast_channel 3 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/daemon/testdata/get-peers-msg.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/daemon/testdata/ping-msg.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/daemon/testdata/pong-msg.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-backup-dialog/hw-backup-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-change-pin-dialog/hw-change-pin-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-confirm-tx-dialog/hw-confirm-tx-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-pin-help-dialog/hw-pin-help-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-remove-pin-dialog/hw-remove-pin-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-update-alert-dialog/hw-update-alert-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/layout/hardware-wallet/hw-wipe-dialog/hw-wipe-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/app/components/pages/transaction-list/transaction-detail/transaction-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/gui/static/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/kvstorage/testdata/empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/skycoin/testdata/no-version.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/src/visor/testdata/data.db.garbage: -------------------------------------------------------------------------------- 1 | ....garbage file to cause bolt DB error.... 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/rs/cors/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rs/cors 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/afero 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/spf13/jwalterweatherman/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/jwalterweatherman 2 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/urfave/cli/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/SkycoinProject/skycoin/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_386.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_arm.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_linux.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_s390x.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bolt_windows.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/boltsync_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/boltsync_unix.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/bucket.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/cursor.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/db.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/doc.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/errors.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/freelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/freelist.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/node.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/page.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/boltdb/bolt/tx.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/cenkalti/backoff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/cenkalti/backoff/backoff.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/cenkalti/backoff/context.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/cenkalti/backoff/retry.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/cenkalti/backoff/ticker.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/tries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/cenkalti/backoff/tries.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/fibercrypto/skywallet-go/VERSION: -------------------------------------------------------------------------------- 1 | v2.0.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/fibercrypto/skywallet-go/src/cli/integration/empty.go: -------------------------------------------------------------------------------- 1 | package integration 2 | -------------------------------------------------------------------------------- /vendor/github.com/fibercrypto/skywallet-go/src/usb/lowlevel/libusb/c/version_nano.h: -------------------------------------------------------------------------------- 1 | #define LIBUSB_NANO 11182 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/mgutz/ansi/print.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/cpuinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/cpuinfo.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/crypto.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/meminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/meminfo.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/net_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/net_dev.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/proc_io.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_ns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/proc_ns.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/prometheus/procfs/xfrm.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/rs/cors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/rs/cors/cors.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/rs/cors/utils.go -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/shopspring/decimal/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/conversions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/testify/LICENCE.txt -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/zsys_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv6/zsys_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/nettest/nettest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/nettest/nettest.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/netutil/listen_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkasm_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/mkasm_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibercrypto/fibercryptowallet/HEAD/vendor/golang.org/x/sys/windows/syscall.go --------------------------------------------------------------------------------