WEMIX3.0
WEMIX3.0 (ENG)
WEMIX3.0 (ENG)
  • Introduction
    • Blockchain Basics
      • What is Blockchain?
      • Consensus Algorithm
      • Transactions
      • Gas
      • Account
  • Design
    • Architecture
    • Consensus
    • Governance
    • Minting
    • EIP1559
    • Eco Fund
    • Fee Delegation
    • Roadmap
  • Quick Start
    • Start Node
      • Use Binary
        • Command-line Option
      • Use Public API Server(RPC)
    • Connect Node
    • Account
      • Use MetaMask
    • Testnet Faucet
  • Install & Operation
    • End Node
      • System Requirements
      • Firewall Setting
      • Install Guide
    • Block Producer Node
      • System Requirements
      • Firewall Setting
      • Install Guide
    • Download
    • Operation Guide
  • dApp Developer
    • Smart Contract
      • Solidity
      • Precompiled Contracts
      • Sample Contracts
    • JSON-RPC
    • API Reference
      • Account APIs
      • Block APIs
      • Contract APIs
      • Transaction APIs
      • Event logs APIs
      • Tokens APIs
  • Tutorial
    • Create a Wallet
    • Receive Test Coin
    • Create Smart Contract
      • Remix
      • Truffle
      • Hardhat
    • ERC-20 Token
      • Write ERC-20 Contract
      • Check ERC-20 Token
      • Send ERC-20 Token
      • Check ERC-20 Token API
      • Burn ERC-20 Token
    • ERC-721 Token
      • Write ERC-721 Contract
      • Minting ERC-721 Token
      • Check ERC-721 Token API
      • Burn ERC-721 Token
    • Use Fee Delegation
  • Manual
    • Explorer
    • Wallet
  • FAQ
Powered by GitBook
On this page
  • Node Connection
  • Node Settings
  1. Quick Start

Connect Node

Node Connection

The method to connect through the locally installed gwemix RPC web server is as follows.

gwemix attach rpc:http://localhost:8588

The method to connect through the locally installed gwemix IPC file is as follows.

gwemix attach {data_folder}/gwemix.ipc

Downloading and unzipping the binary {data_folder}, the shell script file called gwemix.sh is located under the bin directory. The method to connect to a node through an IPC file using gwemix.sh is as follows.

{data_folder}/bin/gwemix.sh console

Node Settings

When using gwemix.sh, it is possible to set node execution options in advance by creating a file called .rc in {data_folder}.

PORT=8588
DISCOVER=1        # 1 for enable discovery mode, 0 for disable discovery mode
TESTNET=1         # 1 for Testnet or remove this line for Mainnet
SYNC_MODE=full
GWEMIX_OPTS="--rpc.allow-unprotected-txs"

Set up as above and run gwemix, gwemixwill run with the following run line options.

gwemix --http.port 8588 --wemix-testnet --syncmode full --rpc.allow-unprotected-txs 
PreviousUse Public API Server(RPC)NextAccount