Polygon FastLane
  • What is Polygon FastLane?
    • Overview
    • Design Principles
    • Components
    • Component Diagram
  • Getting Started as a Validator
    • Getting Started as a Validator
    • Connecting to a FastLane Sentry Node
      • Finding Your Enode Address & Peer ID
      • Adding FastLane as a Static Peer
    • Patching Your Sentry Nodes With The FastLane Patch
      • Installing from source
        • Patch Download
        • Patch Installation
      • Installing from packages
  • Withdrawing Validator Revenue
    • Validator Vault
      • Connect an Eligible Wallet
      • Revenue Redemption (withdrawal)
  • Searcher Guides
    • Getting Started as a Searcher
      • Solver Call Data
      • Submission Methods
      • Migration Guide for Searchers
    • Bundles (Backruns)
      • Bundle Format
      • Bid Submission
      • Bundle Requirements
      • Full Example
      • Subscribe Events
    • 4337 Bundles Integration Guide
      • Overview
      • How it works
      • RPC Reference
      • Examples
    • Searcher Contract Integration
      • Safety Considerations
      • atlasSolverCall
      • Direct Implementation
      • Proxy Implementation
      • Solver Concepts
      • Altas Bonding Concept
      • Bond atlETH
      • Estimating Solver Gas Charges
    • Addresses & Endpoints
    • Helpers
    • Common Mistakes
    • Atlas SDK's
  • Tools and Analytics
    • FastLane Bundle Explorer
      • Features Overview
      • Key Components
      • Usage Example
      • Error Codes & Troubleshooting
  • Key Concepts
    • Transaction Encoding
  • INFRASTRUCTURE
    • Health Status Endpoint
  • Reference
    • Relay JSON-RPC API
    • Relay REST API
    • Glossary of Terms
Powered by GitBook
On this page
  1. Getting Started as a Validator
  2. Patching Your Sentry Nodes With The FastLane Patch
  3. Installing from source

Patch Installation

PreviousPatch DownloadNextInstalling from packages

Last updated 2 years ago

  1. Download bor and navigate to the directory:

git clone https://github.com/maticnetwork/bor.git
cd bor
  1. Check out the latest release:

git checkout RELEASE_TAG

where RELEASE_TAG is the tag of the release version that you install.

For instance: git checkout v0.2.16

a list of the latest bor releases can be found at

  1. Apply the patch which will make your sentry announce all transactions:

git apply /path/to/sentry-patch/announce_only.patch
  1. Stop Bor:

sudo service bor stop
  1. Install Bor as normal:

make bor-all

or

docker build --tag bor:latest .
  1. Start Bor:

sudo service bor start

https://github.com/maticnetwork/bor/releases
<- Back to "Installing from Source"