Skip to content

Commit

Permalink
Bump headless
Browse files Browse the repository at this point in the history
  • Loading branch information
U-lis committed Sep 23, 2024
1 parent 06238aa commit e1cde28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NineChronicles.Headless
Submodule NineChronicles.Headless updated 45 files
+4 −2 .github/workflows/deploy_gh_pages.yaml
+324 −0 CONTRIBUTING.md
+1 −1 Lib9c
+0 −4 Libplanet.Headless/Hosting/LibplanetNodeService.cs
+0 −32 NineChronicles.Headless.Executable.Tests/Commands/ActionCommandTest.cs
+3 −26 NineChronicles.Headless.Executable.Tests/Commands/TxCommandTest.cs
+0 −43 NineChronicles.Headless.Executable/Commands/ActionCommand.cs
+0 −1 NineChronicles.Headless.Executable/Commands/TxCommand.cs
+1 −0 NineChronicles.Headless.Executable/Program.cs
+5 −2 NineChronicles.Headless.Executor/NineChronicles.Headless.Executor.csproj
+43 −13 NineChronicles.Headless.Executor/Program.cs
+44 −0 NineChronicles.Headless.Tests/Action/ActionContext.cs
+4 −24 NineChronicles.Headless.Tests/ArenaParticipantsWorkerTest.cs
+3 −10 NineChronicles.Headless.Tests/Common/Fixtures.cs
+17 −0 NineChronicles.Headless.Tests/GraphQLTestUtils.cs
+0 −19 NineChronicles.Headless.Tests/GraphTypes/ActionQueryTest.cs
+41 −6 NineChronicles.Headless.Tests/GraphTypes/GraphQLTestBase.cs
+0 −73 NineChronicles.Headless.Tests/GraphTypes/StandaloneMutationTest.cs
+122 −440 NineChronicles.Headless.Tests/GraphTypes/StandaloneQueryTest.cs
+0 −91 NineChronicles.Headless.Tests/GraphTypes/StandaloneSubscriptionTest.cs
+59 −59 NineChronicles.Headless.Tests/GraphTypes/TransactionHeadlessQueryTest.cs
+6 −0 NineChronicles.Headless.Tests/NineChronicles.Headless.Tests.csproj
+1 −1 NineChronicles.Headless/BlockChainContext.cs
+22 −0 NineChronicles.Headless/Domain/Model/BlockChain/Block.cs
+10 −0 NineChronicles.Headless/GraphQLService.cs
+0 −29 NineChronicles.Headless/GraphTypes/ActionQuery.cs
+0 −75 NineChronicles.Headless/GraphTypes/ActivationStatusMutation.cs
+0 −56 NineChronicles.Headless/GraphTypes/ActivationStatusQuery.cs
+1 −0 NineChronicles.Headless/GraphTypes/BlockHeaderType.cs
+11 −48 NineChronicles.Headless/GraphTypes/NodeStatus.cs
+0 −5 NineChronicles.Headless/GraphTypes/StandaloneMutation.cs
+61 −185 NineChronicles.Headless/GraphTypes/StandaloneQuery.cs
+7 −29 NineChronicles.Headless/GraphTypes/StandaloneSubscription.cs
+1 −0 NineChronicles.Headless/HostBuilderExtensions.cs
+2 −0 NineChronicles.Headless/NineChroniclesNodeService.cs
+87 −0 NineChronicles.Headless/Repositories/BlockChain/BlockChainRepository.cs
+14 −0 NineChronicles.Headless/Repositories/BlockChain/IBlockChainRepository.cs
+13 −0 NineChronicles.Headless/Repositories/StateTrie/IStateTrieRepository.cs
+87 −0 NineChronicles.Headless/Repositories/StateTrie/StateTrieRepository.cs
+12 −0 NineChronicles.Headless/Repositories/Transaction/ITransactionRepository.cs
+31 −0 NineChronicles.Headless/Repositories/Transaction/TransactionRepository.cs
+13 −0 NineChronicles.Headless/Repositories/WorldState/IWorldStateRepository.cs
+32 −0 NineChronicles.Headless/Repositories/WorldState/WorldStateRepository.cs
+3 −7 NineChronicles.Headless/StandaloneContext.cs
+15 −226 README.md

0 comments on commit e1cde28

Please sign in to comment.