
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@peerbit/trusted-network
Advanced tools
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 // this is a database storing all peers. Peers that are trusted can add new peers
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()
}
}
// Later
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 ...})
// add trust to another peer
await program.network.add(peer2.identity.publicKey)
// peer2 also has to "join" the network, in practice this means that peer2 adds a record telling that its Peer ID trusts its libp2p Id
const programPeer2 = await peer2.open(programPeer1.address, {... options ...})
await peer2.join(programPeer2) // This might fail with "AccessError" if you do this too quickly after "open", because it has not yet received the full trust graph from peer1 yet
See this test(s) for working examples
FAQs
Access controller that operates on a DB
The npm package @peerbit/trusted-network receives a total of 795 weekly downloads. As such, @peerbit/trusted-network popularity was classified as not popular.
We found that @peerbit/trusted-network demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.