Ternoa Wiki
LearnBuildMaintain
  • Learn
    • Getting Started
      • Ternoa Blockchain
      • Building on Ternoa
    • Ternoa Wallet
      • Download
      • Create your Wallet
      • NFT
        • Create NFT
        • Send NFT
      • Account
        • Wallet Address
        • Change Password
        • Mnemonic Key
        • Contact
      • Nova Wallet
    • Ternoa Bridge
      • Get Started - Mainnet
        • Using the Bridge
        • ERC20 CAPS <-> Native CAPS
        • ERC20 CAPS <-> BEP20 CAPS
      • Get Started - Alphanet
        • ETH <-> CAPS
    • Asset Management
      • CAPS
        • Buy CAPS
        • Send/Receive CAPS
        • Claim Test CAPS
    • Staking
      • How to stake on Ternoa
    • Glossary
  • Build
    • Introduction
      • Alphanet
      • Mainnet
    • SDK Javascript
      • Installation
      • Quickstart
      • Reference
  • Maintain
    • How to run a validator on Ternoa
    • Requirements
    • Install Ternoa
  • General
    • Ambassador Program
    • Accelerator Program
    • Community
  • Resources
    • 🔍Ternoa Explorer
    • 📡Ternoa network status
Powered by GitBook
On this page
  • IPFS Server
  • Indexer
  • Dictionary
  • RPC Chain WSS

Was this helpful?

  1. Build
  2. Introduction

Alphanet

PreviousIntroductionNextMainnet

Last updated 2 years ago

Was this helpful?

IPFS Server

IPFS is a great fit for storing and addressing data for NFTs. IPFS Server URL :

Note : Access to IPFS API should be using API Keys. You have to add the following header : apiKey=xxxxxxxxxxxxx

curl --location --request POST 'https://ipfs-dev.trnnfr.com/api/v0/add' \
--header 'apiKey: xxxxxxx.xxxxxxxxxxxxxxxxx' \
--form 'file=@"/path/to/file.jpg"'

Another example in NodeJS :

var request = require('request');
var fs = require('fs');
var options = {
  'method': 'POST',
  'url': 'https://ipfs-dev.trnnfr.com/api/v0/add',
  'headers': {
    'apiKey': 'xxxxxxx.xxxxxxxxxxxxxxxxx'
  },
  formData: {
    'file': {
      'value': fs.createReadStream('/path/to/file.jpg'),
      'options': {
        'filename': 'file.jpg',
      }
    }
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

Indexer

Dictionary

RPC Chain WSS

Indexer URL :

Dictionary URL :

RPC Chain WSS:

https://ipfs-dev.trnnfr.com/
https://indexer-alphanet.ternoa.dev/
https://dictionary-alphanet.ternoa.dev/
https://alphanet.ternoa.com