Skip to content

Latest commit

 

History

History
184 lines (131 loc) · 9.03 KB

api-endpoints.md

File metadata and controls

184 lines (131 loc) · 9.03 KB

API Endpoints

Secret Network Community API Endpoints

Secret-4 Mainnet

Binaries

Explorers

API Endpoints

The API endpoints are offered to the community for free, please be mindful and don't spam them.

Note: Public APIs. Do not use in production apps!

Type API Courtesy of
RPC https://secret-4.api.trivium.network:26657 Trivium | Trivium.Network
RPC https://rpc.roninventures.io Ronin Ventures
RPC https://scrt-rpc.blockpane.com (archive node) [block pane]
gRPC-web https://secret-4.api.trivium.network:9091 Trivium | Trivium.Network
gRPC-web https://web-rpc.roninventures.io Ronin Ventures
gRPC-web http://scrt-rpc.blockpane.com:9091 (archive node) [block pane]
LCD https://secret-4.api.trivium.network:1317 Trivium | Trivium.Network
LCD https://api.roninventures.io Ronin Ventures
LCD https://scrt-lcd.blockpane.com (archive node) [block pane]

Seed Nodes

  • 6fb7169f7630da9468bf7cc0bcbbed1eb9ed0d7b@scrt-seed-01.scrtlabs.com:26656
  • ab6394e953e0b570bb1deeb5a8b387aa0dc6188a@scrt-seed-02.scrtlabs.com:26656
  • 9cdaa5856e0245ecd73bd464308fb990fbc53b57@scrt-seed-03.scrtlabs.com:26656

Pulsar-2 Testnet

Binaries

Explorers

Faucet

API Endpoints

Type API Courtesy of
RPC https://rpc.pulsar.griptapejs.com Stake or Die!
RPC https://testnet-rpc.roninventures.io Ronin Ventures
Websocket wss://rpc.pulsar.griptapejs.com/websocket Stake or Die!
gRPC-web http://rpc.pulsar.griptapejs.com:9091 Stake or Die!
gRPC-web https://testnet-web-rpc.roninventures.io Ronin Ventures
LCD http://testnet.securesecrets.org:1317 Trivium | Trivium.Network
LCD https://api.pulsar.griptapejs.com Stake or Die!
LCD https://testnet-api.roninventures.io Ronin Ventures

Peer Nodes

Usage Examples

RPC

With secretcli (replace "$URL"):

$ secretcli config node "$URL"
$ secretcli config chain-id secret-4 # or pulsar-2

Or:

$ secretcli status --node "$URL" --chain-id secret-4 # or --chain-id pulsar-2

GRPC-Web

With secretjs@beta (replace "$URL"):

import { SecretNetworkClient } from "secretjs";

const grpcWebUrl = "$URL";
const chainId = "secret-4"; // or "pulsar-2"

// Readonly Client
const secretjs = await SecretNetworkClient.create({
  grpcWebUrl,
  chainId,
});

// Or a signer client with Keplr integration
await window.keplr.enable(chainId);
const [{ address: myAddress }] = await keplrOfflineSigner.getAccounts();

const secretjs = await SecretNetworkClient.create({
  grpcWebUrl,
  chainId,
  wallet: window.getOfflineSignerOnlyAmino(chainId),
  walletAddress: myAddress,
  encryptionUtils: window.getEnigmaUtils(chainId),
});

LCD

Swagger/OpenAPI UI can be found under $URL/swagger/ and $URL/openapi/.

With (the deprecated) secretjs (replace "$URL"):

import { CosmWasmClient, SigningCosmWasmClient } from "secretjs";

const lcdUrl = "$URL";
const chainId = "secret-4"; // or "pulsar-2"

// Readonly Client
const queryJs = new CosmWasmClient(lcdUrl);

// Or a signer client with Keplr integration
await window.keplr.enable(chainId);
const offlineSigner = window.getOfflineSigner(chainId);
const enigmaUtils = window.getEnigmaUtils(chainId);
const accounts = await offlineSigner.getAccounts();

const secretJS = new SigningCosmWasmClient(
  lcdUrl,
  accounts[0].address,
  offlineSigner,
  enigmaUtils
);

Seeds

Usage example:

$ perl -i -pe 's/^seeds =.*/seeds = "${URL_1},${URL_2},${URL_3}"/' ~/.secretd/config/config.toml

Note: When initializing a node with secretd init --chain-id secret-4 these seeds are automatically populated into ~/.secretd/config/config.toml.

Peers

Usage example:

$ perl -i -pe 's/^persistent_peers =.*/persistent_peers = "${URL_1},${URL_2},${URL_3}"/' ~/.secretd/config/config.toml