mirror of
https://github.com/Permissionless-Software-Foundation/bch-js.git
synced 2026-09-21 16:51:59 -07:00
fix(psf-slp-indexer): Fixing issue with url
This commit is contained in:
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@psf/bch-js",
|
||||
"version": "4.0.0",
|
||||
"version": "5.0.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@psf/bch-js",
|
||||
"version": "4.0.0",
|
||||
"version": "5.0.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@chris.troutner/bip32-utils": "1.0.5",
|
||||
|
||||
+16
-16
@@ -41,7 +41,7 @@ class PsfSlpIndexer {
|
||||
this.rawTransaction = new RawTransaction(config)
|
||||
this.slpUtils = new SlpUtils(config)
|
||||
|
||||
// _this = this
|
||||
// _this = this
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -53,8 +53,8 @@ class PsfSlpIndexer {
|
||||
* @apiExample Example usage:
|
||||
* (async () => {
|
||||
* try {
|
||||
* let status = await bchjs.PsfSlpIndexer.status();
|
||||
* console.log(status);
|
||||
* let status = await bchjs.PsfSlpIndexer.status()
|
||||
* console.log(status)
|
||||
* } catch(error) {
|
||||
* console.error(error)
|
||||
* }
|
||||
@@ -72,7 +72,7 @@ class PsfSlpIndexer {
|
||||
async status () {
|
||||
try {
|
||||
const response = await axios.get(
|
||||
`${this.restURL}psf/slp/status`,
|
||||
`${this.restURL}/psf/slp/status`,
|
||||
this.axiosOptions
|
||||
)
|
||||
return response.data
|
||||
@@ -91,8 +91,8 @@ class PsfSlpIndexer {
|
||||
* @apiExample Example usage:
|
||||
* (async () => {
|
||||
* try {
|
||||
* let balance = await bchjs.PsfSlpIndexer.balance('bitcoincash:qzmd5vxgh9m22m6fgvm57yd6kjnjl9qnwywsf3583n');
|
||||
* console.log(balance);
|
||||
* let balance = await bchjs.PsfSlpIndexer.balance('bitcoincash:qzmd5vxgh9m22m6fgvm57yd6kjnjl9qnwywsf3583n')
|
||||
* console.log(balance)
|
||||
* } catch(error) {
|
||||
* console.error(error)
|
||||
* }
|
||||
@@ -137,8 +137,8 @@ class PsfSlpIndexer {
|
||||
// Handle single address.
|
||||
if (typeof address === 'string') {
|
||||
const response = await axios.post(
|
||||
`${this.restURL}psf/slp/address`,
|
||||
{ address },
|
||||
`${this.restURL}/psf/slp/address`,
|
||||
{ address},
|
||||
this.axiosOptions
|
||||
)
|
||||
return response.data
|
||||
@@ -161,8 +161,8 @@ class PsfSlpIndexer {
|
||||
* @apiExample Example usage:
|
||||
* (async () => {
|
||||
* try {
|
||||
* let tokenStats = await bchjs.PsfSlpIndexer.tokenStats('a4fb5c2da1aa064e25018a43f9165040071d9e984ba190c222a7f59053af84b2', true);
|
||||
* console.log(tokenStats);
|
||||
* let tokenStats = await bchjs.PsfSlpIndexer.tokenStats('a4fb5c2da1aa064e25018a43f9165040071d9e984ba190c222a7f59053af84b2', true)
|
||||
* console.log(tokenStats)
|
||||
* } catch(error) {
|
||||
* console.error(error)
|
||||
* }
|
||||
@@ -201,8 +201,8 @@ class PsfSlpIndexer {
|
||||
// Handle single address.
|
||||
if (typeof tokenId === 'string') {
|
||||
const response = await axios.post(
|
||||
`${this.restURL}psf/slp/token`,
|
||||
{ tokenId, withTxHistory },
|
||||
`${this.restURL}/psf/slp/token`,
|
||||
{ tokenId, withTxHistory},
|
||||
this.axiosOptions
|
||||
)
|
||||
return response.data
|
||||
@@ -223,8 +223,8 @@ class PsfSlpIndexer {
|
||||
* @apiExample Example usage:
|
||||
* (async () => {
|
||||
* try {
|
||||
* let txData = await bchjs.PsfSlpIndexer.tx('a4fb5c2da1aa064e25018a43f9165040071d9e984ba190c222a7f59053af84b2');
|
||||
* console.log(txData);
|
||||
* let txData = await bchjs.PsfSlpIndexer.tx('a4fb5c2da1aa064e25018a43f9165040071d9e984ba190c222a7f59053af84b2')
|
||||
* console.log(txData)
|
||||
* } catch(error) {
|
||||
* console.error(error)
|
||||
* }
|
||||
@@ -291,8 +291,8 @@ class PsfSlpIndexer {
|
||||
// Handle single address.
|
||||
if (typeof txid === 'string') {
|
||||
const response = await axios.post(
|
||||
`${this.restURL}psf/slp/txid`,
|
||||
{ txid },
|
||||
`${this.restURL}/psf/slp/txid`,
|
||||
{ txid},
|
||||
this.axiosOptions
|
||||
)
|
||||
return response.data
|
||||
|
||||
Reference in New Issue
Block a user