Trusted network
🚧 Experimental state 🚧
A store that lets you build trusted networks of identities.
The store is defined by the "root trust" which has the responsibility in the beginning to trust additional identities. Later, these identities can add more identities to the network.
Trusted identities can also be revoked.
Distributing content among untrusted peers will be unreliable, and not resilient to malicious parties that start to participate in the replication process with large amount (>> min replicas) of nodes followed by shutting them down simultaneously (no way for the original peers recover all lost data). To mitigate this, you can launch your program in a "Network", which is basically a list of nodes that trust each other. Symbolically you could thing of this as a VPC.
To do this, you only have to implement the "Network" interface:
import { Peerbit, Network } from 'peerbit'
import { Log } from '@peerbit/log'
import { Program } from '@peerbit/program'
import { TrustedNetwork } from '@peerbit/trusted-network'
import { field, variant } from '@dao-xyz/borst-ts'
@variant("string_store")
@network({property: 'network'})
class StringStore extends Program
{
@field({type: Store})
log: Log<Uint8Array>
@field({type: TrustedNetwork})
network: TrustedNetwork
constructor(properties:{ log: Store<any>, network: TrustedNetwork }) {
this.log = properties.store
this.network = properties.network;
}
async setup()
{
await store.setup({ encoding: ... , canPerform: ..., index: {... canRead ...}})
await trustedNetwork.setup()
}
}
const peer1 = await Peerbit.create(LIBP2P_CLIENT, {... options ...})
const peer2 = await Peerbit.create(LIBP2P_CLIENT_2, {... options ...})
const programPeer1 = await peer1.open(new StringStore({log: new Log(), network: new TrustedNetwork()}), {... options ...})
await program.network.add(peer2.identity.publicKey)
const programPeer2 = await peer2.open(programPeer1.address, {... options ...})
await peer2.join(programPeer2)
See this test(s) for working examples