├── .github └── workflows │ ├── build.yml │ ├── pr-deploy.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.MD ├── GitVersion.yml ├── LICENSE ├── README.md ├── docker ├── angor-app │ ├── docker-compose.yml │ └── readme.md ├── explorers │ ├── angornet │ │ ├── docker-compose.yml │ │ └── electrs.conf │ └── mainnet │ │ ├── docker-compose.yml │ │ └── electrs.conf ├── proxy │ ├── docker-compose.yml │ ├── nginx.conf │ └── readme.md ├── readme.md └── relays │ ├── docker-compose.yml │ └── strfry.conf ├── global.json ├── package.json ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json └── src ├── .dockerignore ├── .gitignore ├── Angor.Test ├── Angor.Test.csproj ├── DataBuilders │ ├── AngorScripts.cs │ ├── InvestmentOperations.cs │ ├── ProjectOperations.cs │ └── ScriptBuilder.cs ├── DerivationOperationsTest.cs ├── InvestmentOperationsTest.cs ├── ProjectIdentifierDerivationTests.cs ├── Protocol │ ├── AngorTestData.cs │ ├── FounderTransactionActionTest.cs │ ├── InvestmentIntegrationsTests.cs │ ├── Scripts │ │ └── ProjectScriptsBuilderTest.cs │ ├── SeederTransactionActionsTest.cs │ └── TransactionBuilders │ │ ├── InvestmentTransactionBuilderTest.cs │ │ └── SpendingTransactionBuilderTest.cs ├── PsbtOperationsTests.cs ├── ScriptTest.cs ├── ScriptThresholdTest.cs ├── Services │ ├── IndexerComparisonTests.cs │ └── TestSignService.cs ├── TransactionValidation.cs ├── Usings.cs └── WalletOperationsTest.cs ├── Angor.sln ├── Angor ├── Avalonia │ ├── .gitignore │ ├── Angor.Avalonia.sln │ ├── Angor.Contexts.CrossCutting │ │ ├── Angor.Contexts.CrossCutting.csproj │ │ ├── DerivedProjectKeys.cs │ │ ├── IApplicationStorage.cs │ │ ├── ISeedwordsProvider.cs │ │ ├── IStore.cs │ │ ├── IWalletAccountBalanceService.cs │ │ ├── IntegrationExtensions.cs │ │ ├── NetworkConfiguration.cs │ │ ├── NetworkStorage.cs │ │ ├── NostrQueryClient.cs │ │ ├── ObservableExtensions.cs │ │ ├── ProfileContext.cs │ │ ├── WalletAccountBalanceInfo.cs │ │ ├── WalletAccountBalanceService.cs │ │ └── WalletId.cs │ ├── Angor.Contexts.Funding.Tests │ │ ├── Angor.Contexts.Funding.Tests.csproj │ │ ├── InvestmentAppServiceTests.cs │ │ ├── Investor │ │ │ └── Operations │ │ │ │ └── GetPenaltiesTests.cs │ │ ├── NostrDecrypterTests.cs │ │ ├── NostrQueryClientTests.cs │ │ ├── ProjectAppServiceTests.cs │ │ └── TestDoubles │ │ │ └── TestingSeedwordsProvider.cs │ ├── Angor.Contexts.Funding │ │ ├── Angor.Contexts.Funding.csproj │ │ ├── Founder │ │ │ ├── Domain │ │ │ │ ├── Investment.cs │ │ │ │ ├── InvestmentRequest.cs │ │ │ │ └── SignatureReleaseItem.cs │ │ │ ├── Dtos │ │ │ │ ├── ClaimStatus.cs │ │ │ │ ├── ClaimableTransactionDto.cs │ │ │ │ ├── InvestorStatsDto.cs │ │ │ │ ├── ReleaseableTransactionDto.cs │ │ │ │ └── SpendTransactionDto.cs │ │ │ ├── FounderAppService.cs │ │ │ ├── IFounderAppService.cs │ │ │ ├── InvestmentStatus.cs │ │ │ └── Operations │ │ │ │ ├── ApproveInvestment.cs │ │ │ │ ├── CreateProject.cs │ │ │ │ ├── GetClaimableTransactions.cs │ │ │ │ ├── GetFounderProjects.cs │ │ │ │ ├── GetInvestments.cs │ │ │ │ ├── GetReleaseableTransactions.cs │ │ │ │ ├── ReleaseInvestorTransaction.cs │ │ │ │ └── SpendInvestorTransaction.cs │ │ ├── FundingContextServices.cs │ │ ├── Investor │ │ │ ├── Domain │ │ │ │ ├── IPortfolioService.cs │ │ │ │ ├── InvestmentRecord.cs │ │ │ │ ├── InvestmentRecords.cs │ │ │ │ ├── InvestmentRecordsDocument.cs │ │ │ │ └── PortfolioService.cs │ │ │ ├── Dtos │ │ │ │ ├── InvestmentDto.cs │ │ │ │ ├── InvestorProjectRecoveryDto.cs │ │ │ │ ├── InvestorStageItemDto.cs │ │ │ │ └── PenaltiesDto.cs │ │ │ ├── IInvestmentAppService.cs │ │ │ ├── InvestedProjectDto.cs │ │ │ ├── InvestmentAppService.cs │ │ │ └── Operations │ │ │ │ ├── CancelInvestmentSignatures.cs │ │ │ │ ├── CheckPenaltyThreshold.cs │ │ │ │ ├── ClaimEndOfProject.cs │ │ │ │ ├── CreateInvestment.cs │ │ │ │ ├── GetInvestorProjectRecovery.cs │ │ │ │ ├── GetPenalties.cs │ │ │ │ ├── Investments.cs │ │ │ │ ├── PublishInvestment.cs │ │ │ │ ├── RecoverFunds.cs │ │ │ │ ├── ReleaseFunds.cs │ │ │ │ └── RequestInvestmentSignatures.cs │ │ ├── Projects │ │ │ ├── Application │ │ │ │ └── Dtos │ │ │ │ │ ├── CreateProjectDto.cs │ │ │ │ │ ├── NextStageDto.cs │ │ │ │ │ ├── ProjectDto.cs │ │ │ │ │ ├── ProjectStatisticsDto.cs │ │ │ │ │ └── StageDto.cs │ │ │ ├── Domain │ │ │ │ ├── Investment.cs │ │ │ │ ├── InvestmentSpendingLookup.cs │ │ │ │ ├── Project.cs │ │ │ │ ├── Stage.cs │ │ │ │ ├── StageData.cs │ │ │ │ ├── StageDataTrx.cs │ │ │ │ └── TransactionHexDocument.cs │ │ │ ├── Infrastructure │ │ │ │ ├── Impl │ │ │ │ │ ├── EncryptionService.cs │ │ │ │ │ ├── ProjectAppService.cs │ │ │ │ │ ├── ProjectExtensions.cs │ │ │ │ │ └── ProjectInvestmentsService.cs │ │ │ │ └── Interfaces │ │ │ │ │ ├── IProjectAppService.cs │ │ │ │ │ └── IProjectInvestmentsService.cs │ │ │ └── Operations │ │ │ │ └── ProjectStatistics.cs │ │ ├── Services │ │ │ ├── DocumentProjectService.cs │ │ │ ├── IInvestmentHandshakeService.cs │ │ │ ├── IProjectService.cs │ │ │ ├── ITransactionService.cs │ │ │ ├── InvestmentHandshakeService.cs │ │ │ ├── ProjectService.cs │ │ │ └── TransactionService.cs │ │ └── Shared │ │ │ ├── Amount.cs │ │ │ ├── DirectMessage.cs │ │ │ ├── DomainFeerate.cs │ │ │ ├── INostrDecrypter.cs │ │ │ ├── ISignatureRequestService.cs │ │ │ ├── InvestmentHandshake.cs │ │ │ ├── InvestmentRequestStatus.cs │ │ │ ├── NostrDecrypter.cs │ │ │ ├── ProjectId.cs │ │ │ ├── PublishTransaction.cs │ │ │ ├── TransactionDraft.cs │ │ │ ├── TransactionDrafts │ │ │ ├── EndOfProjectTransactionDraft.cs │ │ │ ├── InvestmentDraft.cs │ │ │ ├── RecoveryTransactionDraft.cs │ │ │ └── ReleaseTransactionDraft.cs │ │ │ └── WalletRequest.cs │ ├── Angor.Contexts.Integration.WalletFunding │ │ ├── Angor.Contexts.Integration.WalletFunding.csproj │ │ └── SeedwordsProvider.cs │ ├── Angor.Contexts.Wallet.Tests │ │ ├── Angor.Contexts.Wallet.Tests.csproj │ │ └── Infrastructure │ │ │ ├── TestDoubles │ │ │ ├── TestFactory.cs │ │ │ ├── TestSecurityContext.cs │ │ │ └── TestSensitiveWalletDataProvider.cs │ │ │ ├── TransactionHistoryServiceTests.cs │ │ │ └── WalletAppServiceTests.cs │ ├── Angor.Contexts.Wallet │ │ ├── Angor.Contexts.Wallet.csproj │ │ ├── Application │ │ │ ├── IWalletAppService.cs │ │ │ └── WalletMetadata.cs │ │ ├── Domain │ │ │ ├── Address.cs │ │ │ ├── Amount.cs │ │ │ ├── Balance.cs │ │ │ ├── BitcoinNetwork.cs │ │ │ ├── BroadcastedTransaction.cs │ │ │ ├── BroadcastedTransactionExtensions.cs │ │ │ ├── DerivationPath.cs │ │ │ ├── DerivationType.cs │ │ │ ├── DomainException.cs │ │ │ ├── DomainFeeRate.cs │ │ │ ├── DomainScriptType.cs │ │ │ ├── FeeAndSize.cs │ │ │ ├── TransactionInput.cs │ │ │ ├── TransactionOutput.cs │ │ │ ├── TxId.cs │ │ │ ├── Wallet.cs │ │ │ ├── WalletDescriptor.cs │ │ │ ├── XPub.cs │ │ │ └── XPubCollection.cs │ │ ├── Infrastructure │ │ │ ├── Dto │ │ │ │ ├── DerivationPathDto.cs │ │ │ │ ├── WalletDescriptorDto.cs │ │ │ │ └── XPubDto.cs │ │ │ ├── Impl │ │ │ │ ├── AesWalletEncryption.cs │ │ │ │ ├── EncryptedWallet.cs │ │ │ │ ├── FileStore.cs │ │ │ │ ├── History │ │ │ │ │ ├── ITransactionHistory.cs │ │ │ │ │ ├── QueryAddressItem.cs │ │ │ │ │ └── TransactionHistory.cs │ │ │ │ ├── InMemoryStore.cs │ │ │ │ ├── MappingExtensions.cs │ │ │ │ ├── NetworkExtensions.cs │ │ │ │ ├── SensitiveWalletDataProvider.cs │ │ │ │ ├── WalletAppService.cs │ │ │ │ ├── WalletData.cs │ │ │ │ ├── WalletDescriptorFactory.cs │ │ │ │ ├── WalletFactory.cs │ │ │ │ ├── WalletSecurityContext.cs │ │ │ │ └── WalletStore.cs │ │ │ └── Interfaces │ │ │ │ ├── IPassphraseProvider.cs │ │ │ │ ├── IPasswordProvider.cs │ │ │ │ ├── ISensitiveWalletDataProvider.cs │ │ │ │ ├── IWalletEncryption.cs │ │ │ │ ├── IWalletImporter.cs │ │ │ │ ├── IWalletSecurityContext.cs │ │ │ │ └── IWalletStore.cs │ │ └── WalletContextServices.cs │ ├── Angor.Data.Documents.LiteDb │ │ ├── Angor.Data.Documents.LiteDb.csproj │ │ ├── Extensions │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── LiteDbDocumentCollection.cs │ │ ├── LiteDbDocumentDatabase.cs │ │ ├── LiteDbDocumentDatabaseFactory.cs │ │ ├── LiteDbDocumentMapping.cs │ │ └── LiteDbGenericDocumentCollection.cs │ ├── Angor.Data.Documents │ │ ├── Angor.Data.Documents.csproj │ │ ├── Extensions │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── Interfaces │ │ │ ├── IAngorDocumentDatabase.cs │ │ │ ├── IAngorDocumentDatabaseFactory.cs │ │ │ ├── IDocumentCollection.cs │ │ │ ├── IDocumentRepository.cs │ │ │ └── IGenericDocumentCollection.cs │ │ └── Models │ │ │ ├── BaseDocument.cs │ │ │ └── Document.cs │ ├── AngorApp.Android │ │ ├── AngorApp.Android.csproj │ │ ├── Icon.png │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ └── AndroidManifest.xml │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── drawable-night-v31 │ │ │ └── avalonia_anim.xml │ │ │ ├── drawable-night │ │ │ └── icon.png │ │ │ ├── drawable-v31 │ │ │ └── avalonia_anim.xml │ │ │ ├── drawable │ │ │ ├── angor_icon.xml │ │ │ ├── angor_logo.xml │ │ │ ├── icon.png │ │ │ └── splash_screen.xml │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── AngorApp.Browser │ │ ├── AngorApp.Browser.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── launchSettings.json │ │ ├── runtimeconfig.template.json │ │ └── wwwroot │ │ │ ├── app.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── main.js │ ├── AngorApp.Desktop │ │ ├── AngorApp.Desktop.csproj │ │ ├── Program.cs │ │ ├── app.ico │ │ ├── app.manifest │ │ └── icon.ico │ ├── AngorApp.Model │ │ ├── Amounts │ │ │ ├── AmountFactory.cs │ │ │ ├── AmountUI.cs │ │ │ └── SendAmount.cs │ │ ├── AngorApp.Model.csproj │ │ ├── Common │ │ │ ├── LongTextViewModel.cs │ │ │ ├── RefreshableCollection.cs │ │ │ └── ResultViewModel.cs │ │ ├── Contracts │ │ │ ├── Amounts │ │ │ │ ├── IAmountFactory.cs │ │ │ │ └── IAmountUI.cs │ │ │ ├── Flows │ │ │ │ ├── ICreateProjectFlow.cs │ │ │ │ └── ISendMoneyFlow.cs │ │ │ ├── Projects │ │ │ │ ├── IFullProject.cs │ │ │ │ ├── IProject.cs │ │ │ │ ├── IStage.cs │ │ │ │ └── ProjectStatus.cs │ │ │ └── Wallet │ │ │ │ ├── IBroadcastedTransaction.cs │ │ │ │ ├── ITransactionPreview.cs │ │ │ │ ├── IWallet.cs │ │ │ │ ├── IWalletFactory.cs │ │ │ │ └── IWalletProvider.cs │ │ ├── GlobalUsings.cs │ │ ├── Projects │ │ │ ├── FullProject.cs │ │ │ ├── FullProjectExtensions.cs │ │ │ ├── Project.cs │ │ │ ├── Stage.cs │ │ │ └── StageSample.cs │ │ └── Wallet │ │ │ ├── BitcoinAddressValidator.cs │ │ │ ├── BroadcastedTransaction.cs │ │ │ ├── DialogPasswordProvider.cs │ │ │ ├── Password │ │ │ ├── IPasswordViewModel.cs │ │ │ ├── PassphraseProviderAdapter.cs │ │ │ ├── PasswordProviderAdapter.cs │ │ │ ├── PasswordViewModel.cs │ │ │ └── PasswordViewModelSample.cs │ │ │ ├── SeedWord.cs │ │ │ ├── Simple │ │ │ ├── SimpleWallet.cs │ │ │ └── SimpleWalletProvider.cs │ │ │ ├── TransactionDraft.cs │ │ │ └── WordList.cs │ ├── AngorApp.iOS │ │ ├── AngorApp.iOS.csproj │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ └── Resources │ │ │ └── LaunchScreen.xib │ ├── AngorApp │ │ ├── AngorApp.csproj │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── Assets │ │ │ ├── add.svg │ │ │ ├── angor-icon.svg │ │ │ ├── angor-logo.ico │ │ │ ├── avalonia-logo.ico │ │ │ ├── bitcoin.svg │ │ │ ├── browse.svg │ │ │ ├── btc.svg │ │ │ ├── claim.svg │ │ │ ├── clock-square.svg │ │ │ ├── community.png │ │ │ ├── flow.png │ │ │ ├── flow.svg │ │ │ ├── lock.svg │ │ │ ├── portfolio.svg │ │ │ ├── recovery.svg │ │ │ ├── settings.svg │ │ │ ├── stages.svg │ │ │ ├── unlock.svg │ │ │ ├── user.svg │ │ │ ├── view-project.svg │ │ │ └── wallet.svg │ │ ├── Composition │ │ │ ├── CompositionRoot.cs │ │ │ ├── LoggingConfigurator.cs │ │ │ ├── Registrations │ │ │ │ ├── Sections │ │ │ │ │ ├── DynamicContentSection.cs │ │ │ │ │ └── Sections.cs │ │ │ │ ├── Services │ │ │ │ │ ├── ModelServices.cs │ │ │ │ │ ├── Security.cs │ │ │ │ │ └── UIServicesRegistration.cs │ │ │ │ └── ViewModels │ │ │ │ │ └── ViewModels.cs │ │ │ └── UnhandledExceptionLogger.cs │ │ ├── Core │ │ │ ├── ApplicationStorage.cs │ │ │ ├── Constants.cs │ │ │ ├── Factories │ │ │ │ ├── IProjectInvestCommandFactory.cs │ │ │ │ ├── IProjectViewModelFactory.cs │ │ │ │ ├── ProjectInvestCommandFactory.cs │ │ │ │ └── ProjectViewModelFactory.cs │ │ │ ├── IHaveErrors.cs │ │ │ ├── ResultMaybeExtensions.cs │ │ │ ├── SafeMaybe.cs │ │ │ ├── SafeMaybeExtensions.cs │ │ │ └── SharedCommands.cs │ │ ├── Design │ │ │ ├── DesignTimeAmount.cs │ │ │ └── FeeCalculatorDesignTime.cs │ │ ├── GlobalUsings.cs │ │ ├── Localization │ │ │ └── HumanizerStrategies.cs │ │ └── UI │ │ │ ├── Flows │ │ │ ├── CreateProyect │ │ │ │ └── CreateProjectFlow.cs │ │ │ ├── Invest │ │ │ │ ├── Amount │ │ │ │ │ ├── AmountView.axaml │ │ │ │ │ ├── AmountView.axaml.cs │ │ │ │ │ ├── AmountViewModel.cs │ │ │ │ │ ├── AmountViewModelSample.cs │ │ │ │ │ ├── Breakdown.cs │ │ │ │ │ ├── IAmountViewModel.cs │ │ │ │ │ ├── StagesBreakdown.axaml │ │ │ │ │ └── StagesBreakdown.axaml.cs │ │ │ │ └── InvestFlow.cs │ │ │ └── SendWalletMoney │ │ │ │ ├── AddressAndAmount │ │ │ │ ├── AddressAndAmountView.axaml │ │ │ │ ├── AddressAndAmountView.axaml.cs │ │ │ │ ├── AddressAndAmountViewModel.cs │ │ │ │ ├── AddressAndAmountViewModelSample.cs │ │ │ │ └── IAddressAndAmountViewModel.cs │ │ │ │ ├── SendMoneyFlow.cs │ │ │ │ └── TransactionDraft │ │ │ │ ├── ITransactionDraftViewModel.cs │ │ │ │ ├── TransactionDraftView.axaml │ │ │ │ ├── TransactionDraftView.axaml.cs │ │ │ │ ├── TransactionDraftViewModel.cs │ │ │ │ └── TransactionDraftViewModelSample.cs │ │ │ ├── Sections │ │ │ ├── Browse │ │ │ │ ├── BrowseSectionView.axaml │ │ │ │ ├── BrowseSectionView.axaml.cs │ │ │ │ ├── BrowseSectionViewModel.cs │ │ │ │ ├── BrowseSectionViewModelSample.cs │ │ │ │ ├── Details │ │ │ │ │ ├── FullProjectSample.cs │ │ │ │ │ ├── INostrRelay.cs │ │ │ │ │ ├── IProjectDetailsViewModel.cs │ │ │ │ │ ├── InvestmentDashboard.axaml │ │ │ │ │ ├── InvestmentDashboard.axaml.cs │ │ │ │ │ ├── NostProperties.axaml │ │ │ │ │ ├── NostProperties.axaml.cs │ │ │ │ │ ├── NostrRelaySample.cs │ │ │ │ │ ├── ProjectDetailsView.axaml │ │ │ │ │ ├── ProjectDetailsView.axaml.cs │ │ │ │ │ ├── ProjectDetailsViewModel.cs │ │ │ │ │ ├── ProjectDetailsViewModelSample.cs │ │ │ │ │ ├── ProjectSummary.axaml │ │ │ │ │ ├── ProjectSummary.axaml.cs │ │ │ │ │ ├── Stage.cs │ │ │ │ │ ├── Stages.axaml │ │ │ │ │ └── Stages.axaml.cs │ │ │ │ ├── IBrowseSectionViewModel.cs │ │ │ │ ├── IProjectViewModel.cs │ │ │ │ ├── ProjectExtensions.cs │ │ │ │ ├── ProjectItemView.axaml │ │ │ │ ├── ProjectItemView.axaml.cs │ │ │ │ ├── ProjectLookup │ │ │ │ │ ├── IProjectLookupViewModel.cs │ │ │ │ │ ├── ProjectLookupView.axaml │ │ │ │ │ ├── ProjectLookupView.axaml.cs │ │ │ │ │ ├── ProjectLookupViewModel.cs │ │ │ │ │ └── ProjectLookupViewModelSample.cs │ │ │ │ ├── ProjectSample.cs │ │ │ │ ├── ProjectViewModel.cs │ │ │ │ ├── ProjectViewModelSample.cs │ │ │ │ ├── SampleData.cs │ │ │ │ └── TestNotificationService.cs │ │ │ ├── Founder │ │ │ │ ├── CreateProject │ │ │ │ │ ├── Common.axaml │ │ │ │ │ ├── CreateProjectView.axaml │ │ │ │ │ ├── CreateProjectView.axaml.cs │ │ │ │ │ ├── CreateProjectViewModel.cs │ │ │ │ │ ├── CreateProjectViewModelExtensions.cs │ │ │ │ │ ├── CreateProjectViewModelSample.cs │ │ │ │ │ ├── FundingStructure │ │ │ │ │ │ ├── ErrorSummarizer.cs │ │ │ │ │ │ ├── FundingStructure.axaml │ │ │ │ │ │ ├── FundingStructure.axaml.cs │ │ │ │ │ │ ├── FundingStructureViewModel.cs │ │ │ │ │ │ ├── FundingStructureViewModelSample.cs │ │ │ │ │ │ └── IFundingStructureViewModel.cs │ │ │ │ │ ├── ICreateProjectViewModel.cs │ │ │ │ │ ├── Preview │ │ │ │ │ │ ├── PreviewHeaderView.axaml │ │ │ │ │ │ ├── PreviewHeaderView.axaml.cs │ │ │ │ │ │ ├── PreviewHeaderViewModel.cs │ │ │ │ │ │ ├── PreviewView.axaml │ │ │ │ │ │ └── PreviewView.axaml.cs │ │ │ │ │ ├── Profile │ │ │ │ │ │ ├── IProfileViewModel.cs │ │ │ │ │ │ ├── ProfileView.axaml │ │ │ │ │ │ ├── ProfileView.axaml.cs │ │ │ │ │ │ ├── ProfileViewModel.cs │ │ │ │ │ │ └── ProfileViewModelSample.cs │ │ │ │ │ ├── ProjectCreated │ │ │ │ │ │ ├── IProjectCreatedViewModel.cs │ │ │ │ │ │ ├── ProjectCreateView.axaml │ │ │ │ │ │ ├── ProjectCreateView.axaml.cs │ │ │ │ │ │ └── ProjectCreatedViewModel.cs │ │ │ │ │ └── Stages │ │ │ │ │ │ ├── CreateProjectStage.cs │ │ │ │ │ │ ├── CreateProjectStageSample.cs │ │ │ │ │ │ ├── Creator │ │ │ │ │ │ ├── IStagesCreatorViewModel.cs │ │ │ │ │ │ ├── PaymentFrequency.cs │ │ │ │ │ │ ├── StagesCreatorView.axaml │ │ │ │ │ │ ├── StagesCreatorView.axaml.cs │ │ │ │ │ │ └── StagesCreatorViewModel.cs │ │ │ │ │ │ ├── ICreateProjectStage.cs │ │ │ │ │ │ ├── IStagesViewModel.cs │ │ │ │ │ │ ├── StagesView.axaml │ │ │ │ │ │ ├── StagesView.axaml.cs │ │ │ │ │ │ ├── StagesViewModel.cs │ │ │ │ │ │ └── StagesViewModelSample.cs │ │ │ │ ├── FounderProjectViewModel.cs │ │ │ │ ├── FounderProjectViewModelSample.cs │ │ │ │ ├── FounderSectionView.axaml │ │ │ │ ├── FounderSectionView.axaml.cs │ │ │ │ ├── FounderSectionViewModel.cs │ │ │ │ ├── FounderSectionViewModelSample.cs │ │ │ │ ├── IFounderProjectViewModel.cs │ │ │ │ ├── IFounderSectionViewModel.cs │ │ │ │ └── ProjectDetails │ │ │ │ │ ├── FounderProjectDetailsView.axaml │ │ │ │ │ ├── FounderProjectDetailsView.axaml.cs │ │ │ │ │ ├── FounderProjectDetailsViewModel.cs │ │ │ │ │ ├── FounderProjectDetailsViewModelSample.cs │ │ │ │ │ ├── IFounderProjectDetailsViewModel.cs │ │ │ │ │ ├── MainView │ │ │ │ │ ├── Approve │ │ │ │ │ │ ├── ApproveInvestmentsView.axaml │ │ │ │ │ │ ├── ApproveInvestmentsView.axaml.cs │ │ │ │ │ │ ├── ApproveInvestmentsViewModelSample.cs │ │ │ │ │ │ ├── IApproveInvestmentsViewModel.cs │ │ │ │ │ │ ├── IInvestmentChild.cs │ │ │ │ │ │ ├── IInvestmentViewModel.cs │ │ │ │ │ │ ├── InvestmentChildViewModel.cs │ │ │ │ │ │ ├── InvestmentChildViewModelSample.cs │ │ │ │ │ │ ├── InvestmentGroupKey.cs │ │ │ │ │ │ ├── InvestmentViewModel.cs │ │ │ │ │ │ ├── InvestmentViewModelSample.cs │ │ │ │ │ │ ├── InvestmentsGrid.axaml │ │ │ │ │ │ ├── InvestmentsGrid.axaml.cs │ │ │ │ │ │ └── ProjectInvestmentsModel.cs │ │ │ │ │ ├── Claim │ │ │ │ │ │ ├── ClaimFundsView.axaml │ │ │ │ │ │ ├── ClaimFundsView.axaml.cs │ │ │ │ │ │ ├── ClaimFundsViewModel.cs │ │ │ │ │ │ ├── ClaimFundsViewModelSample.cs │ │ │ │ │ │ ├── ClaimableStage.cs │ │ │ │ │ │ ├── ClaimableStageSample.cs │ │ │ │ │ │ ├── ClaimableTransaction.cs │ │ │ │ │ │ ├── ClaimableTransactionSample.cs │ │ │ │ │ │ ├── IClaimFundsViewModel.cs │ │ │ │ │ │ ├── IClaimableStage.cs │ │ │ │ │ │ └── IClaimableTransaction.cs │ │ │ │ │ ├── IProjectViewModel.cs │ │ │ │ │ ├── ProjectViewModelSample.cs │ │ │ │ │ └── ReleaseFunds │ │ │ │ │ │ ├── IReleaseFundsViewModel.cs │ │ │ │ │ │ ├── IUnfundedProjectTransaction.cs │ │ │ │ │ │ ├── ReleaseFundsView.axaml │ │ │ │ │ │ ├── ReleaseFundsView.axaml.cs │ │ │ │ │ │ ├── ReleaseFundsViewModel.cs │ │ │ │ │ │ ├── ReleaseFundsViewModelSample.cs │ │ │ │ │ │ ├── UnfundedProjectTransaction.cs │ │ │ │ │ │ ├── UnfundedProjectTransactionSample.cs │ │ │ │ │ │ └── UserFlow.cs │ │ │ │ │ └── Statistics │ │ │ │ │ ├── IProjectStatisticsViewModel.cs │ │ │ │ │ ├── ProjectStatisticsView.axaml │ │ │ │ │ ├── ProjectStatisticsView.axaml.cs │ │ │ │ │ ├── ProjectStatisticsViewModel.cs │ │ │ │ │ └── ProjectStatisticsViewModelSample.cs │ │ │ ├── Home │ │ │ │ ├── AngorFlowView.axaml │ │ │ │ ├── AngorFlowView.axaml.cs │ │ │ │ ├── AngorFlowViewModel.cs │ │ │ │ ├── HomeSectionView.axaml │ │ │ │ ├── HomeSectionView.axaml.cs │ │ │ │ ├── HomeSectionViewModel.cs │ │ │ │ ├── HomeSectionViewModelSample.cs │ │ │ │ └── IHomeSectionViewModel.cs │ │ │ ├── Portfolio │ │ │ │ ├── FounderStatus.cs │ │ │ │ ├── IPortfolioProjectViewModel.cs │ │ │ │ ├── IPortfolioSectionViewModel.cs │ │ │ │ ├── InvestorStatsViewModel.cs │ │ │ │ ├── Items │ │ │ │ │ ├── OfferAcceptedView.axaml │ │ │ │ │ ├── OfferAcceptedView.axaml.cs │ │ │ │ │ ├── PortfolioItem.cs │ │ │ │ │ ├── PortfolioProjectView.axaml │ │ │ │ │ ├── PortfolioProjectView.axaml.cs │ │ │ │ │ ├── PortfolioProjectViewModel.cs │ │ │ │ │ ├── ProgressView.axaml │ │ │ │ │ └── ProgressView.axaml.cs │ │ │ │ ├── Manage │ │ │ │ │ ├── IInvestedProject.cs │ │ │ │ │ ├── IInvestorProjectStage.cs │ │ │ │ │ ├── IManageInvestorProjectViewModel.cs │ │ │ │ │ ├── InvestedProject.cs │ │ │ │ │ ├── InvestedProjectSample.cs │ │ │ │ │ ├── InvestorProjectStage.cs │ │ │ │ │ ├── InvestorProjectStageSample.cs │ │ │ │ │ ├── ManageInvestorProjectView.axaml │ │ │ │ │ ├── ManageInvestorProjectView.axaml.cs │ │ │ │ │ ├── ManageInvestorProjectViewModel.cs │ │ │ │ │ ├── ManageInvestorProjectViewModelSample.cs │ │ │ │ │ └── RecoveryStateViewModel.cs │ │ │ │ ├── Penalties │ │ │ │ │ ├── IPenaltiesViewModel.cs │ │ │ │ │ ├── IPenaltyViewModel.cs │ │ │ │ │ ├── PenaltiesView.axaml │ │ │ │ │ ├── PenaltiesView.axaml.cs │ │ │ │ │ ├── PenaltiesViewModel.cs │ │ │ │ │ ├── PenaltiesViewModelSample.cs │ │ │ │ │ ├── PenaltyViewModel.cs │ │ │ │ │ └── PenaltyViewModelSample.cs │ │ │ │ ├── PortfolioProjectSample.cs │ │ │ │ ├── PortfolioSectionView.axaml │ │ │ │ ├── PortfolioSectionView.axaml.cs │ │ │ │ ├── PortfolioSectionViewModel.cs │ │ │ │ ├── PortfolioSectionViewModelSample.cs │ │ │ │ └── Recover │ │ │ │ │ ├── IRecoverViewModel.cs │ │ │ │ │ ├── RecoverView.axaml │ │ │ │ │ ├── RecoverView.axaml.cs │ │ │ │ │ ├── RecoverViewModel.cs │ │ │ │ │ └── RecoverViewModelSample.cs │ │ │ ├── Settings │ │ │ │ ├── ISettingsSectionViewModel.cs │ │ │ │ ├── SettingsSectionView.axaml │ │ │ │ ├── SettingsSectionView.axaml.cs │ │ │ │ ├── SettingsSectionViewModel.cs │ │ │ │ └── SettingsUrlViewModel.cs │ │ │ ├── Shell │ │ │ │ ├── HeaderView.axaml │ │ │ │ ├── HeaderView.axaml.cs │ │ │ │ ├── HeaderViewModel.cs │ │ │ │ ├── IHaveHeader.cs │ │ │ │ ├── IMainViewModel.cs │ │ │ │ ├── MainView.axaml │ │ │ │ ├── MainView.axaml.cs │ │ │ │ ├── MainViewModel.cs │ │ │ │ ├── MainViewModelSample.cs │ │ │ │ ├── MainWindow.axaml │ │ │ │ ├── MainWindow.axaml.cs │ │ │ │ ├── Network.axaml │ │ │ │ ├── Network.axaml.cs │ │ │ │ ├── NetworkView.axaml │ │ │ │ ├── NetworkView.axaml.cs │ │ │ │ ├── NetworkViewModel.cs │ │ │ │ └── ShellSample.cs │ │ │ └── Wallet │ │ │ │ ├── CreateAndImport │ │ │ │ ├── Steps │ │ │ │ │ ├── CreateWelcome │ │ │ │ │ │ ├── WelcomeView.axaml │ │ │ │ │ │ ├── WelcomeView.axaml.cs │ │ │ │ │ │ └── WelcomeViewModel.cs │ │ │ │ │ ├── EncryptionPassword │ │ │ │ │ │ ├── EncryptionPasswordView.axaml │ │ │ │ │ │ ├── EncryptionPasswordView.axaml.cs │ │ │ │ │ │ ├── EncryptionPasswordViewModel.cs │ │ │ │ │ │ └── IEncryptionPasswordViewModel.cs │ │ │ │ │ ├── ImportWelcome │ │ │ │ │ │ ├── ImportWelcomeView.axaml │ │ │ │ │ │ ├── ImportWelcomeView.axaml.cs │ │ │ │ │ │ └── ImportWelcomeViewModel.cs │ │ │ │ │ ├── Passphrase │ │ │ │ │ │ ├── Create │ │ │ │ │ │ │ ├── IPassphraseCreateViewModel.cs │ │ │ │ │ │ │ ├── PassphraseCreateView.axaml │ │ │ │ │ │ │ ├── PassphraseCreateView.axaml.cs │ │ │ │ │ │ │ └── PassphraseCreateViewModel.cs │ │ │ │ │ │ └── Recover │ │ │ │ │ │ │ ├── IPassphraseRecoverViewModel.cs │ │ │ │ │ │ │ ├── PassphraseRecoverView.axaml │ │ │ │ │ │ │ ├── PassphraseRecoverView.axaml.cs │ │ │ │ │ │ │ └── PassphraseRecoverViewModel.cs │ │ │ │ │ ├── RecoverySeedWords │ │ │ │ │ │ ├── IRecoverySeedWordsViewModel.cs │ │ │ │ │ │ ├── RecoverySeedwordsView.axaml │ │ │ │ │ │ ├── RecoverySeedwordsView.axaml.cs │ │ │ │ │ │ └── RecoverySeedwordsViewModel.cs │ │ │ │ │ ├── SeedWordsConfirmation │ │ │ │ │ │ ├── ISeedWordsConfirmationViewModel.cs │ │ │ │ │ │ ├── SeedWordsConfirmationView.axaml │ │ │ │ │ │ ├── SeedWordsConfirmationView.axaml.cs │ │ │ │ │ │ └── SeedWordsConfirmationViewModel.cs │ │ │ │ │ ├── SeedWordsGeneration │ │ │ │ │ │ ├── Empty.axaml │ │ │ │ │ │ ├── Empty.axaml.cs │ │ │ │ │ │ ├── GeneratedWords.axaml │ │ │ │ │ │ ├── GeneratedWords.axaml.cs │ │ │ │ │ │ ├── ISeedWordsViewModel.cs │ │ │ │ │ │ ├── SeedWordList.axaml │ │ │ │ │ │ ├── SeedWordList.axaml.cs │ │ │ │ │ │ ├── SeedWordsView.axaml │ │ │ │ │ │ ├── SeedWordsView.axaml.cs │ │ │ │ │ │ ├── SeedWordsViewModel.cs │ │ │ │ │ │ └── SeedWordsViewModelSample.cs │ │ │ │ │ └── Summary │ │ │ │ │ │ ├── ISummaryViewModel.cs │ │ │ │ │ │ ├── SummaryView.axaml │ │ │ │ │ │ ├── SummaryView.axaml.cs │ │ │ │ │ │ ├── SummaryViewModel.cs │ │ │ │ │ │ └── SummaryViewModelSample.cs │ │ │ │ ├── WalletCreationWizard.cs │ │ │ │ └── WalletImportWizard.cs │ │ │ │ ├── Main │ │ │ │ ├── Balance.axaml │ │ │ │ ├── Balance.axaml.cs │ │ │ │ ├── BroadcastedTransactionSample.cs │ │ │ │ ├── HistoryView.axaml │ │ │ │ ├── HistoryView.axaml.cs │ │ │ │ ├── ITransactionViewModel.cs │ │ │ │ ├── IWalletSectionViewModel.cs │ │ │ │ ├── IWalletSetupViewModel.cs │ │ │ │ ├── Receive.axaml │ │ │ │ ├── Receive.axaml.cs │ │ │ │ ├── TransactionDraftSample.cs │ │ │ │ ├── TransactionJsonView.axaml │ │ │ │ ├── TransactionJsonView.axaml.cs │ │ │ │ ├── TransactionJsonViewModel.cs │ │ │ │ ├── TransactionViewModelSample.cs │ │ │ │ ├── WalletSectionView.axaml │ │ │ │ ├── WalletSectionView.axaml.cs │ │ │ │ ├── WalletSectionViewModel.cs │ │ │ │ ├── WalletView.axaml │ │ │ │ └── WalletView.axaml.cs │ │ │ │ ├── WalletImportOptions.cs │ │ │ │ ├── WalletSample.cs │ │ │ │ ├── WalletSetupView.axaml │ │ │ │ └── WalletSetupView.axaml.cs │ │ │ ├── Shared │ │ │ ├── AngorSvgIconProvider.cs │ │ │ ├── Controls │ │ │ │ ├── AmountControl.axaml │ │ │ │ ├── AmountControl.axaml.cs │ │ │ │ ├── AmountOptions.cs │ │ │ │ ├── AngorConverters.cs │ │ │ │ ├── Automation.cs │ │ │ │ ├── Badge.axaml │ │ │ │ ├── Badge.axaml.cs │ │ │ │ ├── Common │ │ │ │ │ ├── FeerateSelectionView.axaml │ │ │ │ │ ├── FeerateSelectionView.axaml.cs │ │ │ │ │ ├── FeerateSelectionViewModel.cs │ │ │ │ │ ├── FoundedProjectOptions │ │ │ │ │ │ ├── FoundedProjectOptionsView.axaml │ │ │ │ │ │ ├── FoundedProjectOptionsView.axaml.cs │ │ │ │ │ │ ├── FoundedProjectOptionsViewModel.cs │ │ │ │ │ │ ├── FoundedProjectOptionsViewModelSample.cs │ │ │ │ │ │ └── IFoundedProjectOptionsViewModel.cs │ │ │ │ │ ├── LongTextView.axaml │ │ │ │ │ ├── LongTextView.axaml.cs │ │ │ │ │ └── Success │ │ │ │ │ │ ├── ISuccessViewModel.cs │ │ │ │ │ │ ├── SuccessView.axaml │ │ │ │ │ │ ├── SuccessView.axaml.cs │ │ │ │ │ │ ├── SuccessViewModel.cs │ │ │ │ │ │ └── SuccessViewModelSample.cs │ │ │ │ ├── DesignTimePreset.cs │ │ │ │ ├── ErrorSummary.axaml │ │ │ │ ├── ErrorSummary.axaml.cs │ │ │ │ ├── Feerate │ │ │ │ │ ├── Controller.cs │ │ │ │ │ ├── FeerateSelector.axaml │ │ │ │ │ └── FeerateSelector.axaml.cs │ │ │ │ ├── Header.axaml │ │ │ │ ├── Header.axaml.cs │ │ │ │ ├── IconLabel.axaml │ │ │ │ ├── IconLabel.axaml.cs │ │ │ │ ├── List.axaml │ │ │ │ ├── List.axaml.cs │ │ │ │ ├── PageContainer.axaml │ │ │ │ ├── PageContainer.axaml.cs │ │ │ │ ├── Pane.axaml │ │ │ │ ├── Pane.axaml.cs │ │ │ │ ├── Password │ │ │ │ │ ├── PasswordView.axaml │ │ │ │ │ └── PasswordView.axaml.cs │ │ │ │ ├── ProjectCard.axaml │ │ │ │ ├── ProjectCard.axaml.cs │ │ │ │ ├── QRGenerator.cs │ │ │ │ ├── SectionItem.axaml │ │ │ │ └── SectionItem.axaml.cs │ │ │ ├── Resources │ │ │ │ └── Icons.axaml │ │ │ ├── Services │ │ │ │ ├── IValidations.cs │ │ │ │ ├── IWalletContext.cs │ │ │ │ ├── ImageUriChecker.cs │ │ │ │ ├── LightningAddressValidator.cs │ │ │ │ ├── Nip05Validator.cs │ │ │ │ ├── UIPreferences.cs │ │ │ │ ├── UIServices.cs │ │ │ │ ├── ValidationShared.cs │ │ │ │ ├── Validations.cs │ │ │ │ ├── WalletContext.cs │ │ │ │ └── WalletContextExtensions.cs │ │ │ └── Styles │ │ │ │ ├── Automation.axaml │ │ │ │ ├── Border.axaml │ │ │ │ ├── Button.axaml │ │ │ │ ├── CalendarDatePicker.axaml │ │ │ │ ├── Cards.axaml │ │ │ │ ├── EdgePanel.axaml │ │ │ │ ├── FlyoutPresenter.axaml │ │ │ │ ├── HeaderedContainer.axaml │ │ │ │ ├── OverlayBorder.axaml │ │ │ │ ├── SlimDataGrid.axaml │ │ │ │ ├── Styles.axaml │ │ │ │ ├── TextBlock.axaml │ │ │ │ ├── TextBox.axaml │ │ │ │ └── ToggleButton.axaml │ │ │ └── TransactionDrafts │ │ │ ├── DraftTypes │ │ │ ├── Base │ │ │ │ ├── InvestmentDraftView.axaml │ │ │ │ ├── InvestmentDraftView.axaml.cs │ │ │ │ └── TransactionDraftViewModel.cs │ │ │ ├── ITransactionDraftViewModel.cs │ │ │ └── Investment │ │ │ │ ├── InvestmentDraftView.axaml │ │ │ │ ├── InvestmentDraftView.axaml.cs │ │ │ │ └── InvestmentDraftViewModel.cs │ │ │ ├── TransactionDraftPreviewerView.axaml │ │ │ ├── TransactionDraftPreviewerView.axaml.cs │ │ │ └── TransactionDraftPreviewerViewModel.cs │ ├── Directory.Build.props │ ├── Directory.Packages.props │ ├── angor-app-icon-dark.png │ ├── angor-app-icon-light.png │ ├── azure-pipelines.yml │ └── global.json ├── Client │ ├── Angor.Client.csproj │ ├── App.razor │ ├── Components │ │ ├── BalanceDisplay.razor │ │ ├── DatePicker.razor │ │ ├── FounderProjectItem.razor │ │ ├── Icon.razor │ │ ├── MessageComponent.razor │ │ ├── RawTransactionModal.razor │ │ ├── ShowQrCode.razor │ │ └── datepicker.razor.css │ ├── Models │ │ ├── DirectMessage.cs │ │ ├── FeeCalculation.cs │ │ ├── FlattenedProjectTest.cs │ │ ├── FounderProject.cs │ │ ├── InvestmentState.cs │ │ ├── Investments.cs │ │ ├── InvestorProject.cs │ │ └── Project.cs │ ├── NetworkConfiguration.cs │ ├── Pages │ │ ├── Browse.razor │ │ ├── CheckTransactionCode.razor │ │ ├── Create.razor │ │ ├── DebugPage.razor │ │ ├── Founder.razor │ │ ├── Index.razor │ │ ├── Invest.razor │ │ ├── Investor.razor │ │ ├── Penalties.razor │ │ ├── Penalty.razor │ │ ├── Recover.razor │ │ ├── Release.razor │ │ ├── Settings.razor │ │ ├── Signatures.razor │ │ ├── Spend.razor │ │ ├── TrxDecoder.razor │ │ ├── Unfunded.razor │ │ ├── View.razor │ │ └── Wallet.razor │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── ClipboardService.cs │ │ ├── CurrencyRateService.cs │ │ ├── CurrencyService.cs │ │ ├── EncryptionService.cs │ │ ├── FeatureFlagService.cs │ │ ├── HtmlSanitizerService.cs │ │ ├── HtmlStripperService.cs │ │ ├── IClipboardService.cs │ │ ├── ICurrencyRateService.cs │ │ ├── ICurrencyService.cs │ │ ├── IFeatureFlagService.cs │ │ ├── IHtmlSanitizerService.cs │ │ ├── IHtmlStripperService.cs │ │ ├── IMessageService.cs │ │ ├── IPasswordCacheService.cs │ │ ├── IWalletUIService.cs │ │ ├── IconService.cs │ │ ├── MessageService.cs │ │ └── WalletUIService.cs │ ├── Shared │ │ ├── BaseComponent.cs │ │ ├── FeeData.cs │ │ ├── FeeSelector.razor │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ ├── NavMenuState.cs │ │ ├── NotificationComponent.razor │ │ └── PasswordComponent.razor │ ├── Storage │ │ ├── ClientStorage.cs │ │ ├── ICacheStorage.cs │ │ ├── IClientStorage.cs │ │ ├── IWalletStorage.cs │ │ ├── LocalSessionStorage.cs │ │ └── WalletStorage.cs │ ├── _Imports.razor │ └── wwwroot │ │ ├── assets │ │ ├── css │ │ │ ├── app.css │ │ │ └── dashboard.css │ │ ├── icons │ │ │ ├── about.svg │ │ │ ├── actions.svg │ │ │ ├── add.svg │ │ │ ├── addresses.svg │ │ │ ├── alert-triangle.svg │ │ │ ├── angor-logo.svg │ │ │ ├── approved.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── balance.svg │ │ │ ├── banner.svg │ │ │ ├── block.svg │ │ │ ├── browse.svg │ │ │ ├── btc.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── change.svg │ │ │ ├── chat.svg │ │ │ ├── check-circle.svg │ │ │ ├── check.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-up.svg │ │ │ ├── circle-check.svg │ │ │ ├── claim.svg │ │ │ ├── clock-circle.svg │ │ │ ├── clock-square.svg │ │ │ ├── close-circle.svg │ │ │ ├── collapse.svg │ │ │ ├── copy.svg │ │ │ ├── cup.svg │ │ │ ├── currency.svg │ │ │ ├── dark_mode.svg │ │ │ ├── date.svg │ │ │ ├── delete.svg │ │ │ ├── deploy.svg │ │ │ ├── deselect-all.svg │ │ │ ├── economy.svg │ │ │ ├── edit.svg │ │ │ ├── expand.svg │ │ │ ├── explorer.svg │ │ │ ├── fee.svg │ │ │ ├── founder.svg │ │ │ ├── github.svg │ │ │ ├── grid.svg │ │ │ ├── hamburger-menu.svg │ │ │ ├── identifier.svg │ │ │ ├── image.svg │ │ │ ├── indexer.svg │ │ │ ├── info.svg │ │ │ ├── install.svg │ │ │ ├── investment.svg │ │ │ ├── key.svg │ │ │ ├── light_mode.svg │ │ │ ├── lightning.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── lock.svg │ │ │ ├── maximize.svg │ │ │ ├── menu.svg │ │ │ ├── menu_close.svg │ │ │ ├── menu_open.svg │ │ │ ├── minimize.svg │ │ │ ├── name.svg │ │ │ ├── network.svg │ │ │ ├── next.svg │ │ │ ├── paste.svg │ │ │ ├── pending.svg │ │ │ ├── pendingmessage.svg │ │ │ ├── percent.svg │ │ │ ├── plus.svg │ │ │ ├── portfolio.svg │ │ │ ├── primary.svg │ │ │ ├── priority.svg │ │ │ ├── progress.svg │ │ │ ├── project.svg │ │ │ ├── project_explorer.svg │ │ │ ├── qr-code.svg │ │ │ ├── receive.svg │ │ │ ├── recover.svg │ │ │ ├── recovery.svg │ │ │ ├── refresh.svg │ │ │ ├── refund.svg │ │ │ ├── relay.svg │ │ │ ├── release-all.svg │ │ │ ├── release.svg │ │ │ ├── remove.svg │ │ │ ├── rocket.svg │ │ │ ├── sad-circle.svg │ │ │ ├── search.svg │ │ │ ├── select-all.svg │ │ │ ├── send.svg │ │ │ ├── server-path.svg │ │ │ ├── set.svg │ │ │ ├── settings.svg │ │ │ ├── shield-minus.svg │ │ │ ├── shield-plus.svg │ │ │ ├── shield-star.svg │ │ │ ├── shield.svg │ │ │ ├── sidebar.svg │ │ │ ├── signature.svg │ │ │ ├── spend.svg │ │ │ ├── stage.svg │ │ │ ├── stages.svg │ │ │ ├── standard.svg │ │ │ ├── statistics.svg │ │ │ ├── stats.svg │ │ │ ├── target-missed.svg │ │ │ ├── unlock.svg │ │ │ ├── update.svg │ │ │ ├── user.svg │ │ │ ├── users.svg │ │ │ ├── verified-check.svg │ │ │ ├── view-project.svg │ │ │ ├── view.svg │ │ │ ├── visibility-off.svg │ │ │ ├── visibility.svg │ │ │ ├── wallet.svg │ │ │ ├── warning.svg │ │ │ └── withdraw.svg │ │ ├── img │ │ │ ├── angor-icon.svg │ │ │ ├── angor-logo.svg │ │ │ ├── bitcoin-logo.png │ │ │ ├── bitcoin.svg │ │ │ ├── browse-icon-192.png │ │ │ ├── desktop-installation-screenshot.png │ │ │ ├── favicon.png │ │ │ ├── icon-192.png │ │ │ ├── icon-512.png │ │ │ ├── mobile-installation-screenshot.png │ │ │ ├── no-image.jpg │ │ │ ├── settings-icon-192.png │ │ │ └── wallet-icon-192.png │ │ └── js │ │ │ ├── app.js │ │ │ └── appUpdate.js │ │ ├── index.html │ │ ├── lib │ │ └── js-base64 │ │ │ ├── LICENSE.md │ │ │ └── base64.mjs │ │ ├── nostr-tools-methods.js │ │ └── service-crypto.js └── Shared │ ├── Angor.Shared.csproj │ ├── DerivationOperations.cs │ ├── HdOperations.cs │ ├── IDerivationOperations.cs │ ├── INetworkConfiguration.cs │ ├── INetworkStorage.cs │ ├── IPsbtOperations.cs │ ├── IWalletOperations.cs │ ├── Models │ ├── AccountBalanceInfo.cs │ ├── AccountInfo.cs │ ├── AddressBalance.cs │ ├── AddressInfo.cs │ ├── FeeEstimation.cs │ ├── FeeEstimations.cs │ ├── FounderContext.cs │ ├── FounderPubKeys.cs │ ├── InvestorContext.cs │ ├── NostrRelayInfo.cs │ ├── OperationResult.cs │ ├── Outpoint.cs │ ├── ProjectIndexerData.cs │ ├── ProjectInfo.cs │ ├── ProjectInvestment.cs │ ├── ProjectMetadata.cs │ ├── ProjectScriptType.cs │ ├── ProjectScripts.cs │ ├── ProjectSeeders.cs │ ├── ProjectStats.cs │ ├── PsbtData.cs │ ├── QueryTransaction.cs │ ├── QueryTransactionInput.cs │ ├── QueryTransactionOutput.cs │ ├── SendInfo.cs │ ├── SettingsUrl.cs │ ├── SignData.cs │ ├── SignRecoveryRequest.cs │ ├── SignServiceLookupItem.cs │ ├── SignatureInfo.cs │ ├── SignatureInfoItem.cs │ ├── Stage.cs │ ├── TransactionInfo.cs │ ├── UtxoData.cs │ ├── Wallet.cs │ └── WalletWords.cs │ ├── NetworkMapper.cs │ ├── Networks │ ├── Angornet.cs │ ├── BitcoinMain.cs │ ├── BitcoinSignet.cs │ ├── BitcoinTest.cs │ ├── BitcoinTest4.cs │ └── Networks.cs │ ├── ProjectIdentifierDerivation.cs │ ├── Protocol │ ├── FounderTransactionActions.cs │ ├── IFounderTransactionActions.cs │ ├── IInvestorTransactionActions.cs │ ├── ISeederTransactionActions.cs │ ├── InvestorTransactionActions.cs │ ├── Scripts │ │ ├── IInvestmentScriptbuilder.cs │ │ ├── IProjectScriptsBuilder.cs │ │ ├── ISeederScriptTreeBuilder.cs │ │ ├── ITaprootScriptBuilder.cs │ │ ├── InvestmentScriptBuilder.cs │ │ ├── ProjectScriptsBuilder.cs │ │ ├── SeederScriptTreeBuilder.cs │ │ └── TaprootScriptBuilder.cs │ ├── SeederTransactionActions.cs │ └── TransactionBuilders │ │ ├── IInvestmentTransactionBuilder.cs │ │ ├── ISpendingTransactionBuilder.cs │ │ ├── InvestmentTransactionBuilder.cs │ │ └── SpendingTransactionBuilder.cs │ ├── PsbtOperations.cs │ ├── Services │ ├── ApplicationLogicService.cs │ ├── IAngorIndexerService.cs │ ├── IApplicationLogicService.cs │ ├── IEncryptionService.cs │ ├── IIndexerService.cs │ ├── INetworkService.cs │ ├── INostrCommunicationFactory.cs │ ├── IRelayService.cs │ ├── IRelaySubscriptionsHandling.cs │ ├── ISerializer.cs │ ├── ISignService.cs │ ├── IndexerService.cs │ ├── MempoolIndexerAngorApi.cs │ ├── MempoolIndexerMappers.cs │ ├── MempoolSpaceIndexerApi.cs │ ├── NetworkService.cs │ ├── NostrCommunicationFactory.cs │ ├── RelayService.cs │ ├── RelaySubscriptionsHandling.cs │ ├── Serializer.cs │ └── SignService.cs │ ├── Utilities │ ├── AmountExtension.cs │ ├── AssemblyInfoHelper.cs │ ├── DateExtension.cs │ ├── LinqExtension.cs │ ├── NostrConversionHelper.cs │ └── UnixDateTimeConverter.cs │ └── WalletOperations.cs ├── Directory.Build.props └── Testing ├── cypress.config.js ├── e2e ├── browse.cy.js └── wallet.cy.js ├── fixtures └── example.json └── support ├── commands ├── browse_commands.js ├── commands.js └── wallet_commands.js ├── e2e.js └── enums.js /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/.github/workflows/pr-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/README.md -------------------------------------------------------------------------------- /docker/angor-app/docker-compose.yml: -------------------------------------------------------------------------------- 1 | TBD -------------------------------------------------------------------------------- /docker/angor-app/readme.md: -------------------------------------------------------------------------------- 1 | TBD -------------------------------------------------------------------------------- /docker/explorers/angornet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/explorers/angornet/docker-compose.yml -------------------------------------------------------------------------------- /docker/explorers/angornet/electrs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/explorers/angornet/electrs.conf -------------------------------------------------------------------------------- /docker/explorers/mainnet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/explorers/mainnet/docker-compose.yml -------------------------------------------------------------------------------- /docker/explorers/mainnet/electrs.conf: -------------------------------------------------------------------------------- 1 | auth = "rpcuser:rpcpassword" -------------------------------------------------------------------------------- /docker/proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/proxy/docker-compose.yml -------------------------------------------------------------------------------- /docker/proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/proxy/nginx.conf -------------------------------------------------------------------------------- /docker/proxy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/proxy/readme.md -------------------------------------------------------------------------------- /docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/readme.md -------------------------------------------------------------------------------- /docker/relays/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/relays/docker-compose.yml -------------------------------------------------------------------------------- /docker/relays/strfry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/docker/relays/strfry.conf -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/global.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/package.json -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Angor.Test/Angor.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Angor.Test.csproj -------------------------------------------------------------------------------- /src/Angor.Test/DataBuilders/AngorScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/DataBuilders/AngorScripts.cs -------------------------------------------------------------------------------- /src/Angor.Test/DataBuilders/InvestmentOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/DataBuilders/InvestmentOperations.cs -------------------------------------------------------------------------------- /src/Angor.Test/DataBuilders/ProjectOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/DataBuilders/ProjectOperations.cs -------------------------------------------------------------------------------- /src/Angor.Test/DataBuilders/ScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/DataBuilders/ScriptBuilder.cs -------------------------------------------------------------------------------- /src/Angor.Test/DerivationOperationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/DerivationOperationsTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/InvestmentOperationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/InvestmentOperationsTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/ProjectIdentifierDerivationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/ProjectIdentifierDerivationTests.cs -------------------------------------------------------------------------------- /src/Angor.Test/Protocol/AngorTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Protocol/AngorTestData.cs -------------------------------------------------------------------------------- /src/Angor.Test/Protocol/FounderTransactionActionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Protocol/FounderTransactionActionTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/Protocol/InvestmentIntegrationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Protocol/InvestmentIntegrationsTests.cs -------------------------------------------------------------------------------- /src/Angor.Test/Protocol/Scripts/ProjectScriptsBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Protocol/Scripts/ProjectScriptsBuilderTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/Protocol/SeederTransactionActionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Protocol/SeederTransactionActionsTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/Protocol/TransactionBuilders/SpendingTransactionBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Protocol/TransactionBuilders/SpendingTransactionBuilderTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/PsbtOperationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/PsbtOperationsTests.cs -------------------------------------------------------------------------------- /src/Angor.Test/ScriptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/ScriptTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/ScriptThresholdTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/ScriptThresholdTest.cs -------------------------------------------------------------------------------- /src/Angor.Test/Services/IndexerComparisonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Services/IndexerComparisonTests.cs -------------------------------------------------------------------------------- /src/Angor.Test/Services/TestSignService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/Services/TestSignService.cs -------------------------------------------------------------------------------- /src/Angor.Test/TransactionValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/TransactionValidation.cs -------------------------------------------------------------------------------- /src/Angor.Test/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /src/Angor.Test/WalletOperationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.Test/WalletOperationsTest.cs -------------------------------------------------------------------------------- /src/Angor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor.sln -------------------------------------------------------------------------------- /src/Angor/Avalonia/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/.gitignore -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Avalonia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Avalonia.sln -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/DerivedProjectKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/DerivedProjectKeys.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/IApplicationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/IApplicationStorage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/ISeedwordsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/ISeedwordsProvider.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/IStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/IStore.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/IWalletAccountBalanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/IWalletAccountBalanceService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/IntegrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/IntegrationExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/NetworkConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/NetworkConfiguration.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/NetworkStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/NetworkStorage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/NostrQueryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/NostrQueryClient.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/ObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/ObservableExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/ProfileContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/ProfileContext.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/WalletAccountBalanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/WalletAccountBalanceInfo.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/WalletAccountBalanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/WalletAccountBalanceService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.CrossCutting/WalletId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.CrossCutting/WalletId.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding.Tests/InvestmentAppServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding.Tests/InvestmentAppServiceTests.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding.Tests/NostrDecrypterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding.Tests/NostrDecrypterTests.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding.Tests/NostrQueryClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding.Tests/NostrQueryClientTests.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding.Tests/ProjectAppServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding.Tests/ProjectAppServiceTests.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Angor.Contexts.Funding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Angor.Contexts.Funding.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Domain/Investment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Domain/Investment.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Domain/InvestmentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Domain/InvestmentRequest.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Dtos/ClaimStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Dtos/ClaimStatus.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Dtos/InvestorStatsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Dtos/InvestorStatsDto.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Dtos/SpendTransactionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Dtos/SpendTransactionDto.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/FounderAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/FounderAppService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/IFounderAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/IFounderAppService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/InvestmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/InvestmentStatus.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Operations/CreateProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Operations/CreateProject.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Operations/GetInvestments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Founder/Operations/GetInvestments.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/FundingContextServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/FundingContextServices.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/IPortfolioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/IPortfolioService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/InvestmentRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/InvestmentRecord.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/InvestmentRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/InvestmentRecords.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/PortfolioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Domain/PortfolioService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Dtos/InvestmentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Dtos/InvestmentDto.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Dtos/PenaltiesDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Dtos/PenaltiesDto.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/IInvestmentAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/IInvestmentAppService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/InvestedProjectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/InvestedProjectDto.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/InvestmentAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/InvestmentAppService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Operations/GetPenalties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Operations/GetPenalties.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Operations/Investments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Operations/Investments.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Operations/RecoverFunds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Investor/Operations/RecoverFunds.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/Investment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/Investment.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/Project.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/Stage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/StageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/StageData.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/StageDataTrx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Projects/Domain/StageDataTrx.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Services/IProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Services/IProjectService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Services/ITransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Services/ITransactionService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Services/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Services/ProjectService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Services/TransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Services/TransactionService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/Amount.cs: -------------------------------------------------------------------------------- 1 | namespace Angor.Contexts.Funding.Projects.Domain; 2 | 3 | public record class Amount(long Sats); -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/DirectMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/DirectMessage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/DomainFeerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/DomainFeerate.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/INostrDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/INostrDecrypter.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/InvestmentHandshake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/InvestmentHandshake.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/InvestmentRequestStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/InvestmentRequestStatus.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/NostrDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/NostrDecrypter.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/ProjectId.cs: -------------------------------------------------------------------------------- 1 | namespace Angor.Contexts.Funding.Shared; 2 | 3 | public record class ProjectId(string Value); -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/PublishTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/PublishTransaction.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/TransactionDraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Funding/Shared/TransactionDraft.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Funding/Shared/WalletRequest.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Angor.Contexts.Wallet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Angor.Contexts.Wallet.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Application/IWalletAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Application/IWalletAppService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Application/WalletMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Application/WalletMetadata.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Address.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Amount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Amount.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Balance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Balance.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/BitcoinNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/BitcoinNetwork.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/BroadcastedTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/BroadcastedTransaction.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DerivationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DerivationPath.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DerivationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DerivationType.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DomainException.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DomainFeeRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DomainFeeRate.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DomainScriptType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/DomainScriptType.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/FeeAndSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/FeeAndSize.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/TransactionInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/TransactionInput.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/TransactionOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/TransactionOutput.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/TxId.cs: -------------------------------------------------------------------------------- 1 | namespace Angor.Contexts.Wallet.Domain; 2 | 3 | public record TxId(string Value); -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Wallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/Wallet.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/WalletDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/WalletDescriptor.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/XPub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/XPub.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/XPubCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Domain/XPubCollection.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Dto/XPubDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Dto/XPubDto.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Impl/FileStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Impl/FileStore.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Impl/WalletData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Impl/WalletData.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Impl/WalletStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/Infrastructure/Impl/WalletStore.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Contexts.Wallet/WalletContextServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Contexts.Wallet/WalletContextServices.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents.LiteDb/LiteDbDocumentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents.LiteDb/LiteDbDocumentCollection.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents.LiteDb/LiteDbDocumentDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents.LiteDb/LiteDbDocumentDatabase.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents.LiteDb/LiteDbDocumentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents.LiteDb/LiteDbDocumentMapping.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents/Angor.Data.Documents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents/Angor.Data.Documents.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents/Interfaces/IDocumentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents/Interfaces/IDocumentCollection.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents/Interfaces/IDocumentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents/Interfaces/IDocumentRepository.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents/Models/BaseDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents/Models/BaseDocument.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/Angor.Data.Documents/Models/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Angor.Data.Documents/Models/Document.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/AngorApp.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/AngorApp.Android.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Icon.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/MainActivity.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/drawable-night/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/drawable-night/icon.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/drawable/angor_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/drawable/angor_icon.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/drawable/angor_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/drawable/angor_logo.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/drawable/splash_screen.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/values-night/colors.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/values-v31/styles.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/AngorApp.Browser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/AngorApp.Browser.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/Program.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly:System.Runtime.Versioning.SupportedOSPlatform("browser")] 2 | -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/runtimeconfig.template.json -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/wwwroot/app.css -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/wwwroot/index.html -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Browser/wwwroot/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Browser/wwwroot/main.js -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Desktop/AngorApp.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Desktop/AngorApp.Desktop.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Desktop/Program.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Desktop/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Desktop/app.ico -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Desktop/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Desktop/app.manifest -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Desktop/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Desktop/icon.ico -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Amounts/AmountFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Amounts/AmountFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Amounts/AmountUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Amounts/AmountUI.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Amounts/SendAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Amounts/SendAmount.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/AngorApp.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/AngorApp.Model.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Common/LongTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Common/LongTextViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Common/RefreshableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Common/RefreshableCollection.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Common/ResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Common/ResultViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Amounts/IAmountFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Amounts/IAmountFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Amounts/IAmountUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Amounts/IAmountUI.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Flows/ICreateProjectFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Flows/ICreateProjectFlow.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Flows/ISendMoneyFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Flows/ISendMoneyFlow.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/IFullProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/IFullProject.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/IProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/IProject.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/IStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/IStage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/ProjectStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Projects/ProjectStatus.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/ITransactionPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/ITransactionPreview.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/IWallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/IWallet.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/IWalletFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/IWalletFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/IWalletProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Contracts/Wallet/IWalletProvider.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Projects/FullProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Projects/FullProject.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Projects/FullProjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Projects/FullProjectExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Projects/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Projects/Project.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Projects/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Projects/Stage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Projects/StageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Projects/StageSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/BitcoinAddressValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/BitcoinAddressValidator.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/BroadcastedTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/BroadcastedTransaction.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/DialogPasswordProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/DialogPasswordProvider.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/Password/IPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/Password/IPasswordViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/Password/PasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/Password/PasswordViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/SeedWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/SeedWord.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/Simple/SimpleWallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/Simple/SimpleWallet.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/Simple/SimpleWalletProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/Simple/SimpleWalletProvider.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/TransactionDraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/TransactionDraft.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.Model/Wallet/WordList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.Model/Wallet/WordList.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.iOS/AngorApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.iOS/AngorApp.iOS.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.iOS/Info.plist -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.iOS/Main.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp.iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp.iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/AngorApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/AngorApp.csproj -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/App.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/App.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/add.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/angor-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/angor-icon.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/angor-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/angor-logo.ico -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/bitcoin.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/browse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/browse.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/btc.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/claim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/claim.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/clock-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/clock-square.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/community.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/flow.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/flow.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/lock.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/portfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/portfolio.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/recovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/recovery.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/settings.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/stages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/stages.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/unlock.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/user.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/view-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/view-project.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Assets/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Assets/wallet.svg -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Composition/CompositionRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Composition/CompositionRoot.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Composition/LoggingConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Composition/LoggingConfigurator.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Composition/Registrations/Sections/Sections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Composition/Registrations/Sections/Sections.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Composition/Registrations/Services/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Composition/Registrations/Services/Security.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Composition/UnhandledExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Composition/UnhandledExceptionLogger.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/ApplicationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/ApplicationStorage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/Constants.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/Factories/IProjectInvestCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/Factories/IProjectInvestCommandFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/Factories/IProjectViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/Factories/IProjectViewModelFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/Factories/ProjectInvestCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/Factories/ProjectInvestCommandFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/Factories/ProjectViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/Factories/ProjectViewModelFactory.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/IHaveErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/IHaveErrors.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/ResultMaybeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/ResultMaybeExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/SafeMaybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/SafeMaybe.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/SafeMaybeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/SafeMaybeExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Core/SharedCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Core/SharedCommands.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Design/DesignTimeAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Design/DesignTimeAmount.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Design/FeeCalculatorDesignTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Design/FeeCalculatorDesignTime.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/Localization/HumanizerStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/Localization/HumanizerStrategies.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/CreateProyect/CreateProjectFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/CreateProyect/CreateProjectFlow.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountViewModelSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/AmountViewModelSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/Breakdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/Breakdown.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/IAmountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/IAmountViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/StagesBreakdown.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/StagesBreakdown.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/StagesBreakdown.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/Amount/StagesBreakdown.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/Invest/InvestFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/Invest/InvestFlow.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Flows/SendWalletMoney/SendMoneyFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Flows/SendWalletMoney/SendMoneyFlow.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/BrowseSectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/BrowseSectionView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/BrowseSectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/BrowseSectionView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/BrowseSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/BrowseSectionViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/FullProjectSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/FullProjectSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/INostrRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/INostrRelay.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/NostProperties.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/NostProperties.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/NostrRelaySample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/NostrRelaySample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/ProjectSummary.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/ProjectSummary.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/Stage.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/Stages.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/Stages.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/Stages.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/Details/Stages.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/IBrowseSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/IBrowseSectionViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/IProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/IProjectViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectItemView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectItemView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectItemView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectItemView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectViewModelSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/ProjectViewModelSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/SampleData.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Browse/TestNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Browse/TestNotificationService.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/CreateProject/Common.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/CreateProject/Common.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderProjectViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderSectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderSectionView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderSectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderSectionView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/FounderSectionViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/IFounderProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/IFounderProjectViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Founder/IFounderSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Founder/IFounderSectionViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/AngorFlowView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/AngorFlowView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/AngorFlowView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/AngorFlowView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/AngorFlowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/AngorFlowViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionViewModelSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/HomeSectionViewModelSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Home/IHomeSectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Home/IHomeSectionViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/FounderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/FounderStatus.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/InvestorStatsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/InvestorStatsViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Items/PortfolioItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Items/PortfolioItem.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Items/ProgressView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Items/ProgressView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Manage/InvestedProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Manage/InvestedProject.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/PortfolioProjectSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/PortfolioProjectSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Recover/RecoverView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Portfolio/Recover/RecoverView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Settings/SettingsSectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Settings/SettingsSectionView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Settings/SettingsUrlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Settings/SettingsUrlViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/HeaderView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/HeaderView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/HeaderView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/HeaderView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/HeaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/HeaderViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/IHaveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/IHaveHeader.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/IMainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/IMainViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainViewModelSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainViewModelSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainWindow.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/Network.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/Network.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/Network.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/Network.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/NetworkView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/NetworkView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/NetworkView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/NetworkView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/NetworkViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/NetworkViewModel.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Shell/ShellSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Shell/ShellSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Balance.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Balance.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Balance.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Balance.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/HistoryView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/HistoryView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/HistoryView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/HistoryView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Receive.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Receive.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Receive.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/Receive.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/WalletSectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/WalletSectionView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/WalletView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/WalletView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/WalletView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/Main/WalletView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletImportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletImportOptions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletSample.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletSetupView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletSetupView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletSetupView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Sections/Wallet/WalletSetupView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/AngorSvgIconProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/AngorSvgIconProvider.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AmountControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AmountControl.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AmountControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AmountControl.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AmountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AmountOptions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AngorConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/AngorConverters.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Automation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Automation.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Badge.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Badge.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Badge.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Badge.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Common/LongTextView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Common/LongTextView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Common/LongTextView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Common/LongTextView.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/DesignTimePreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/DesignTimePreset.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ErrorSummary.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ErrorSummary.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ErrorSummary.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ErrorSummary.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Feerate/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Feerate/Controller.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Header.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Header.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Header.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Header.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/IconLabel.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/IconLabel.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/IconLabel.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/IconLabel.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/List.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/List.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/List.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/List.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/PageContainer.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/PageContainer.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/PageContainer.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/PageContainer.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Pane.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Pane.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Pane.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Pane.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Password/PasswordView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/Password/PasswordView.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ProjectCard.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ProjectCard.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ProjectCard.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/ProjectCard.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/QRGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/QRGenerator.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/SectionItem.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/SectionItem.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Controls/SectionItem.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Controls/SectionItem.axaml.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Resources/Icons.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Resources/Icons.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/IValidations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/IValidations.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/IWalletContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/IWalletContext.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/ImageUriChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/ImageUriChecker.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/LightningAddressValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/LightningAddressValidator.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/Nip05Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/Nip05Validator.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/UIPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/UIPreferences.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/UIServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/UIServices.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/ValidationShared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/ValidationShared.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/Validations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/Validations.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/WalletContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/WalletContext.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Services/WalletContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Services/WalletContextExtensions.cs -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Automation.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Automation.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Border.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Border.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Button.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Button.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/CalendarDatePicker.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/CalendarDatePicker.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Cards.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Cards.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/EdgePanel.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/EdgePanel.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/FlyoutPresenter.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/FlyoutPresenter.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/HeaderedContainer.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/HeaderedContainer.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/OverlayBorder.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/OverlayBorder.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/SlimDataGrid.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/SlimDataGrid.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/Styles.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/TextBlock.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/TextBlock.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/TextBox.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/TextBox.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/AngorApp/UI/Shared/Styles/ToggleButton.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/AngorApp/UI/Shared/Styles/ToggleButton.axaml -------------------------------------------------------------------------------- /src/Angor/Avalonia/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Directory.Build.props -------------------------------------------------------------------------------- /src/Angor/Avalonia/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/Directory.Packages.props -------------------------------------------------------------------------------- /src/Angor/Avalonia/angor-app-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/angor-app-icon-dark.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/angor-app-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/angor-app-icon-light.png -------------------------------------------------------------------------------- /src/Angor/Avalonia/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/azure-pipelines.yml -------------------------------------------------------------------------------- /src/Angor/Avalonia/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Avalonia/global.json -------------------------------------------------------------------------------- /src/Angor/Client/Angor.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Angor.Client.csproj -------------------------------------------------------------------------------- /src/Angor/Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/App.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/BalanceDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/BalanceDisplay.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/DatePicker.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/DatePicker.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/FounderProjectItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/FounderProjectItem.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/Icon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/Icon.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/MessageComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/MessageComponent.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/RawTransactionModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/RawTransactionModal.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/ShowQrCode.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/ShowQrCode.razor -------------------------------------------------------------------------------- /src/Angor/Client/Components/datepicker.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Components/datepicker.razor.css -------------------------------------------------------------------------------- /src/Angor/Client/Models/DirectMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/DirectMessage.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/FeeCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/FeeCalculation.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/FlattenedProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/FlattenedProjectTest.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/FounderProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/FounderProject.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/InvestmentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/InvestmentState.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/Investments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/Investments.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/InvestorProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/InvestorProject.cs -------------------------------------------------------------------------------- /src/Angor/Client/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Models/Project.cs -------------------------------------------------------------------------------- /src/Angor/Client/NetworkConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/NetworkConfiguration.cs -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Browse.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Browse.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/CheckTransactionCode.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/CheckTransactionCode.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Create.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Create.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/DebugPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/DebugPage.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Founder.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Founder.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Index.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Invest.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Invest.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Investor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Investor.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Penalties.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Penalties.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Penalty.razor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Recover.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Recover.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Release.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Release.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Settings.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Settings.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Signatures.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Signatures.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Spend.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Spend.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/TrxDecoder.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/TrxDecoder.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Unfunded.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Unfunded.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/View.razor -------------------------------------------------------------------------------- /src/Angor/Client/Pages/Wallet.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Pages/Wallet.razor -------------------------------------------------------------------------------- /src/Angor/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Program.cs -------------------------------------------------------------------------------- /src/Angor/Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Angor/Client/Services/ClipboardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/ClipboardService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/CurrencyRateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/CurrencyRateService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/CurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/CurrencyService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/EncryptionService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/FeatureFlagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/FeatureFlagService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/HtmlSanitizerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/HtmlSanitizerService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/HtmlStripperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/HtmlStripperService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IClipboardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IClipboardService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/ICurrencyRateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/ICurrencyRateService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/ICurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/ICurrencyService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IFeatureFlagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IFeatureFlagService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IHtmlSanitizerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IHtmlSanitizerService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IHtmlStripperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IHtmlStripperService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IMessageService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IPasswordCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IPasswordCacheService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IWalletUIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IWalletUIService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/IconService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/IconService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/MessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/MessageService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Services/WalletUIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Services/WalletUIService.cs -------------------------------------------------------------------------------- /src/Angor/Client/Shared/BaseComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/BaseComponent.cs -------------------------------------------------------------------------------- /src/Angor/Client/Shared/FeeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/FeeData.cs -------------------------------------------------------------------------------- /src/Angor/Client/Shared/FeeSelector.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/FeeSelector.razor -------------------------------------------------------------------------------- /src/Angor/Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Angor/Client/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /src/Angor/Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/Angor/Client/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /src/Angor/Client/Shared/NavMenuState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/NavMenuState.cs -------------------------------------------------------------------------------- /src/Angor/Client/Shared/NotificationComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/NotificationComponent.razor -------------------------------------------------------------------------------- /src/Angor/Client/Shared/PasswordComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Shared/PasswordComponent.razor -------------------------------------------------------------------------------- /src/Angor/Client/Storage/ClientStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Storage/ClientStorage.cs -------------------------------------------------------------------------------- /src/Angor/Client/Storage/ICacheStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Storage/ICacheStorage.cs -------------------------------------------------------------------------------- /src/Angor/Client/Storage/IClientStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Storage/IClientStorage.cs -------------------------------------------------------------------------------- /src/Angor/Client/Storage/IWalletStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Storage/IWalletStorage.cs -------------------------------------------------------------------------------- /src/Angor/Client/Storage/LocalSessionStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Storage/LocalSessionStorage.cs -------------------------------------------------------------------------------- /src/Angor/Client/Storage/WalletStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/Storage/WalletStorage.cs -------------------------------------------------------------------------------- /src/Angor/Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/_Imports.razor -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/css/app.css -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/css/dashboard.css -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/about.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/actions.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/add.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/addresses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/addresses.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/alert-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/alert-triangle.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/angor-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/angor-logo.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/approved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/approved.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/arrow-left.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/balance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/balance.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/banner.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/block.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/browse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/browse.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/btc.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/calculator.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/calendar.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/change.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/change.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/chat.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/check-circle.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/check.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/chevron-up.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/circle-check.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/claim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/claim.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/clock-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/clock-circle.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/clock-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/clock-square.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/close-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/close-circle.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/collapse.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/copy.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/cup.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/currency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/currency.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/dark_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/dark_mode.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/date.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/delete.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/deploy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/deploy.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/deselect-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/deselect-all.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/economy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/economy.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/edit.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/expand.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/explorer.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/fee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/fee.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/founder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/founder.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/github.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/grid.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/hamburger-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/hamburger-menu.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/identifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/identifier.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/image.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/indexer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/indexer.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/info.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/install.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/investment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/investment.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/key.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/light_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/light_mode.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/lightning.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/link.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/list.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/lock.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/maximize.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/menu.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/menu_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/menu_close.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/menu_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/menu_open.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/minimize.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/name.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/network.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/next.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/paste.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/pending.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/pendingmessage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/pendingmessage.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/percent.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/plus.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/portfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/portfolio.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/primary.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/priority.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/priority.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/progress.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/project.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/project_explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/project_explorer.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/qr-code.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/receive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/receive.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/recover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/recover.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/recovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/recovery.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/refresh.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/refund.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/refund.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/relay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/relay.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/release-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/release-all.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/release.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/release.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/remove.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/rocket.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/sad-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/sad-circle.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/search.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/select-all.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/send.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/server-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/server-path.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/set.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/set.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/settings.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/shield-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/shield-minus.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/shield-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/shield-plus.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/shield-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/shield-star.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/shield.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/sidebar.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/signature.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/spend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/spend.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/stage.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/stages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/stages.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/standard.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/statistics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/statistics.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/stats.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/target-missed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/target-missed.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/unlock.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/update.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/user.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/users.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/verified-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/verified-check.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/view-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/view-project.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/view.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/visibility-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/visibility-off.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/visibility.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/wallet.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/warning.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/icons/withdraw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/icons/withdraw.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/angor-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/angor-icon.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/angor-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/angor-logo.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/bitcoin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/bitcoin-logo.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/bitcoin.svg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/browse-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/browse-icon-192.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/desktop-installation-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/desktop-installation-screenshot.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/favicon.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/icon-192.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/icon-512.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/mobile-installation-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/mobile-installation-screenshot.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/no-image.jpg -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/settings-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/settings-icon-192.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/img/wallet-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/img/wallet-icon-192.png -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/js/app.js -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/assets/js/appUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/assets/js/appUpdate.js -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/index.html -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/lib/js-base64/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/lib/js-base64/LICENSE.md -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/lib/js-base64/base64.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/lib/js-base64/base64.mjs -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/nostr-tools-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/nostr-tools-methods.js -------------------------------------------------------------------------------- /src/Angor/Client/wwwroot/service-crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Client/wwwroot/service-crypto.js -------------------------------------------------------------------------------- /src/Angor/Shared/Angor.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Angor.Shared.csproj -------------------------------------------------------------------------------- /src/Angor/Shared/DerivationOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/DerivationOperations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/HdOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/HdOperations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/IDerivationOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/IDerivationOperations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/INetworkConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/INetworkConfiguration.cs -------------------------------------------------------------------------------- /src/Angor/Shared/INetworkStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/INetworkStorage.cs -------------------------------------------------------------------------------- /src/Angor/Shared/IPsbtOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/IPsbtOperations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/IWalletOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/IWalletOperations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/AccountBalanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/AccountBalanceInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/AccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/AccountInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/AddressBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/AddressBalance.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/AddressInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/AddressInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/FeeEstimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/FeeEstimation.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/FeeEstimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/FeeEstimations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/FounderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/FounderContext.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/FounderPubKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/FounderPubKeys.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/InvestorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/InvestorContext.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/NostrRelayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/NostrRelayInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/OperationResult.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/Outpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/Outpoint.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectIndexerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectIndexerData.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectInvestment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectInvestment.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectMetadata.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectScriptType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectScriptType.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectScripts.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectSeeders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectSeeders.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/ProjectStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/ProjectStats.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/PsbtData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/PsbtData.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/QueryTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/QueryTransaction.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/QueryTransactionInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/QueryTransactionInput.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/QueryTransactionOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/QueryTransactionOutput.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SendInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SettingsUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SettingsUrl.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SignData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SignData.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SignRecoveryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SignRecoveryRequest.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SignServiceLookupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SignServiceLookupItem.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SignatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SignatureInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/SignatureInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/SignatureInfoItem.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/Stage.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/TransactionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/TransactionInfo.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/UtxoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/UtxoData.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/Wallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/Wallet.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Models/WalletWords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Models/WalletWords.cs -------------------------------------------------------------------------------- /src/Angor/Shared/NetworkMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/NetworkMapper.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Networks/Angornet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Networks/Angornet.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Networks/BitcoinMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Networks/BitcoinMain.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Networks/BitcoinSignet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Networks/BitcoinSignet.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Networks/BitcoinTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Networks/BitcoinTest.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Networks/BitcoinTest4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Networks/BitcoinTest4.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Networks/Networks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Networks/Networks.cs -------------------------------------------------------------------------------- /src/Angor/Shared/ProjectIdentifierDerivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/ProjectIdentifierDerivation.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/FounderTransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/FounderTransactionActions.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/IFounderTransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/IFounderTransactionActions.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/IInvestorTransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/IInvestorTransactionActions.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/ISeederTransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/ISeederTransactionActions.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/InvestorTransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/InvestorTransactionActions.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/IInvestmentScriptbuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/IInvestmentScriptbuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/IProjectScriptsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/IProjectScriptsBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/ISeederScriptTreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/ISeederScriptTreeBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/ITaprootScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/ITaprootScriptBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/InvestmentScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/InvestmentScriptBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/ProjectScriptsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/ProjectScriptsBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/SeederScriptTreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/SeederScriptTreeBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/Scripts/TaprootScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/Scripts/TaprootScriptBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/SeederTransactionActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/SeederTransactionActions.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Protocol/TransactionBuilders/SpendingTransactionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Protocol/TransactionBuilders/SpendingTransactionBuilder.cs -------------------------------------------------------------------------------- /src/Angor/Shared/PsbtOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/PsbtOperations.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/ApplicationLogicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/ApplicationLogicService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IAngorIndexerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IAngorIndexerService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IApplicationLogicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IApplicationLogicService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IEncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IEncryptionService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IIndexerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IIndexerService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/INetworkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/INetworkService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/INostrCommunicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/INostrCommunicationFactory.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IRelayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IRelayService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IRelaySubscriptionsHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IRelaySubscriptionsHandling.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/ISerializer.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/ISignService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/ISignService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/IndexerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/IndexerService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/MempoolIndexerAngorApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/MempoolIndexerAngorApi.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/MempoolIndexerMappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/MempoolIndexerMappers.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/MempoolSpaceIndexerApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/MempoolSpaceIndexerApi.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/NetworkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/NetworkService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/NostrCommunicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/NostrCommunicationFactory.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/RelayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/RelayService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/RelaySubscriptionsHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/RelaySubscriptionsHandling.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/Serializer.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Services/SignService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Services/SignService.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Utilities/AmountExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Utilities/AmountExtension.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Utilities/AssemblyInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Utilities/AssemblyInfoHelper.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Utilities/DateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Utilities/DateExtension.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Utilities/LinqExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Utilities/LinqExtension.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Utilities/NostrConversionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Utilities/NostrConversionHelper.cs -------------------------------------------------------------------------------- /src/Angor/Shared/Utilities/UnixDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/Utilities/UnixDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Angor/Shared/WalletOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Angor/Shared/WalletOperations.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Testing/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/cypress.config.js -------------------------------------------------------------------------------- /src/Testing/e2e/browse.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/e2e/browse.cy.js -------------------------------------------------------------------------------- /src/Testing/e2e/wallet.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/e2e/wallet.cy.js -------------------------------------------------------------------------------- /src/Testing/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/fixtures/example.json -------------------------------------------------------------------------------- /src/Testing/support/commands/browse_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/support/commands/browse_commands.js -------------------------------------------------------------------------------- /src/Testing/support/commands/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/support/commands/commands.js -------------------------------------------------------------------------------- /src/Testing/support/commands/wallet_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/support/commands/wallet_commands.js -------------------------------------------------------------------------------- /src/Testing/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/support/e2e.js -------------------------------------------------------------------------------- /src/Testing/support/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/block-core/angor/HEAD/src/Testing/support/enums.js --------------------------------------------------------------------------------