PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/avalanche/examples/index

Просмотр файла: getContainerRange.ts

import { Avalanche } from "avalanche/dist"
import { IndexAPI } from "avalanche/dist/apis/index"
import { GetContainerRangeResponse } from "avalanche/dist/apis/index/interfaces"

const ip: string = "localhost"
const port: number = 9650
const protocol: string = "http"
const networkID: number = 1337
const avalanche: Avalanche = new Avalanche(ip, port, protocol, networkID)
const index: IndexAPI = avalanche.Index()

const main = async (): Promise<any> => {
  const startIndex: number = 0
  const numToFetch: number = 100
  const encoding: string = "hex"
  const baseurl: string = "/ext/index/X/tx"
  const containerRange: GetContainerRangeResponse[] =
    await index.getContainerRange(startIndex, numToFetch, encoding, baseurl)
  console.log(containerRange)
}

main()

Выполнить команду


Для локальной разработки. Не используйте в интернете!