🔬
InfraBlockchain-Antelope
  • Introduction To InfraBlockchain-Antelope
    • What is InfraBlockchain-Antelope?
    • Resources and Essentials
    • Products and Supports
  • Users
    • Accounts and Wallets
  • Block Producers
    • Getting started with InfraBlockchain-Antelope Block Producers
      • What is InfraBlockchain-Antelope Block Producer node
      • Types of nodes
      • InfraBlockchain-Antelope Block Producer Requirements
      • Setting up InfraBlockchain-Antelope Block Producer node
    • InfraBlockchain-Antelope Network Resources
  • For Developers
    • Getting started for developers
    • Overview
      • Core Concepts
      • Technical Features
      • Protocol
        • Consensus Protocol
        • Transactions Protocol
        • Network Peer Protocol
        • Accounts & Permissions
    • Developer guides: InfraBlockchain-Antelope Native
      • Platform & Toolchain
      • Development Environment InfraBlockchain-Antelope Native
        • Try InfraBlockchain-Antelope
        • Prerequisites
        • Before You Begin
        • Install the Contract Dev Toolkit
        • Create Development Wallet
        • Start infra-keychain and infra-node
        • Create Test Accounts
      • Smart Contract Development
        • Hello World Contract
        • Deploy, Issue & Transfer Tokens
        • Understanding ABI Files
        • Data Persistence
        • Secondary Indices
        • Adding Inline Actions
        • Inline Actions to External Contracts
        • Creating & Linking Custom Permissions
        • Payable Actions
      • InfraBlockchain-Antelope System Contracts
        • infra.system
          • authproducer
          • addsystoken
          • rmvsystoken
          • settxfee
          • unsettxfee
        • sys.tokenabi
          • settokenmeta
          • issue
          • transfer
          • txfee
          • retire
      • Tutorials
        • infra-cli
        • infrablockchain-js
        • Hello World Contract
    • Developer guides: InfraBlockchain EVM
Powered by GitBook
On this page
  • Step 1: Install binaries
  • Mac OS X Brew Install:
  • Ubuntu 18.04 Debian Package Install:
  • Ubuntu 16.04 Debian Package Install:
  • CentOS RPM Package Install:
  • Step 2: Setup a development directory, stick to it.
  • What's Next?
  1. For Developers
  2. Developer guides: InfraBlockchain-Antelope Native
  3. Development Environment InfraBlockchain-Antelope Native

Before You Begin

PreviousPrerequisitesNextInstall the Contract Dev Toolkit

Last updated 1 year ago

Step 1: Install binaries

To get started as quickly as possible we recommend using pre-built binaries. Building from source is a more advanced option but will set you back an hour or more and you may encounter build errors.

You can find how to build InfraBlockchain-Antelope from source .

The below commands will download binaries for respective operating systems.

Mac OS X Brew Install:

brew Install is not working now

brew tap infrablockchain/infrablockchain
brew install infrablockchain

If you don't have Brew installed, follow the installation instructions on the .

Ubuntu 18.04 Debian Package Install:

wget https://github.com/InfraBlockchain/infrablockchain/releases/download/v2.3.0-rc1/infrablockchain-2.3.0-rc1-amd64.deb
sudo apt install ./infrablockchain-2.3.0-rc1-amd64.deb

Ubuntu 16.04 Debian Package Install:

wget https://github.com/InfraBlockchain/infrablockchain/releases/download/v2.3.0-rc1/infrablockchain-2.3.0-rc1-amd64.deb
sudo apt install ./infrablockchain-2.3.0-rc1-amd64.deb

CentOS RPM Package Install:

wget https://github.com/InfraBlockchain/infrablockchain/releases/download/v2.3.0-rc1/infrablockchain-2.3.0-rc1.x86_64.rpm
sudo yum install ./infrablockchain-2.3.0-rc1.x86_64.rpm

If you have previous versions of Infrablockchain installed on your system, please uninstall before proceeding.

Step 2: Setup a development directory, stick to it.

You're going to need to pick a directory to work from, it's suggested to create a contracts directory somewhere on your local drive.

mkdir contracts
cd contracts

What's Next?

: Steps to install the InfraBlockchain-Antelope Contract Development Toolkit (CDT) on your system.

here
official Brew website
Install the CDT