HackMD
    • Sharing Link copied
    • /edit
    • View mode
      • Edit mode
      • View mode
      • Book mode
      • Slide mode
      Edit mode View mode Book mode Slide mode
    • Note Permission
    • Read
      • Only me
      • Signed-in users
      • Everyone
      Only me Signed-in users Everyone
    • Write
      • Only me
      • Signed-in users
      • Everyone
      Only me Signed-in users Everyone
    • More (Comment, Invitee)
    • Publishing
    • Commenting Enable
      Disabled Forbidden Owners Signed-in users Everyone
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Invitee
    • No invitee
    • Options
    • Versions and GitHub Sync
    • Transfer ownership
    • Delete this note
    • Template
    • Save as template
    • Insert from template
    • Export
    • Google Drive Export to Google Drive
    • Gist
    • Import
    • Google Drive Import from Google Drive
    • Gist
    • Clipboard
    • Download
    • Markdown
    • HTML
    • Raw HTML
Menu Sharing Help
Menu
Options
Versions and GitHub Sync Transfer ownership Delete this note
Export
Google Drive Export to Google Drive Gist
Import
Google Drive Import from Google Drive Gist Clipboard
Download
Markdown HTML Raw HTML
Back
Sharing
Sharing Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
More (Comment, Invitee)
Publishing
More (Comment, Invitee)
Commenting Enable
Disabled Forbidden Owners Signed-in users Everyone
Permission
Owners
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Invitee
No invitee
   owned this note    owned this note      
Published Linked with GitHub
Like BookmarkBookmarked
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Gossip Protocol Notes ## Desired Properties * nodes can broadcast transactions that will be reliably gossiped to the miners. * nodes can tune their contribution level to match the computing resources they have available. ## Radius Approach A: Define `radius` as the positive integer distance between the `node_id` and the `transaction.hash`. ```python node_id_as_int = int.from_bytes(node_id, 'big') txn_hash_as_int = int.from_bytes(transaction_hash, 'big') distance = abs(node_id_as_int - txn_hash_as_int) ``` B: Let nodes on the network specify their radius to each other. This is a value that can change over the course of a connection. C: Nodes are only expected to relay transactions that fall within their radius. D: Nodes prioritize their peer pool connections such that their connected peers fully *cover* the portion of the transaction keyspace that the node's radius covers. ### Control Flow Nodes can use `radius` as a control flow knob. Reducing their radius reduces how many transactions flow towards them. Increasing the radius increases how many transactions flow towards them. ### Peer Selection Nodes prioritize their peer pool connections as follows: 1. Ensure that the section of the transaction keyspace that the node is interested in is fully covered. 2. Ensure that any remaining part of the keyspace is covered. 3. Find peers that add redundancy to the coverage of the part of the keyspace the node's radius covers. Additionally, nodes prioritize peer connections with radius values similar to their own. The "emergent" topology of this network should be such that: 1. The majority of peers are within the keyspace covered by the node's `radius` 2. Connected peers are more likely to have a similar `radius` ### Problem: DOS mitigation Nodes with a radius that does not cover the full network have an incomplete view of the transaction pool. Multiple conflicting transactions from the same sender with the same `nonce` but different hashes will land in random different parts of the network. The result is that nodes with a small enough radius not have visibility into the other conflicting transactions. Once these transactions hit nodes with a large enough radius they will be filtered down with the extra ones evicted. This allows an attacker to flood the edges of the network where the lightest weight nodes live with more transaction volume than they would be able to introduce normally. Assuming the lightest nodes have an average radius of 5% of the keyspace, we could expect as many as 20x transactions to be passing around at the edge of the network. Intuition suggests that the effect of this attack would be predominantly felt by the light nodes, and should be reduced as traversal brings transactions into nodes with larger radius values. ### Problem: evicting invalid transactions Suppose the network has two transactions `A` and `B` which are both from the same sender and have the same `nonce`. Once `A` has been included, `B` should be dropped from the network. A stateless node who's radius only exposes them to `B` will not be able to detect that `B` is no longer valid as they do not have the state. Solution 1: Nodes can drop transactions who's proofs are too old. Small radius nodes shouldn't need to persist the transactions for a long time as their role is more as relays to ensure other light nodes can get their transactions into the core of the network. Solution 2: Nodes in the middle could send updated proofs for a transaction back along the wire when an invalid transaction is encountered. This might be a DOS vector against full nodes since proof production comes at a cost, but invalid transactions are effectively free. This also requires some strong-ish guarantee that these proofs will make their way back out to the edge of the network which would require some form of re-broadcasting... and probably introduces new DOS vectors since disceminating the proof might be another amplification attack vector.

Import from clipboard

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lost their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.


Upgrade

All
  • All
  • Team
No template.

Create a template


Upgrade

Delete template

Do you really want to delete this template?

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Sign in via SAML

or

Sign in via GitHub

Help

  • English
  • 中文
  • 日本語

Documents

Tutorials

Book Mode Tutorial

Slide Example

YAML Metadata

Resources

Releases

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions

Versions and GitHub Sync

Sign in to link this note to GitHub Learn more
This note is not linked with GitHub Learn more
 
Add badge Pull Push GitHub Link Settings
Upgrade now

Version named by    

More Less
  • Edit
  • Delete

Note content is identical to the latest version.
Compare with
    Choose a version
    No search result
    Version not found

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub

      Please sign in to GitHub and install the HackMD app on your GitHub repo. Learn more

       Sign in to GitHub

      HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Available push count

      Upgrade

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Upgrade

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully