-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename to holoom and add readme (#9)
- Loading branch information
Showing
70 changed files
with
306 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
{ | ||
"cSpell.words": ["Dalek", "Holochain", "pubkey", "Solana", "zome", "zomes"] | ||
"cSpell.words": [ | ||
"Dalek", | ||
"Holochain", | ||
"Holoom", | ||
"pubkey", | ||
"Solana", | ||
"zome", | ||
"zomes" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Holoom | ||
|
||
Tools for weaving blockchain data into holochain. | ||
|
||
## Key Components | ||
|
||
### Holoom hApp | ||
|
||
A Holoom hApp network provides a space in which users can: | ||
|
||
- Register a unique username to their holochain agent (made possible by an authority agent) | ||
- Bind their various blockchain wallets to their agent with use of signatures | ||
- Curate freeform metadata strings linked to their own agent | ||
|
||
### `@holoom/client` | ||
|
||
An npm library that provides helpers for interacting with a Holoom hApp agent, whether that be via the holo network, or with a conductor directly. | ||
|
||
### Holoom Rocket Server | ||
|
||
Provides a REST API wrapper for a Holoom conductor instance (usually the authority agent). This is useful for building services around a Holoom network that are intended to be accessed without requiring ownership of an agent within the network. | ||
|
||
## The Authority Agent | ||
|
||
Each Holoom network is intialised with an authority agent specified in the network's DNA properties. The role of the authority agent is to maintain a registry of unique usernames, and is expected to be run on a server maintained by the instigator of the network. The authority agent is considered to be a partially trusted node in that users can validate its correct execution, but cannot prevent its downtime or censorship decisions. | ||
|
||
## Testing | ||
|
||
### `crates/holoom_dna_tests` | ||
|
||
This provides coverage for the holoom hApp's various zomes, and can be invoked locally using `npm run test:dna`. | ||
|
||
### `packages/e2e` | ||
|
||
This provides coverage for using the hApp in conjunction with the `@holoom/client` and `holoom_rocket_server` components. |
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
crates/game_identity_tests/Cargo.toml → crates/holoom_dna_tests/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.