Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update horizon mainnet url to testnet url #567

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ The fee stats endpoint provides information about per-operation fee stats over t
<CodeExample title="Example Request">

```curl
curl "https://horizon.stellar.org/fee_stats"
curl "https://horizon-testnet.stellar.org/fee_stats"
```

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

server
.feeStats()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ When filtering for a specific order book, you must use use all six of these argu
<CodeExample title="Example Request">

```curl
curl "https://horizon.stellar.org/order_book?selling_asset_type=native&buying_asset_type=credit_alphanum4&buying_asset_code=BB1&buying_asset_issuer=GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN&limit=4"
curl "https://horizon-testnet.stellar.org/order_book?selling_asset_type=native&buying_asset_type=credit_alphanum4&buying_asset_code=BB1&buying_asset_issuer=GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN&limit=4"
```

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

server
.orderbook(
Expand Down Expand Up @@ -167,7 +167,7 @@ server

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

var callback = function (resp) {
console.log(resp);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ For this search, Horizon loads a list of assets available to the sender (based o
<CodeExample title="Example Request">

```curl
curl "https://horizon.stellar.org/paths/strict-receive?source_assets=CNY:GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX&destination_asset_type=credit_alphanum4&destination_asset_code=BB1&destination_asset_issuer=GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN&destination_amount=5"
curl "https://horizon-testnet.stellar.org/paths/strict-receive?source_assets=CNY:GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX&destination_asset_type=credit_alphanum4&destination_asset_code=BB1&destination_asset_issuer=GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN&destination_amount=5"
```

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

server
.strictReceivePaths(
Expand All @@ -81,7 +81,7 @@ server

```python
from stellar_sdk import Server, Asset
server = Server("https://horizon.stellar.org")
server = Server("https://horizon-testnet.stellar.org")

response = server.strict_receive_paths(
source=[
Expand Down Expand Up @@ -211,7 +211,7 @@ print(response)

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

var callback = function (resp) {
console.log(resp);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ For this search, Horizon loads a list of assets that the recipient can recieve (
<CodeExample title="Example Request">

```curl
curl "https://horizon.stellar.org/paths/strict-send?source_asset_type=credit_alphanum4&source_asset_code=BRL&source_asset_issuer=GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP&source_amount=400&destination_account=GAYOLLLUIZE4DZMBB2ZBKGBUBZLIOYU6XFLW37GBP2VZD3ABNXCW4BVA"
curl "https://horizon-testnet.stellar.org/paths/strict-send?source_asset_type=credit_alphanum4&source_asset_code=BRL&source_asset_issuer=GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP&source_amount=400&destination_account=GAYOLLLUIZE4DZMBB2ZBKGBUBZLIOYU6XFLW37GBP2VZD3ABNXCW4BVA"
```

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

server
.strictSendPaths(
Expand All @@ -76,7 +76,7 @@ server

```python
from stellar_sdk import Server, Asset
server = Server("https://horizon.stellar.org")
server = Server("https://horizon-testnet.stellar.org")

response = server.strict_send_paths(
source_asset=Asset(
Expand Down Expand Up @@ -573,7 +573,7 @@ print(response)

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

var callback = function (resp) {
console.log(resp);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ The individual segments are also aligned with multiples of `resolution` since ep
<CodeExample title="Example Request">

```curl
curl "https://horizon.stellar.org/trade_aggregations?base_asset_type=native&counter_asset_code=EURT&counter_asset_issuer=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S&counter_asset_type=credit_alphanum4&resolution=3600000&start_time=1582156800000&end_time=1582178400000"
curl "https://horizon-testnet.stellar.org/trade_aggregations?base_asset_type=native&counter_asset_code=EURT&counter_asset_issuer=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S&counter_asset_type=credit_alphanum4&resolution=3600000&start_time=1582156800000&end_time=1582178400000"
```

```js
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Horizon.Server("https://horizon.stellar.org");
var server = new StellarSdk.Horizon.Server("https://horizon-testnet.stellar.org");

var base = new StellarSdk.Asset.native();
var counter = new StellarSdk.Asset(
Expand Down Expand Up @@ -107,10 +107,10 @@ server
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=EURT\u0026counter_asset_issuer=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S\u0026counter_asset_type=credit_alphanum4\u0026resolution=3600000\u0026start_time=1582156800000\u0026end_time=1582178400001"
"href": "https://horizon-testnet.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=EURT\u0026counter_asset_issuer=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S\u0026counter_asset_type=credit_alphanum4\u0026resolution=3600000\u0026start_time=1582156800000\u0026end_time=1582178400001"
},
"next": {
"href": "https://horizon.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=EURT\u0026counter_asset_issuer=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S\u0026counter_asset_type=credit_alphanum4\u0026end_time=1582178400001\u0026resolution=3600000\u0026start_time=1582171200000"
"href": "https://horizon-testnet.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=EURT\u0026counter_asset_issuer=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S\u0026counter_asset_type=credit_alphanum4\u0026end_time=1582178400001\u0026resolution=3600000\u0026start_time=1582171200000"
},
"prev": {
"href": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ When Horizon returns information about a trade aggregation, it uses the followin
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=NGNT\u0026counter_asset_issuer=GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD\u0026counter_asset_type=credit_alphanum4\u0026limit=200\u0026order=asc\u0026resolution=3600000\u0026start_time=1582156800000\u0026end_time=1582178400000"
"href": "https://horizon-testnet.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=NGNT\u0026counter_asset_issuer=GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD\u0026counter_asset_type=credit_alphanum4\u0026limit=200\u0026order=asc\u0026resolution=3600000\u0026start_time=1582156800000\u0026end_time=1582178400000"
},
"next": {
"href": "https://horizon.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=NGNT\u0026counter_asset_issuer=GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD\u0026counter_asset_type=credit_alphanum4\u0026end_time=1582178400000\u0026limit=200\u0026order=asc\u0026resolution=3600000\u0026start_time=1582178400000"
"href": "https://horizon-testnet.stellar.org/trade_aggregations?base_asset_type=native\u0026counter_asset_code=NGNT\u0026counter_asset_issuer=GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD\u0026counter_asset_type=credit_alphanum4\u0026end_time=1582178400000\u0026limit=200\u0026order=asc\u0026resolution=3600000\u0026start_time=1582178400000"
},
"prev": {
"href": ""
Expand Down
16 changes: 8 additions & 8 deletions network/horizon/api-reference/resources/accounts/object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,34 +139,34 @@ When Horizon returns information about an account, it uses the following format:
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U"
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U"
},
"transactions": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/transactions{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/transactions{?cursor,limit,order}",
"templated": true
},
"operations": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/operations{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/operations{?cursor,limit,order}",
"templated": true
},
"payments": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/payments{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/payments{?cursor,limit,order}",
"templated": true
},
"effects": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/effects{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/effects{?cursor,limit,order}",
"templated": true
},
"offers": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/offers{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/offers{?cursor,limit,order}",
"templated": true
},
"trades": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/trades{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/trades{?cursor,limit,order}",
"templated": true
},
"data": {
"href": "https://horizon.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/data/{key}",
"href": "https://horizon-testnet.stellar.org/accounts/GDI73WJ4SX7LOG3XZDJC3KCK6ED6E5NBYK2JUBQSPBCNNWEG3ZN7T75U/data/{key}",
"templated": true
}
},
Expand Down
6 changes: 3 additions & 3 deletions network/horizon/api-reference/resources/assets/object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ When Horizon returns information about an asset, it uses the following format:
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/assets?asset_code=USD\u0026asset_issuer=GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX\u0026cursor=\u0026limit=10\u0026order=asc"
"href": "https://horizon-testnet.stellar.org/assets?asset_code=USD\u0026asset_issuer=GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX\u0026cursor=\u0026limit=10\u0026order=asc"
},
"next": {
"href": "https://horizon.stellar.org/assets?asset_code=USD\u0026asset_issuer=GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX\u0026cursor=USD_GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX_credit_alphanum4\u0026limit=10\u0026order=asc"
"href": "https://horizon-testnet.stellar.org/assets?asset_code=USD\u0026asset_issuer=GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX\u0026cursor=USD_GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX_credit_alphanum4\u0026limit=10\u0026order=asc"
},
"prev": {
"href": "https://horizon.stellar.org/assets?asset_code=USD\u0026asset_issuer=GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX\u0026cursor=USD_GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX_credit_alphanum4\u0026limit=10\u0026order=desc"
"href": "https://horizon-testnet.stellar.org/assets?asset_code=USD\u0026asset_issuer=GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX\u0026cursor=USD_GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX_credit_alphanum4\u0026limit=10\u0026order=desc"
}
},
"_embedded": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ When Horizon returns information about a claimable balance, it uses the followin
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/claimable_balances/000000000102030000000000000000000000000000000000000000000000000000000000"
"href": "https://horizon-testnet.stellar.org/claimable_balances/000000000102030000000000000000000000000000000000000000000000000000000000"
},
"operations": {
"href": "https://horizon.stellar.org/claimable_balances/000000000102030000000000000000000000000000000000000000000000000000000000/operations{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/claimable_balances/000000000102030000000000000000000000000000000000000000000000000000000000/operations{?cursor,limit,order}",
"templated": true
},
"transactions": {
"href": "https://horizon.stellar.org/claimable_balances/000000000102030000000000000000000000000000000000000000000000000000000000/transactions{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/claimable_balances/000000000102030000000000000000000000000000000000000000000000000000000000/transactions{?cursor,limit,order}",
"templated": true
}
},
Expand Down
10 changes: 5 additions & 5 deletions network/horizon/api-reference/resources/ledgers/object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,22 +73,22 @@ When Horizon returns information about a ledger, it uses the following format:
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/ledgers/26857634"
"href": "https://horizon-testnet.stellar.org/ledgers/26857634"
},
"transactions": {
"href": "https://horizon.stellar.org/ledgers/26857634/transactions{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/ledgers/26857634/transactions{?cursor,limit,order}",
"templated": true
},
"operations": {
"href": "https://horizon.stellar.org/ledgers/26857634/operations{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/ledgers/26857634/operations{?cursor,limit,order}",
"templated": true
},
"payments": {
"href": "https://horizon.stellar.org/ledgers/26857634/payments{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/ledgers/26857634/payments{?cursor,limit,order}",
"templated": true
},
"effects": {
"href": "https://horizon.stellar.org/ledgers/26857634/effects{?cursor,limit,order}",
"href": "https://horizon-testnet.stellar.org/ledgers/26857634/effects{?cursor,limit,order}",
"templated": true
}
},
Expand Down
4 changes: 2 additions & 2 deletions network/horizon/api-reference/resources/offers/object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ When Horizon returns information about an offer, it uses the following format:
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/offers/165561423"
"href": "https://horizon-testnet.stellar.org/offers/165561423"
},
"offer_maker": {
"href": "https://horizon.stellar.org/accounts/GCK4WSNF3F6ZNCMK6BU77ZCZ3NMF3JGU2U3ZAPKXYBKYYCJA72FDBY7K"
"href": "https://horizon-testnet.stellar.org/accounts/GCK4WSNF3F6ZNCMK6BU77ZCZ3NMF3JGU2U3ZAPKXYBKYYCJA72FDBY7K"
}
},
"id": 165561423,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ See the [`Account Merge` errors](../../../errors/result-codes/operation-specific
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/121887714411839489"
"href": "https://horizon-testnet.stellar.org/operations/121887714411839489"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/02077009a551ec94c776f83529293dcfc1c2cd5b38af043ef7f3699bf5a71f0a"
"href": "https://horizon-testnet.stellar.org/transactions/02077009a551ec94c776f83529293dcfc1c2cd5b38af043ef7f3699bf5a71f0a"
},
"effects": {
"href": "https://horizon.stellar.org/operations/121887714411839489/effects"
"href": "https://horizon-testnet.stellar.org/operations/121887714411839489/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=121887714411839489"
"href": "https://horizon-testnet.stellar.org/effects?order=desc\u0026cursor=121887714411839489"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=121887714411839489"
"href": "https://horizon-testnet.stellar.org/effects?order=asc\u0026cursor=121887714411839489"
}
},
"id": "121887714411839489",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ See the [`Allow Trust` errors](../../../errors/result-codes/operation-specific/a
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/120497059836067841"
"href": "https://horizon-testnet.stellar.org/operations/120497059836067841"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/ac8dd0ddf1d047081c8e4c2a7ef9cc38a1a8af6c211184e1b16ebf2e32915d7f"
"href": "https://horizon-testnet.stellar.org/transactions/ac8dd0ddf1d047081c8e4c2a7ef9cc38a1a8af6c211184e1b16ebf2e32915d7f"
},
"effects": {
"href": "https://horizon.stellar.org/operations/120497059836067841/effects"
"href": "https://horizon-testnet.stellar.org/operations/120497059836067841/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=120497059836067841"
"href": "https://horizon-testnet.stellar.org/effects?order=desc\u0026cursor=120497059836067841"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=120497059836067841"
"href": "https://horizon-testnet.stellar.org/effects?order=asc\u0026cursor=120497059836067841"
}
},
"id": "120497059836067841",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ Initiate a sponsorship.
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/124922916260433921"
"href": "https://horizon-testnet.stellar.org/operations/124922916260433921"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/f94c338370839a598753221714de0b0193d4fc56ea369db6efe88f18669cc5a1"
"href": "https://horizon-testnet.stellar.org/transactions/f94c338370839a598753221714de0b0193d4fc56ea369db6efe88f18669cc5a1"
},
"effects": {
"href": "https://horizon.stellar.org/operations/124922916260433921/effects"
"href": "https://horizon-testnet.stellar.org/operations/124922916260433921/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=124922916260433921"
"href": "https://horizon-testnet.stellar.org/effects?order=desc\u0026cursor=124922916260433921"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=124922916260433921"
"href": "https://horizon-testnet.stellar.org/effects?order=asc\u0026cursor=124922916260433921"
}
},
"id": "124922916260433921",
Expand Down
Loading
Loading