├── .gitignore ├── LICENSE ├── README.md ├── neo-gui.sln └── neo-gui ├── App.config ├── BigDecimal.cs ├── Cryptography ├── CertificateQueryResult.cs ├── CertificateQueryResultType.cs └── CertificateQueryService.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.cs ├── Settings.settings ├── Strings.Designer.cs ├── Strings.es-Es.resx ├── Strings.resx └── Strings.zh-Hans.resx ├── Resources ├── Onchain Certification Authority.cer ├── add.png ├── add2.png ├── remark.png ├── remove.png ├── search.png └── update.bat ├── UI ├── AssetRegisterDialog.Designer.cs ├── AssetRegisterDialog.cs ├── AssetRegisterDialog.es-ES.resx ├── AssetRegisterDialog.resx ├── AssetRegisterDialog.zh-Hans.resx ├── BulkPayDialog.Designer.cs ├── BulkPayDialog.cs ├── BulkPayDialog.es-ES.resx ├── BulkPayDialog.resx ├── BulkPayDialog.zh-Hans.resx ├── CertificateRequestWizard.Designer.cs ├── CertificateRequestWizard.cs ├── CertificateRequestWizard.es-ES.resx ├── CertificateRequestWizard.resx ├── CertificateRequestWizard.zh-Hans.resx ├── ChangePasswordDialog.Designer.cs ├── ChangePasswordDialog.cs ├── ChangePasswordDialog.es-ES.resx ├── ChangePasswordDialog.resx ├── ChangePasswordDialog.zh-Hans.resx ├── ClaimForm.Designer.cs ├── ClaimForm.cs ├── ClaimForm.es-ES.resx ├── ClaimForm.resx ├── ClaimForm.zh-Hans.resx ├── ContractDetailsDialog.Designer.cs ├── ContractDetailsDialog.cs ├── ContractDetailsDialog.es-ES.resx ├── ContractDetailsDialog.resx ├── ContractDetailsDialog.zh-Hans.resx ├── CreateLockAccountDialog.cs ├── CreateLockAccountDialog.designer.cs ├── CreateLockAccountDialog.es-ES.resx ├── CreateLockAccountDialog.resx ├── CreateLockAccountDialog.zh-Hans.resx ├── CreateMultiSigContractDialog.Designer.cs ├── CreateMultiSigContractDialog.cs ├── CreateMultiSigContractDialog.es-ES.resx ├── CreateMultiSigContractDialog.resx ├── CreateMultiSigContractDialog.zh-Hans.resx ├── CreateWalletDialog.cs ├── CreateWalletDialog.designer.cs ├── CreateWalletDialog.es-ES.resx ├── CreateWalletDialog.resx ├── CreateWalletDialog.zh-Hans.resx ├── DeployContractDialog.Designer.cs ├── DeployContractDialog.cs ├── DeployContractDialog.es-ES.resx ├── DeployContractDialog.resx ├── DeployContractDialog.zh-Hans.resx ├── DeveloperToolsForm.ContractParameters.cs ├── DeveloperToolsForm.Designer.cs ├── DeveloperToolsForm.TxBuilder.cs ├── DeveloperToolsForm.cs ├── DeveloperToolsForm.es-ES.resx ├── DeveloperToolsForm.resx ├── DeveloperToolsForm.zh-Hans.resx ├── ElectionDialog.Designer.cs ├── ElectionDialog.cs ├── ElectionDialog.es-ES.resx ├── ElectionDialog.resx ├── ElectionDialog.zh-Hans.resx ├── Helper.cs ├── ImportCustomContractDialog.Designer.cs ├── ImportCustomContractDialog.cs ├── ImportCustomContractDialog.es-ES.resx ├── ImportCustomContractDialog.resx ├── ImportCustomContractDialog.zh-Hans.resx ├── ImportPrivateKeyDialog.cs ├── ImportPrivateKeyDialog.designer.cs ├── ImportPrivateKeyDialog.es-ES.resx ├── ImportPrivateKeyDialog.resx ├── ImportPrivateKeyDialog.zh-Hans.resx ├── InformationBox.Designer.cs ├── InformationBox.cs ├── InformationBox.es-ES.resx ├── InformationBox.resx ├── InformationBox.zh-Hans.resx ├── InputBox.Designer.cs ├── InputBox.cs ├── InputBox.es-ES.resx ├── InputBox.resx ├── InputBox.zh-Hans.resx ├── InvokeContractDialog.Designer.cs ├── InvokeContractDialog.cs ├── InvokeContractDialog.es-ES.resx ├── InvokeContractDialog.resx ├── InvokeContractDialog.zh-Hans.resx ├── InvokeContractParameterEditor.Designer.cs ├── InvokeContractParameterEditor.cs ├── InvokeContractParameterEditor.resx ├── IssueDialog.Designer.cs ├── IssueDialog.cs ├── IssueDialog.es-ES.resx ├── IssueDialog.resx ├── IssueDialog.zh-Hans.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.es-ES.resx ├── MainForm.resx ├── MainForm.zh-Hans.resx ├── OpenWalletDialog.cs ├── OpenWalletDialog.designer.cs ├── OpenWalletDialog.es-ES.resx ├── OpenWalletDialog.resx ├── OpenWalletDialog.zh-Hans.resx ├── OptionsDialog.Designer.cs ├── OptionsDialog.cs ├── OptionsDialog.es-ES.resx ├── OptionsDialog.resx ├── OptionsDialog.zh-Hans.resx ├── ParametersEditor.Designer.cs ├── ParametersEditor.cs ├── ParametersEditor.es-ES.resx ├── ParametersEditor.resx ├── ParametersEditor.zh-Hans.resx ├── PayToDialog.Designer.cs ├── PayToDialog.cs ├── PayToDialog.es-ES.resx ├── PayToDialog.resx ├── PayToDialog.zh-Hans.resx ├── SelectCertificateDialog.Designer.cs ├── SelectCertificateDialog.cs ├── SelectCertificateDialog.es-ES.resx ├── SelectCertificateDialog.resx ├── SelectCertificateDialog.zh-Hans.resx ├── SigningDialog.Designer.cs ├── SigningDialog.cs ├── SigningDialog.es-ES.resx ├── SigningDialog.resx ├── SigningDialog.zh-Hans.resx ├── SmartContractList.Designer.cs ├── SmartContractList.cs ├── SmartContractList.resx ├── TradeForm.Designer.cs ├── TradeForm.cs ├── TradeForm.es-ES.resx ├── TradeForm.resx ├── TradeForm.zh-Hans.resx ├── TradeVerificationDialog.Designer.cs ├── TradeVerificationDialog.cs ├── TradeVerificationDialog.es-ES.resx ├── TradeVerificationDialog.resx ├── TradeVerificationDialog.zh-Hans.resx ├── TransferDialog.Designer.cs ├── TransferDialog.cs ├── TransferDialog.es-ES.resx ├── TransferDialog.resx ├── TransferDialog.zh-Hans.resx ├── TxOutListBox.Designer.cs ├── TxOutListBox.cs ├── TxOutListBox.resx ├── TxOutListBoxItem.cs ├── UpdateDialog.Designer.cs ├── UpdateDialog.cs ├── UpdateDialog.es-ES.resx ├── UpdateDialog.resx ├── UpdateDialog.zh-Hans.resx ├── ViewContractDialog.Designer.cs ├── ViewContractDialog.cs ├── ViewContractDialog.es-ES.resx ├── ViewContractDialog.resx ├── ViewContractDialog.zh-Hans.resx ├── ViewPrivateKeyDialog.cs ├── ViewPrivateKeyDialog.designer.cs ├── ViewPrivateKeyDialog.es-ES.resx ├── ViewPrivateKeyDialog.resx ├── ViewPrivateKeyDialog.zh-Hans.resx ├── VotingDialog.Designer.cs ├── VotingDialog.cs ├── VotingDialog.es-ES.resx ├── VotingDialog.resx ├── VotingDialog.zh-Hans.resx └── Wrappers │ ├── ClaimTransactionWrapper.cs │ ├── CoinReferenceWrapper.cs │ ├── ContractTransactionWrapper.cs │ ├── Fixed8Converter.cs │ ├── HexConverter.cs │ ├── InvocationTransactionWrapper.cs │ ├── IssueTransactionWrapper.cs │ ├── ScriptEditor.cs │ ├── TransactionAttributeWrapper.cs │ ├── TransactionOutputWrapper.cs │ ├── TransactionWrapper.cs │ ├── UIntBaseConverter.cs │ └── WitnessWrapper.cs ├── config.json ├── config.mainnet.json ├── config.neodocker.json ├── config.testnet.json ├── logo.ico ├── neo-gui.csproj ├── packages.config ├── protocol.json ├── protocol.mainnet.json ├── protocol.neodocker.json ├── protocol.testnet.json ├── x64 └── libleveldb.dll └── x86 └── libleveldb.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/README.md -------------------------------------------------------------------------------- /neo-gui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui.sln -------------------------------------------------------------------------------- /neo-gui/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/App.config -------------------------------------------------------------------------------- /neo-gui/BigDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/BigDecimal.cs -------------------------------------------------------------------------------- /neo-gui/Cryptography/CertificateQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Cryptography/CertificateQueryResult.cs -------------------------------------------------------------------------------- /neo-gui/Cryptography/CertificateQueryResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Cryptography/CertificateQueryResultType.cs -------------------------------------------------------------------------------- /neo-gui/Cryptography/CertificateQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Cryptography/CertificateQueryService.cs -------------------------------------------------------------------------------- /neo-gui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Program.cs -------------------------------------------------------------------------------- /neo-gui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /neo-gui/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /neo-gui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Resources.resx -------------------------------------------------------------------------------- /neo-gui/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /neo-gui/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Settings.cs -------------------------------------------------------------------------------- /neo-gui/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Settings.settings -------------------------------------------------------------------------------- /neo-gui/Properties/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Strings.Designer.cs -------------------------------------------------------------------------------- /neo-gui/Properties/Strings.es-Es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Strings.es-Es.resx -------------------------------------------------------------------------------- /neo-gui/Properties/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Strings.resx -------------------------------------------------------------------------------- /neo-gui/Properties/Strings.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Properties/Strings.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/Resources/Onchain Certification Authority.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/Onchain Certification Authority.cer -------------------------------------------------------------------------------- /neo-gui/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/add.png -------------------------------------------------------------------------------- /neo-gui/Resources/add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/add2.png -------------------------------------------------------------------------------- /neo-gui/Resources/remark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/remark.png -------------------------------------------------------------------------------- /neo-gui/Resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/remove.png -------------------------------------------------------------------------------- /neo-gui/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/search.png -------------------------------------------------------------------------------- /neo-gui/Resources/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/Resources/update.bat -------------------------------------------------------------------------------- /neo-gui/UI/AssetRegisterDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/AssetRegisterDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/AssetRegisterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/AssetRegisterDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/AssetRegisterDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/AssetRegisterDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/AssetRegisterDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/AssetRegisterDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/AssetRegisterDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/AssetRegisterDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/BulkPayDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/BulkPayDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/BulkPayDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/BulkPayDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/BulkPayDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/BulkPayDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/BulkPayDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/BulkPayDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/BulkPayDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/BulkPayDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/CertificateRequestWizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CertificateRequestWizard.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/CertificateRequestWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CertificateRequestWizard.cs -------------------------------------------------------------------------------- /neo-gui/UI/CertificateRequestWizard.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CertificateRequestWizard.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/CertificateRequestWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CertificateRequestWizard.resx -------------------------------------------------------------------------------- /neo-gui/UI/CertificateRequestWizard.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CertificateRequestWizard.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ChangePasswordDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ChangePasswordDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ChangePasswordDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ChangePasswordDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ChangePasswordDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ChangePasswordDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ChangePasswordDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ChangePasswordDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ChangePasswordDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ChangePasswordDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ClaimForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ClaimForm.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ClaimForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ClaimForm.cs -------------------------------------------------------------------------------- /neo-gui/UI/ClaimForm.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ClaimForm.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ClaimForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ClaimForm.resx -------------------------------------------------------------------------------- /neo-gui/UI/ClaimForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ClaimForm.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ContractDetailsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ContractDetailsDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ContractDetailsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ContractDetailsDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ContractDetailsDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ContractDetailsDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ContractDetailsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ContractDetailsDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ContractDetailsDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ContractDetailsDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateLockAccountDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateLockAccountDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/CreateLockAccountDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateLockAccountDialog.designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/CreateLockAccountDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateLockAccountDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateLockAccountDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateLockAccountDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateLockAccountDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateLockAccountDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateMultiSigContractDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateMultiSigContractDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/CreateMultiSigContractDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateMultiSigContractDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/CreateMultiSigContractDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateMultiSigContractDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateMultiSigContractDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateMultiSigContractDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateMultiSigContractDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateMultiSigContractDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateWalletDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateWalletDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/CreateWalletDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateWalletDialog.designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/CreateWalletDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateWalletDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateWalletDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateWalletDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/CreateWalletDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/CreateWalletDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/DeployContractDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeployContractDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/DeployContractDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeployContractDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/DeployContractDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeployContractDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/DeployContractDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeployContractDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/DeployContractDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeployContractDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.ContractParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.ContractParameters.cs -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.TxBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.TxBuilder.cs -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.cs -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.resx -------------------------------------------------------------------------------- /neo-gui/UI/DeveloperToolsForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/DeveloperToolsForm.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ElectionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ElectionDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ElectionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ElectionDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ElectionDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ElectionDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ElectionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ElectionDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ElectionDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ElectionDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Helper.cs -------------------------------------------------------------------------------- /neo-gui/UI/ImportCustomContractDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportCustomContractDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ImportCustomContractDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportCustomContractDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ImportCustomContractDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportCustomContractDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ImportCustomContractDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportCustomContractDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ImportCustomContractDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportCustomContractDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ImportPrivateKeyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportPrivateKeyDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ImportPrivateKeyDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportPrivateKeyDialog.designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ImportPrivateKeyDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportPrivateKeyDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ImportPrivateKeyDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportPrivateKeyDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ImportPrivateKeyDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ImportPrivateKeyDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/InformationBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InformationBox.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/InformationBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InformationBox.cs -------------------------------------------------------------------------------- /neo-gui/UI/InformationBox.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InformationBox.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/InformationBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InformationBox.resx -------------------------------------------------------------------------------- /neo-gui/UI/InformationBox.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InformationBox.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/InputBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InputBox.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InputBox.cs -------------------------------------------------------------------------------- /neo-gui/UI/InputBox.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InputBox.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/InputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InputBox.resx -------------------------------------------------------------------------------- /neo-gui/UI/InputBox.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InputBox.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractParameterEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractParameterEditor.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractParameterEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractParameterEditor.cs -------------------------------------------------------------------------------- /neo-gui/UI/InvokeContractParameterEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/InvokeContractParameterEditor.resx -------------------------------------------------------------------------------- /neo-gui/UI/IssueDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/IssueDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/IssueDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/IssueDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/IssueDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/IssueDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/IssueDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/IssueDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/IssueDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/IssueDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/MainForm.cs -------------------------------------------------------------------------------- /neo-gui/UI/MainForm.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/MainForm.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/MainForm.resx -------------------------------------------------------------------------------- /neo-gui/UI/MainForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/MainForm.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/OpenWalletDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OpenWalletDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/OpenWalletDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OpenWalletDialog.designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/OpenWalletDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OpenWalletDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/OpenWalletDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OpenWalletDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/OpenWalletDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OpenWalletDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/OptionsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OptionsDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/OptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OptionsDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/OptionsDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OptionsDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/OptionsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OptionsDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/OptionsDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/OptionsDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ParametersEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ParametersEditor.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ParametersEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ParametersEditor.cs -------------------------------------------------------------------------------- /neo-gui/UI/ParametersEditor.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ParametersEditor.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ParametersEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ParametersEditor.resx -------------------------------------------------------------------------------- /neo-gui/UI/ParametersEditor.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ParametersEditor.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/PayToDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/PayToDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/PayToDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/PayToDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/PayToDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/PayToDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/PayToDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/PayToDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/PayToDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/PayToDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/SelectCertificateDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SelectCertificateDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/SelectCertificateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SelectCertificateDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/SelectCertificateDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SelectCertificateDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/SelectCertificateDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SelectCertificateDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/SelectCertificateDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SelectCertificateDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/SigningDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SigningDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/SigningDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SigningDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/SigningDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SigningDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/SigningDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SigningDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/SigningDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SigningDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/SmartContractList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SmartContractList.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/SmartContractList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SmartContractList.cs -------------------------------------------------------------------------------- /neo-gui/UI/SmartContractList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/SmartContractList.resx -------------------------------------------------------------------------------- /neo-gui/UI/TradeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeForm.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/TradeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeForm.cs -------------------------------------------------------------------------------- /neo-gui/UI/TradeForm.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeForm.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/TradeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeForm.resx -------------------------------------------------------------------------------- /neo-gui/UI/TradeForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeForm.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/TradeVerificationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeVerificationDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/TradeVerificationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeVerificationDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/TradeVerificationDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeVerificationDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/TradeVerificationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeVerificationDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/TradeVerificationDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TradeVerificationDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/TransferDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TransferDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/TransferDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TransferDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/TransferDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TransferDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/TransferDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TransferDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/TransferDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TransferDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/TxOutListBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TxOutListBox.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/TxOutListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TxOutListBox.cs -------------------------------------------------------------------------------- /neo-gui/UI/TxOutListBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TxOutListBox.resx -------------------------------------------------------------------------------- /neo-gui/UI/TxOutListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/TxOutListBoxItem.cs -------------------------------------------------------------------------------- /neo-gui/UI/UpdateDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/UpdateDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/UpdateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/UpdateDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/UpdateDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/UpdateDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/UpdateDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/UpdateDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/UpdateDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/UpdateDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ViewContractDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewContractDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ViewContractDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewContractDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ViewContractDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewContractDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ViewContractDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewContractDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ViewContractDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewContractDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/ViewPrivateKeyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewPrivateKeyDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/ViewPrivateKeyDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewPrivateKeyDialog.designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/ViewPrivateKeyDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewPrivateKeyDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/ViewPrivateKeyDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewPrivateKeyDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/ViewPrivateKeyDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/ViewPrivateKeyDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/VotingDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/VotingDialog.Designer.cs -------------------------------------------------------------------------------- /neo-gui/UI/VotingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/VotingDialog.cs -------------------------------------------------------------------------------- /neo-gui/UI/VotingDialog.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/VotingDialog.es-ES.resx -------------------------------------------------------------------------------- /neo-gui/UI/VotingDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/VotingDialog.resx -------------------------------------------------------------------------------- /neo-gui/UI/VotingDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/VotingDialog.zh-Hans.resx -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/ClaimTransactionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/ClaimTransactionWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/CoinReferenceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/CoinReferenceWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/ContractTransactionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/ContractTransactionWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/Fixed8Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/Fixed8Converter.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/HexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/HexConverter.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/InvocationTransactionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/InvocationTransactionWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/IssueTransactionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/IssueTransactionWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/ScriptEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/ScriptEditor.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/TransactionAttributeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/TransactionAttributeWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/TransactionOutputWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/TransactionOutputWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/TransactionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/TransactionWrapper.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/UIntBaseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/UIntBaseConverter.cs -------------------------------------------------------------------------------- /neo-gui/UI/Wrappers/WitnessWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/UI/Wrappers/WitnessWrapper.cs -------------------------------------------------------------------------------- /neo-gui/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/config.json -------------------------------------------------------------------------------- /neo-gui/config.mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/config.mainnet.json -------------------------------------------------------------------------------- /neo-gui/config.neodocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/config.neodocker.json -------------------------------------------------------------------------------- /neo-gui/config.testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/config.testnet.json -------------------------------------------------------------------------------- /neo-gui/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/logo.ico -------------------------------------------------------------------------------- /neo-gui/neo-gui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/neo-gui.csproj -------------------------------------------------------------------------------- /neo-gui/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/packages.config -------------------------------------------------------------------------------- /neo-gui/protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/protocol.json -------------------------------------------------------------------------------- /neo-gui/protocol.mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/protocol.mainnet.json -------------------------------------------------------------------------------- /neo-gui/protocol.neodocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/protocol.neodocker.json -------------------------------------------------------------------------------- /neo-gui/protocol.testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/protocol.testnet.json -------------------------------------------------------------------------------- /neo-gui/x64/libleveldb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/x64/libleveldb.dll -------------------------------------------------------------------------------- /neo-gui/x86/libleveldb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CityOfZion/neo-gui-developer/HEAD/neo-gui/x86/libleveldb.dll --------------------------------------------------------------------------------