Skip to content

Instantly share code, notes, and snippets.

@neopunisher
Last active May 22, 2021 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neopunisher/89e5e64492d3df82ab2bfb18e96913ac to your computer and use it in GitHub Desktop.
Save neopunisher/89e5e64492d3df82ab2bfb18e96913ac to your computer and use it in GitHub Desktop.
Stellar quest nft solution
var data = require('./data.json'); #transaction with operations downloaded saved as json
var ops = data._embedded.records.map((r)=>[r.name, new Buffer.from(r.value, 'base64')])
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Server("https://horizon-testnet.stellar.org");
var key = StellarSdk.Keypair.fromSecret(
#secret key here
);
async function main(){
const account = await server.loadAccount(key.publicKey())
const fee = "10000"
let transaction = new StellarSdk.TransactionBuilder(account, { fee, networkPassphrase: StellarSdk.Networks.TESTNET })
ops.forEach(function(vals){
transaction = transaction.addOperation(
// this operation funds the new account with XLM
StellarSdk.Operation.manageData({
name: vals[0],
value: vals[1]
}))
})
transaction = transaction.setTimeout(30)
transaction = transaction.build();
// console.log(transaction)
// sign the transaction
transaction.sign(key);
try {
const transactionResult = await server.submitTransaction(transaction);
console.log(transactionResult);
console.log('dun')
} catch (err) {
console.log(err.response.data.extras);
console.error(err);
}
}
main()
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23/operations?cursor=\u0026limit=200\u0026order=asc"
},
"next": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23/operations?cursor=152466335371358306\u0026limit=200\u0026order=asc"
},
"prev": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23/operations?cursor=152466335371358209\u0026limit=200\u0026order=desc"
}
},
"_embedded": {
"records": [
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358209"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358209/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358209"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358209"
}
},
"id": "152466335371358209",
"paging_token": "152466335371358209",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "00iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAgAElEQVR4nG2beY",
"value": "eGxWMTdmUCtmZWM5ZTMxbDdWMWF1ckYzZTM5M1U4ZzJNWXcyUTBNNEprZ0JBbEVuK0ZDRVdKa2lnUlNoUnBwQw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358210"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358210/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358210"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358210"
}
},
"id": "152466335371358210",
"paging_token": "152466335371358210",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "01xS8kcWRREoBAkk+AMCSQgwNmQG8DCLPV7Guz12u9u9d1V1Vb1X9ba7nxud89Zq",
"value": "S0ttN1hyMTczN25uL0pidjcvdGJudmpWcjM4Y1VaWVNBWlFDUVVtSmZnM212ZEZQS1VaL2p0ODNONDN1TGtFSQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358211"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358211/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358211"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358211"
}
},
"id": "152466335371358211",
"paging_token": "152466335371358211",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "02KEfXRClG9+urYnL7oSXL6drmzdFN42eL0U3leOF7rpdiZkE1WkaU5tZy5hHD26",
"value": "WnZsdVdoWitYU0VrSUtrT2FxSldhMk9MUEQyWjJMZTY4T0Q2dC9XNktjdWNlaVJKbmp6OGh4NWpPbEVkcmtFWA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358212"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358212/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358212"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358212"
}
},
"id": "152466335371358212",
"paging_token": "152466335371358212",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "03oRi+lhJ48VI+nqP8rJZyfPKc2jhgIvJ3qZHnhGyJPDj5WMQNpirFpxeNHZ04ry",
"value": "a0dEMFFwWjFXSW5sNk1tVE14bHRDSVNZVWRVaEU1Z1J0bGx3dkxvMXRjSlpaWmoxck5IbTcvM2M5Rm42bHFFTQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358213"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358213/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358213"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358213"
}
},
"id": "152466335371358213",
"paging_token": "152466335371358213",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "04y6nFiIk9HVZaCdoC7jnFVCDl7HuMFSFG65XT486c75CexYxL6BfWjH2KsbanGh",
"value": "NytHaTVtalY3TkNrS01MYUM4eHdLRU9HenVqS3lpbkpIMzJHMUc1eEtqaTlJU1UxTlRLQ3hMRE0xeHJLT3g5RQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358214"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358214/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358214"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358214"
}
},
"id": "152466335371358214",
"paging_token": "152466335371358214",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "05YmKMrp6crZXQgxulYONTHrQaMzGoyxZt4fC6mcMQghprJhuuashY4tYKxdfZgx",
"value": "NW1ET01kSHpTRTNsNUhNamp4bXRVU0wxaHNUbzZSYTJlV1dOSHpTakxURStpVFd6KzhrQlo5eG5MSWlKY2N5WQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358215"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358215/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358215"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358215"
}
},
"id": "152466335371358215",
"paging_token": "152466335371358215",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "06rDjsYVpQE62roRMbg1D3rDk+zkTA47WtGRuZWqMthgopx5KY+VEjjx5bg5xAwN",
"value": "aGhwbXNlQXFueG1TZGFtM1hQZTU5aXpWd3N4U0daalF4aDhzY1F1TVJVNnVaNk9ZMDRrODFNZERuVWJEbitpNA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358216"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358216/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358216"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358216"
}
},
"id": "152466335371358216",
"paging_token": "152466335371358216",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "07lPH1pbv2vNPHfmeLNyNS4wflg53sTEzkfOUU4PfggOxYwJc/ieyWcnH56G2bF0",
"value": "eGRoMUdOcDhPUnRwSmcrYXRabXhMZDBEMktLY1dQSFFIV1lXS2tmR1BucU9HQU5uT2JTOEtRaE9nTzJ2aUhsaQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358217"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358217/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358217"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358217"
}
},
"id": "152466335371358217",
"paging_token": "152466335371358217",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "08Cl7W+AiH8GDmQJOgMZbECHHHUW7ks7N8YSy5Kc+YcZt7EXZ0TYzt+FCEmpHb+J",
"value": "b1lvdUVZdzRabU1WYVJkZ0dtaHhBem9Vck1CZzNqb2lQMEw2ZlNMc1VzQXhvQjVrakNrd2ZPaGtacjlKWTEreA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358218"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358218/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358218"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358218"
}
},
"id": "152466335371358218",
"paging_token": "152466335371358218",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "09wmmp++ngrzEAZOZDLEgdnYX473NTHJGSsen2dG+OMlpWWVE9RlDEoz/jlcwDJM",
"value": "YVlvQlkwK2NZV21IL0hFRVQ2TWRUcmlnbUZyUHJKM1BoaW94cS8xeVRJVEtxVGpNZHNUb3dOTWZhd29vUXplWQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358219"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358219/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358219"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358219"
}
},
"id": "152466335371358219",
"paging_token": "152466335371358219",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "10cZ1x6B4KYbJzA4iHecB4sdEDxYjRzZJKMXlVHuJPkzPMuMbU35n4ozUOkeJQEB",
"value": "MGhWRGtsTWFPMW1BU3lXU3dwSjFybm5uMk1ROTRrMEUzV08weXQ5SSt0ZVlBd3NlSmVJWlRUV0duTXJSd2g2RA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358220"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358220/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358220"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358220"
}
},
"id": "152466335371358220",
"paging_token": "152466335371358220",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "11RPGJvrVH/ljD5nCM9sPBVD7UxlPorU43vVvVRqCuuz2FQeUsR0z2J2FxNwnLln",
"value": "c3ZuUm5ab0pqazNZT3N4VFJ4K1lRZDk3VE01c1g4MkMwdmorOHJBSHoyWWZZd3lmS0ZOTlpmVlhuSDF5M0pIZw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358221"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358221/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358221"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358221"
}
},
"id": "152466335371358221",
"paging_token": "152466335371358221",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "12pi5TMrvqrBlNtP2XXHlqdWU5dSVLjNF68q+c/hsfvGRqTuU9O5zw7hGJYbqRCb",
"value": "bGo1cHBCNUhLQ3pPTTF4ekF5Rm5ScmQ1ZExQL2p1OFBOcXRBZU5yNlByMXBnUWlhbUoveVVGaWZIZXl4bk9NTQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358222"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358222/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358222"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358222"
}
},
"id": "152466335371358222",
"paging_token": "152466335371358222",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "13t7tKXr//QutDKUGiLDaGcTEBz/PT7oKJ6KcnrQGQEfFuasMY2jxThnVVNBl+WM",
"value": "bGFtUzdZL2Y0dXJ2L1E5T3ZYeVpwVTUvQ21MM1dLZzEycHNseWhsQmwwTUJUUTdQSkNzZEs4UWFoV1U1ZWVnNA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358223"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358223/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358223"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358223"
}
},
"id": "152466335371358223",
"paging_token": "152466335371358223",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "14RI0xwayrpjR41sNmOHI5+sxMOD9sIjNCmLUea0KSxZD6zhxKW+UDn32ena2Ug9",
"value": "Yy80Wmx2dlVMN29mUDgrYk1QRTlidHlacGphanhjZTRvOXN6eEl2L1NJYUZZZHRycHljb2FKQUNmcW1taG9KZw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358224"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358224/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358224"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358224"
}
},
"id": "152466335371358224",
"paging_token": "152466335371358224",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "15E5dJip39mU5t/Q7NQMos9Yzj3uJCb4oF+rqSUN7X5oruNcwFik4sHiEp2vHOE3",
"value": "enJyOHU2Ly9HcTk5NCt2WWx2Z3IzUXpqSHNVUXk4YWFINFhSNzc3NCs3enc3MytKKzJyWDhGVTZkVXZOQkhVUw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358225"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358225/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358225"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358225"
}
},
"id": "152466335371358225",
"paging_token": "152466335371358225",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "16YlkKr2gRiYWJ+AzUlAW2tkjLnphRrfMO88lHhGHAzfI0veB+KAsExei3Mq5UZM",
"value": "V0lyU2tqckZJVkZFclIyYjNHc2RVbGVzSEdqRGFtbStiV3k1VENZZmZsYjFJOS9SRHE2QW4rNUE5L2h3Ty93NQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358226"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358226/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358226"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358226"
}
},
"id": "152466335371358226",
"paging_token": "152466335371358226",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "17fPrFMUI76ixl5UkqUZfucdntgocMN53rh7H0kxqiuUJWefep4/f/t7dF9/iYdW",
"value": "VG5HdDhTZzcxSWIyOThydi8ycjI5a2RiOGd1UExkTE9xM1Q3Q2IyREh0R2dTMmVROCtnakcyemV1RXVSWjdpTw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358227"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358227/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358227"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358227"
}
},
"id": "152466335371358227",
"paging_token": "152466335371358227",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "18jSti3KIDlkS6Hq1uSVHkZFlBrVpDCMv8i9LExFnHsbEs22xkq52Q9fc5/7kvsa",
"value": "MVdKdVVBVFppMDBFU1pjV1RuUlFhRncvNGcweUtsMTl1bm9XSWlwMElsOUVtekZDVWtwYVhYZFNpRXBKdVdoTQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358228"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358228/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358228"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358228"
}
},
"id": "152466335371358228",
"paging_token": "152466335371358228",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "19Uei1ULx3PYyo8ibB9huTiuy+b1y8ir71Lc/zk2P/x/nDv3CP7Gj9M66OcyD07w",
"value": "eEtQTEZQazIwcDlqT1ZSY3VySExpNy8zSWtpSGwvN3NlM3pwUisvbjhZZU9zN2krenM3TjJ4U3Bvcm00eE9aZQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358229"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358229/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358229"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358229"
}
},
"id": "152466335371358229",
"paging_token": "152466335371358229",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "20QrHwJFSP4gpBNKKjapSU5CXEasoPqhuKo/1XyG0brGAES8qYrrI8RJHg+x677k",
"value": "TjgyTzF6NHVRWm9zNHUxcC8rZHphZitSdmNkM3pWck5UNTlCVk9oRzNpK2tVeWJ3VTNTb2crK1NPT25WMmxmZA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358230"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358230/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358230"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358230"
}
},
"id": "152466335371358230",
"paging_token": "152466335371358230",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "21DhwWCP3W7M6snTfPrB2zx8coH2/Hm6O6/TrdaIi4JK9wN2Lu8hN/JXaUUl1cCh",
"value": "S3ZwVTVwWnBXcnNrU1V5bjF5RlBBcEpvbjhYbUJrV3Z5L0xLRWxsL0Q3SU9wNVpEYWdkdjBOMTYzWmlpSVJiUw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358231"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358231/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358231"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358231"
}
},
"id": "152466335371358231",
"paging_token": "152466335371358231",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "22wbIssqzEla5hd0lWEKe5MfiXr9zh6c8+hxA5SthGUINPv8V9cwVJWqLKhJPhp4",
"value": "VExDZHMzTHJGWVdjRTlWaWZaZVlsbXNNUW50M3NzaHozbVhJKzd5VFpwOVQ0cXNzYktoVk1jT1JaUzhRcUt3bQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358232"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358232/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358232"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358232"
}
},
"id": "152466335371358232",
"paging_token": "152466335371358232",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "23L56BEECfL4AkVRsHaiinXiYZ7sd1GFIM+3ObKRIr/9/jZXb+3xxc/cz9XLeyTJ",
"value": "ZFQ2NnNjdmx1enM4bGlpV29nTit1K2hUWFZqQmtRSFhiMitUbHhtdTYvUEZwNDdUS3h2Y3RkWW9Db1huZVNoVg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358233"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358233/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358233"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358233"
}
},
"id": "152466335371358233",
"paging_token": "152466335371358233",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "24kufKaN9SgiIbCsaWBTK5y8LispYSIk2xVG6Y3sriAlvhWfr7OxwdfB8raZJ7De",
"value": "YVhPdXp1N2ZKUmVSYlp1WWJkYm5EaHdmUEkvWSt4SGNWUjl4Yko0RVhqUjVWQTBqbXcyTy8weVpYRmZoSVQ5UQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358234"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358234/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358234"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358234"
}
},
"id": "152466335371358234",
"paging_token": "152466335371358234",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "25YGstN0QDXKEMLGtixtc/iuzevvbiLnQ4v5jTksCpp2TDjnsbsH3SjiAiGX513+",
"value": "MmlQSGVlVE1BcGJuY1BIQ0lzTHk4VjFKYS9NTzF6YzNHZGdsL1ZpeDJVNVpxVnNFVWhENmpxa3ZKV2xHb2txdQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358235"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358235/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358235"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358235"
}
},
"id": "152466335371358235",
"paging_token": "152466335371358235",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "26bPVw0jbzQUHVirhTnmJl41ET83cO+uxe+w7vfXSFz9xnUexcYyuuECUZr776XW",
"value": "d0xManp3R04ydG1BTVJZYlhhUEhoZmsvMWJlOXh0WGVXQmkyZDQ0OE1ETHA0N3plMmJHWTduczdYZm94eTBXSw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358236"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358236/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358236"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358236"
}
},
"id": "152466335371358236",
"paging_token": "152466335371358236",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "27pa5FnB2Y0qnVbLYJJjW8wtNHjq3CLi13/pp7JmI5BrR9d57+PLxiev3+7x2ps7",
"value": "RFBLQ3BiazZaNDU3bkQ1YnAyWkxXcjBVbVpjTWNrV25sOUxyS1hLdGJ0c21HZVNFbm9YMFhIeGZHbWxyczg5eQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358237"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358237/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358237"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358237"
}
},
"id": "152466335371358237",
"paging_token": "152466335371358237",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "28ReC4pFnOdifhqYfW+eGn1/CCOYpU4DqSghysGFcELNUkn95qk8QFlivp9VPiQY",
"value": "Ym5PK1JLWUV0SnJrb0R5a2tHTzYwdVgvbmlvNXk5Y0pyKzFmZnBwb0kzci9iWm1NdHh2SkJtczBvM0xVZ3pSZA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358238"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358238/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358238"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358238"
}
},
"id": "152466335371358238",
"paging_token": "152466335371358238",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "29yPTOVHabDO81w+eOF+3r3W5uFqnacffpI8Tmg2O/zBn/0f9tKUrUHEfH2Vr65d",
"value": "TUZwdnpOV0o0NVNkem9EK1lHQkFTV3RLaDd1OHlNanlrc1ZtU0tzVERmRkFXS2FFSGpyNnZweHZYOW9uTDFOOA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358239"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358239/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358239"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358239"
}
},
"id": "152466335371358239",
"paging_token": "152466335371358239",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "30Kdje2eYb379BXuQ8fGaNZx8/YQ794MZ9nFo/QujaRJki0fihUrJMGYEmWU4URU",
"value": "aXJwTWkxeTFYSlc3ZjUrQyt1NDRjZS9YN09VYTlFcFpLRFRvdjI5aTVSbXBFWFE1RDJQUXRiV0xUaUVsbnpLcQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358240"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358240/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358240"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358240"
}
},
"id": "152466335371358240",
"paging_token": "152466335371358240",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "31iyS5lGVESV1JYmjG0d7FM9fQ7VadE66JHmBZVqlSjOae132N/vYVmSPM8RtkOc",
"value": "Wmh6MElySXNJODh5MDJ4S3JZSlNKVWdwNlltQ1FaVFJiVzN6amN1N1JsQngvU1R0M2dlRXZzZWRyUTYvK2ZXMw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358241"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358241/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358241"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358241"
}
},
"id": "152466335371358241",
"paging_token": "152466335371358241",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "32WK2FrC80qIUht/sDKpWKCZXadBv1KkWR0bRs8iwkzXPqlQDPcej2IwJfYmEZTW",
"value": "dEcwbWcyRUhsbVBoT2xpbHdwd2lDazB4L1FxQWI4MWt1ZklKNDVleko3K015cS9EZi80RWY1MWQ5OWhYYXJUVA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358242"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358242/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358242"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358242"
}
},
"id": "152466335371358242",
"paging_token": "152466335371358242",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "33cTfHB1gOU4LM/VcVXM6jI0Gj65KrDylCgu+e5bLdKiHKYPalg4qTq29oZh+uz4",
"value": "ekdtTVdadkg5aXh1WE5tbFBVaXBCQTdIeno5QlA2anp6ZC85VFVJL1lLMFowazF5NWlvdU5jL2wyUEY1V3JzRA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358243"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358243/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358243"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358243"
}
},
"id": "152466335371358243",
"paging_token": "152466335371358243",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "34Nm/u0Y5iPNc2B8gVhK7EsoVxsYwSx7GoBz4Pn14mTwocR5qIoqtftSDU3R+UZR",
"value": "bEZCS0d2K1QrT3RQaDRKODFsbnFaRVVZY2ZYTHJDMG9KSFBhengzcFVENWl1KzhSUFhGdVlCWWVpeDJnajQ2RQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358244"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358244/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358244"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358244"
}
},
"id": "152466335371358244",
"paging_token": "152466335371358244",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "35abhbrH8pzLi6/tQL3Os1/4KsdPnOXTa5dotz/B95c5ur5BUCTsvPMCRZpw7OIX",
"value": "T2ZIWkRUNjkrVDQzYnR6Q1hqOU51WCtMbi8yRmY4cmEvRHBabnZIYnYvRmZ1SDczWUpKYTF4ekpmRFBFUGJyQg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358245"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358245/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358245"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358245"
}
},
"id": "152466335371358245",
"paging_token": "152466335371358245",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "36voJAFrTutrh881PSJJ6U8bQglht1nnlkiSjrkThNfvDuTQZpbg6q7+tGGYMkMe",
"value": "RmE1eG9QSFZ2bTdLTVBZdi9razBlL1JxRXN6YnM2blFGSFYrYkpCYmhXVHVuQ1QzL3BhWHI5QXhxTkFMZm9rLw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358246"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358246/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358246"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358246"
}
},
"id": "152466335371358246",
"paging_token": "152466335371358246",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "37uLzNcrFGnEtT2H8z/+Zc7f/zStbsz29g9xQw/bDbmv5tG+/B2Tlz3713+ajc98",
"value": "bFhjdmZRY2hiaEluTVh0M1d3aFNjQlFQWHZ3UmpoeS95Sk5QUDhkNzc3ekNvSHRBcXhkald3Nm5ObGFwbERIVg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358247"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358247/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358247"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358247"
}
},
"id": "152466335371358247",
"paging_token": "152466335371358247",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "385iLHH1ykKJfp7t4lifuTpEcLYC7wuX9eUeYFjbUjuI5gruKR5jBIcqRl06x4nF",
"value": "aW9HdHg0Y0tQT1hDVlI5cS8vaStlLzl0anBodlhnMlhVMlZqeE96THM4OC9CUnpwMVlOR2o1Nk1VTnZ2akVBaw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358248"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358248/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358248"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358248"
}
},
"id": "152466335371358248",
"paging_token": "152466335371358248",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "399vVDh9Yh63sc4XzoacXbf549db1FaWaG9ep5ozxA/L4uceWOUB9yqtXsHR0yc5",
"value": "ZC9ZWUwzenJKYTdkK0JoaFpXQVhOSU1LMVZDeXNMaUFYZmJaM1B5QXMwY1dPYkp4aHJkKzhCcURRWjkyUDBKWQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358249"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358249/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358249"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358249"
}
},
"id": "152466335371358249",
"paging_token": "152466335371358249",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "40kmPHV5mvChxLP6PCjUuXSJP+xAJcKVltVvmRiws4gc/y6rIxeWFLE2FWFmoEji",
"value": "VDBYRmFYcXB4YWRJMFZ4TEZTY25XdGhxTXFiSFl0R2l2cnJNeDVTRXRpMi91Y09yVkV2ZDZFb3NOK0s2Wis0Uw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358250"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358250/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358250"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358250"
}
},
"id": "152466335371358250",
"paging_token": "152466335371358250",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "41LO3ibVpSVEV5n43G3tEDjQLe7QyW2+vF5FczA/rGCFBX/2xg7/980/pd2ReH5J",
"value": "R0Zvc3k0REhIenpMaWVNWFVMYU5MeXNrQ2diUkFMS0Voejc3QkI5Ky8zVjJkL2E0ZE8wT1dacnprei94R09RRg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358251"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358251/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358251"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358251"
}
},
"id": "152466335371358251",
"paging_token": "152466335371358251",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "42ef/OMLli2lfQvr3QCPjbz62jMkXt3EV+4w/eNOFzbaXOUt1lLdAA6OI4sLvTxr",
"value": "WnRMTWRES3NzaGNBcVdEL1lwdlJyOXZRNSt2WTRqUGNLS3BCZmxhTUkyeUFOcXRUV0UzY0d1TCtJRkRwNzdPdQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358252"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358252/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358252"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358252"
}
},
"id": "152466335371358252",
"paging_token": "152466335371358252",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "43sbm+SFx60bDf7eZ1apCov9fsw3bxzwyvUYuwix7ZxYJIYV/sTTP8pXnv8cFInZ",
"value": "aElaUVhad3dHRXFUanorNVJKd3E3bi9tRWQ3ODNnY005cmI0OU01ZC92d3YzdUkvLzZNdjBqdnBjMTk0anYvNA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358253"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358253/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358253"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358253"
}
},
"id": "152466335371358253",
"paging_token": "152466335371358253",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "44hx06g9QAneM4uLZNtVYn6UaIXPH4yTpPbVRMhNDA6tmSgVNB9A94J4s4cuYUxx",
"value": "ZDk1R0tqUWw0STVKelVsQVZuZVJXbnVZVFVjTHUvYWFTMk1uK0V0TDJMVUxFcGo2czBSZmhWTkttVVpDeFZGVA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358254"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358254/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358254"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358254"
}
},
"id": "152466335371358254",
"paging_token": "152466335371358254",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "45/37DnyxKaXRHz7rsdmcYylk3N0uxZRliNlQZYl/OmbFh/efpXSTkxcdz1p6LOw",
"value": "aFVsMW84akNhcDRsYUNvdWZ2NDhuNzc5R3EzTGIvRHV0VzMrK2E5OGs2LzkvSE04ZXU0SS8rcG5QOE8vL2Qzdg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358255"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358255/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358255"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358255"
}
},
"id": "152466335371358255",
"paging_token": "152466335371358255",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "46G26hzdmrhNhz84SBonAcHj63aoo8KuohbBfpVdi83iYIaqwfW2P7xh1uXI6Qdm",
"value": "T05vdDlIemdVVVdZNVhxV05KbTZ6YndiVUUwckZ3aXhoM2FaRytKU20wNzFuenFOb0t1WEx3ODRkNHhsY2tzVw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358256"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358256/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358256"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358256"
}
},
"id": "152466335371358256",
"paging_token": "152466335371358256",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "47SQW/xJ+jjbgcKWDl0xBw2Bq0PVKCPc0hwjB5GPChkxBuzyOMOxJaVdEpw+o3kh",
"value": "dFNYQnhkUFBjT1BsUCtENmQvNFhiMSs1elQvOHJ5L3dhLy95cXp6dXVmejlMNVg4OGgrK2FxekhkVndVRG02OQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358257"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358257/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358257"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358257"
}
},
"id": "152466335371358257",
"paging_token": "152466335371358257",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "48Oiy3SgfPE4hgDqs6Z8DxdKbo9SLCuQbNlVXad+5iFZrFuTWkX8P1PCy7pExivM",
"value": "YVN5ZmROeWN4MXNZb1lsYXRoM3kzZU42RnRzZWJ6dVpXNlNaTHc1dmg2K1J4M09JTHlqNUZZSy9qU0k3QmRQTQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358258"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358258/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358258"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358258"
}
},
"id": "152466335371358258",
"paging_token": "152466335371358258",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "49vHE/q1T2Dr3w6+rV3Po+aG2PGAuqXwbYvA940gPFuwLGNzz8Xn/w6Pf/Ufk5cW",
"value": "TjNaYS9OMS8vVHZzSnVENk5SNDdmOEZFZ1NTS1NWdGRMTmZCRFVQOHdFUEpLb21va3NrcVZuMlI2dkhqTk5lUA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358259"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358259/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358259"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358259"
}
},
"id": "152466335371358259",
"paging_token": "152466335371358259",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "50UA9cwriDJxSyjA6w3QrW/Bpl5iOKzBxUWAVq0EHU6pPGotPdxtq/SdqaN6Wpn3",
"value": "cDZqVjU3aDROZ2llL3dETEYwcWRuVHdZbGlWRmZVSk1tUmtpSlhTSHVZSHloTm5Yc0h1Q29sdkhPRk83Y2ludg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358260"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358260/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358260"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358260"
}
},
"id": "152466335371358260",
"paging_token": "152466335371358260",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "5138OVg9RqRclpMWD3OF3xo8bjLLo489jxOEfP9//ie29vb5Z7/yIk9evGAyPM/1",
"value": "RE4zT3ZVQkx4ZEJ2Nm92WXJzT1ZENjdTN0NVc3J5MlJEUWJrYVdIU2NMODV4L24xVldSU2xyaHhuMkx2QnNxUw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358261"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358261/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358261"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358261"
}
},
"id": "152466335371358261",
"paging_token": "152466335371358261",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "52UEp67T5SdhgMcgNQWiiZTkJsj/UwI+/3sRs5nf0e+fIxvh38OLFyidPUILIjtT",
"value": "K1gyTkl5NXExOVhCTVE2ZG1qbXA4dWRTdlM3VXZNcXp2c0Ywczg4OVNUTE5kcjJMMlkyb0xndFVHZDkvT25zWg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358262"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358262/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358262"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358262"
}
},
"id": "152466335371358262",
"paging_token": "152466335371358262",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "533hAFNRlqyde5yl+RVu3rzEdrvLC997jY31E+RFYULkwpnT2JaHihNKyzWp9rmN",
"value": "VllUcmsvYzZxS2hQUDRHbGhyYnNsREk5d0VwTG03TFNvQXlicEdtS1hhMHlmMnlOK3ZJQ3dWeE5PeWpDcnlNMQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358263"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358263/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358263"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358263"
}
},
"id": "152466335371358263",
"paging_token": "152466335371358263",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "546BUZjbpLsLxKZXmNn/mFH+OD4DEy4RqL8FyJY9vmwIUp3mHqBEqNkF4Ni6FaOB",
"value": "b1Y0dW95MitFNmFuV054WE56MUU0RTFJNVhlSzh0VUdsa09IeVdGOFJaWVVLaGpsaEw1NTlHMm80QlB1MHFPLw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358264"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358264/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358264"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358264"
}
},
"id": "152466335371358264",
"paging_token": "152466335371358264",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "55t7nJuvc6TuoqVVjlo8o4ebqFCkBcLxzFtpt0856EI4B2FjOB8w6Pex+n1EkSOU",
"value": "UUlRVnN0MXQwSC9yU28vbFVPb0NScG1aYXEzQmdTTGpHMjhYM0JFclppSWpNK1p0anpzU09LNk5Ic0JTWXRocg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358265"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358265/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358265"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358265"
}
},
"id": "152466335371358265",
"paging_token": "152466335371358265",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "56GHdw0pFg9BvVtRPY9n3m9cvbGe5ubu7LlY0UNmteRLPu62qKOawlcsJTi1yt1N",
"value": "bnZ0RXpzbE5KbWR4QlJyUzhUYmUrWU1TVEgxc05TWFlSdDhjYWJsM2o4MmNkTkdKVDFCZ3QraFg3bmdJcXVLMg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358266"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358266/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358266"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358266"
}
},
"id": "152466335371358266",
"paging_token": "152466335371358266",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "57IjfV0g8CvESYLjNbF14tDbx/a1KQ3Q3eO80EUcD2vpPpL33sTd2cYNXO788Cb2",
"value": "eXBPVVJXSDhMdE9ab2M3Y3BEVElYT2hhbjJKaTlob1BOSG5TMS9Sb2luWUxWV1FHSS9ROW1yWUs4ejcwQnoxKw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358267"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358267/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358267"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358267"
}
},
"id": "152466335371358267",
"paging_token": "152466335371358267",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "588MIf8Wv/5CHWVyqGYQqh+G8vbw1becIyFah6WEE6Hrbng+UT7+9iLSxiSUE+6L",
"value": "RzZ2b1JJQnlnZFljb1NSeWo4aFhtRUgyQzVIcEtnWVZKV3g3SlJhVUplS0dOS09MNHBiZWRKVE5GUGhsTXZzaw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358268"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358268/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358268"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358268"
}
},
"id": "152466335371358268",
"paging_token": "152466335371358268",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "59W9UcVtLqGax6jM7Zhq7nhsTodPVQ4H3ZQpjY46MNZohG2kfFtMmyi2rhgLZbrG",
"value": "UXpjcGpTVVZlVUtuMDBabUxZcURDTXYxSWVtd2RldVdBVkJOb2h6SHhYZGNxcjVQZFM1QTlWcmszVDNraVRPSQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358269"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358269/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358269"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358269"
}
},
"id": "152466335371358269",
"paging_token": "152466335371358269",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "60vIfdXOFUJTU9QMMarWEWKdKYIrPJ0xypJaIBoyhiKHNTnLBcQZl0yCwXlcXkyd",
"value": "QW5uZm1qdUxVUXB6bUhDaG8wQW9tS2MyeGJrbWFaMGJiV1pxcWJqcFkxSGh3eC9RQ0RKZG8vMVhTR3l6S3ByRw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358270"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358270/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358270"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358270"
}
},
"id": "152466335371358270",
"paging_token": "152466335371358270",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "610SFWvUoyxGLXLV3SeOWnTbbbw8NkLL8pTt/YHBEtt28BwPTzqGc6zMuVQ3HsXZ",
"value": "dm1aS1laYTBVSGxtbEZIMEI0aEtBNW5IbEhtS0tncEVvUXdRUzlYdmdvN0ZVbExHR1VpUEZFbThleHVaNi9KUg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358271"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358271/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358271"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358271"
}
},
"id": "152466335371358271",
"paging_token": "152466335371358271",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "62FT+skdkO2aCNE0eo7SvQOELTs3HjIcJryjkeGCnKoSYdG2O6Ktflq+F4kiptkr",
"value": "UkF5bUd0VHMvbzZ2Q29DeTdqZm85bWlIdGJXN1FQZHZubFA3N0UzL3pzQ2VKTXNYbnpKcjBvTXNDcTZhK2h3Sw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358272"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358272/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358272"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358272"
}
},
"id": "152466335371358272",
"paging_token": "152466335371358272",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "636DKgs2Fj3U3jWE6xl0L8N5A4JaKzqUkyaIShWVapJ3QODZlDrCDNKSstM2JiY8",
"value": "M1VqdzhNSUdSVE5GM2V6UmJiVlpYdktIWFJhL2p0SUluR1pZeVI2K3BiQlZqdWY1Um1zYWZIVFpTZjlrU2xmRQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358273"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358273/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358273"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358273"
}
},
"id": "152466335371358273",
"paging_token": "152466335371358273",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "64lTmMDmGab+nmydjMtbZ19Vhjgo4KGsx0qc11HCxPMuhuc3Bwlzc/TKl7ivPr8y",
"value": "amJZNnVuVEhQRWRXc200bWpyeS9PQ3FnUEpvRTgyMk1XclZORFpWVjdZbEJyVURhTU5vZEpFRlYxS1Q1QW96NA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358274"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358274/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358274"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358274"
}
},
"id": "152466335371358274",
"paging_token": "152466335371358274",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "65RlWTtygs7t23ihZ/wySRTJ7nWax48SrKU0rIS4FxuaaecZIsqQ68cR9XWshQFi",
"value": "S3lKM2ZGTE55VU9QSkZONDBzTFh3bEFXbGxMNFd0dHEyQ2pSYmhFNHRqbThabjU1cXV0NkJicUk1V2wzMEdtcQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358275"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358275/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358275"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358275"
}
},
"id": "152466335371358275",
"paging_token": "152466335371358275",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "66Flocm6LHJ7fb3N6LaO3vm/3V5o+YMlyeZ0gNbEIMracUDLZvYQUNnMYchd+kfe",
"value": "TTJ6ZlZWQnRzN3VDS2pqUGFOc0hYM3lJcGpTQVd5ZCswUzBnM3B0bnFVd2pJOVBNY1A2VzF0a1d6ZFFhM05FeQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358276"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358276/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358276"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358276"
}
},
"id": "152466335371358276",
"paging_token": "152466335371358276",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "67zOU0QaOFLspeNDRPZq2FlCv9uhFs4R+C5pUpiwGaeF8e04KUxZXMOi69q4chgm",
"value": "czNUSURwTThOeVZxbmNKcUVDMUcxL3FtdHEvNVJNRkFiMVFEcXlXTXRnZTl0Z0hZUWRRbnp1cklSSnRVUVdGVg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358277"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358277/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358277"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358277"
}
},
"id": "152466335371358277",
"paging_token": "152466335371358277",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "68CAKPtMiJdvfI6xLbDyhzgRcEYHmUUhi6r8OfKBMD+vJ2t0vDkabErRethQHuID",
"value": "RytreVVaUldteGYrc3VZUzFnZStzT0owNnVJcXpZUE5USll0T2Y3eDZrMkk1bGlKRGVhS3pnNENBMndPWnFhUw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358278"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358278/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358278"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358278"
}
},
"id": "152466335371358278",
"paging_token": "152466335371358278",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "69OMxkv0gTKyLKdIM6TjUDq2sR7N5zWD1WmtDm9mvFLzCcclyYba1owvzYd7073B",
"value": "ZmhTaGlweGF4VGNqcjRYd1RSalh6WkJxeFlGNFFPams1Q0poa0pVRXJrc1pkU25paEt3c2pHWEpqMjY4d2ZsZw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358279"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358279/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358279"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358279"
}
},
"id": "152466335371358279",
"paging_token": "152466335371358279",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "70hXxgsby4hFQFUjkG2Ow8JS8lt+7eJb91G7s+h//Bbcp2C9d5lb5VZ+/2HayFKq",
"value": "N3JNdEROVThjeFBpbWRvZi9wZXI1R2JXMEIrd2VaY1FVanFFQVNEeEtrSTVHK2F3cVhkZDlta0NoQ0c1YldUNQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358280"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358280/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358280"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358280"
}
},
"id": "152466335371358280",
"paging_token": "152466335371358280",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "71hkR7vTXD2g14tpdzvGKsateI30QjoM4gTsEIJ54oMWXpGS7N0hO+hyN+4T9VOq",
"value": "RlordGJzL3doOWJ1UHJySXNkdFh5RjR5NEdwOEI3bGZtankvMnBqSDgzVldhSnRxYjVZVytFR1ZiMzF3QlZkYw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358281"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358281/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358281"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358281"
}
},
"id": "152466335371358281",
"paging_token": "152466335371358281",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "725ScePsJOu0fNEeSLVYq4h0q1CRdE3YHhEfohGqGlPqhOjUYMUaO+6RaPZg+qVR",
"value": "L1B0WWdHcWFsSktIYzQvQkFuSlpYbDA2eHVmSVl6MVE0MTN3THBzblYzajVmZmVzdmdpTEdHTktGYXFaQU9Fbg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358282"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358282/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358282"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358282"
}
},
"id": "152466335371358282",
"paging_token": "152466335371358282",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "73b2D8iziIWGz4c/3GL9xDE+fO+aKYtt7seEns2g06WfDGsPOmKdPrmAdKKcrajg",
"value": "U0NPZ1hleEJYT2NnRWFSSnhzNUJUbk14STRnNlBQZjRZM3o5ZTkvbjk3N3hFVXRMRFR6cFVuRXlxb0hVWFEvVA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358283"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358283/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358283"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358283"
}
},
"id": "152466335371358283",
"paging_token": "152466335371358283",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "74DarVQqJBbHoD1XoVW9qaxRL1E7IkJdAlKdeejK5pK9GuUAmlaabaFNQr0pi4lW",
"value": "UXNyNXlFY29mVjlRb1ZwOEQzS3J6Njlqc0dNSFVZYVhmMmphV3VOdXZjdXJ2RHg3RU9lekdYYnU2eVBIK0picQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358284"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358284/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358284"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358284"
}
},
"id": "152466335371358284",
"paging_token": "152466335371358284",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "75SG1F5HmLw0OFdvhCQ6LLsW71+7i9T03gltWknBimMhsi0q8/fjhBZhEZseu1up",
"value": "R24vOXljOS9nUmRlK2c1WDIyMEsyMkVqNkJENlJ4am9YQ0NPeVhRVWlSSmMzeWNleE9UNmNQWEFKRW95Y0UzNA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358285"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358285/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358285"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358285"
}
},
"id": "152466335371358285",
"paging_token": "152466335371358285",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "766x0MDBnS2KATHC0QHXl0bB/YAllkQyDNPSpr55m3V3AbYKs+jaaN1BEnG0zmVr",
"value": "cmREaFhYb1JQbjVGamMyaHpnVndKdTlVSXFvVHVjSFlwNjdCOG96cCtvOGVHbVlQMzRDdDFCQnRFQnNwb1BKVg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358286"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358286/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358286"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358286"
}
},
"id": "152466335371358286",
"paging_token": "152466335371358286",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "77/zbZZcgRX3yHbep5x7gK42TR2+lCJKOhSqx/NPP8HrH33Ize3rxIlCaD9Uka6s",
"value": "VTZpU29CNE1jMzgxSE5BWjZCcWQxSm1paTYydHhBbE1uMEZmMCtpdkdhUjJ0OURSeFJBeGpBNXBpV1dESXpLaw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358287"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358287/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358287"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358287"
}
},
"id": "152466335371358287",
"paging_token": "152466335371358287",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "785xMXKf2iSbu0qcwdId6+PJkVNuVRUXDl7haubQb/iHOoegW2Gk6K9cuCICy4cS",
"value": "RHdaQW1aM2tlQnJBMlFpV3N4bnhjMG81aCtKOGF1QmdSbFNpWCtrTkE3aGlwU1ExYWNTbzBvS2VqSENZL2QveQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358288"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358288/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358288"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358288"
}
},
"id": "152466335371358288",
"paging_token": "152466335371358288",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "79CBX6G1d5msSMk0MluusRI/dI3/65mlNFU40jdZYeCPhps0AVIlgzgnzpUhM5o9",
"value": "YWtEVDRYTkkyUzBjWCtMcmlPUkNpazllSkJSQzRGY1hFWGV2VE9hV2RCdXZGbnJHYmFSdlVXODRkUFlUbHVkOQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358289"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358289/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358289"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358289"
}
},
"id": "152466335371358289",
"paging_token": "152466335371358289",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "80k4xJ3anWUU24pmWmLUIVHYSQ+L6NvJ2AjHPD42u6YNEf0CsXjGbnnAOOLiR0+x",
"value": "NmJ0L2VZYTlaTS9xelQzd3Vuem5HdE5rZXQrd0MrdDBTcWFiUnRtU1JGYVNEVWg1RG1MWE5BelFrTWY3Q0gzKw=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358290"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358290/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358290"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358290"
}
},
"id": "152466335371358290",
"paging_token": "152466335371358290",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "81jQ+BBqXqCG31LR4Knf11akQ5v+TVClV7pYKjUgq6RLY/kY7buXyJKB4Sxm5tC2",
"value": "NlVZNkRiV0l1d1dEZ1NCdko2TnJna0tiaEYyUzYrYXFMdFJZRnJZY1RxN0lNN3B4V1NwZTNZUXkwMnpNNHJrdg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358291"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358291/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358291"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358291"
}
},
"id": "152466335371358291",
"paging_token": "152466335371358291",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "82nefM/B3OnHsKaie5cbmDvzcwwOgHAUkckauE1UqNr84P+GY7o6fRzozVKTyN2r",
"value": "cmlVd3kvZzJEeWN6TWFwMHhMVzFQMDJDcE5VcUtyd3JvQWJVcHdPait2U0VPUUJ2MENrU1g0ZGtyZzVlWXp1dQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358292"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358292/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358292"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358292"
}
},
"id": "152466335371358292",
"paging_token": "152466335371358292",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "83sbNkKqi8fI+rvD9ntZkMsK/TIg7iqkLEmTkkxzfb2wDVmsm6nDL11pF/MCicgF",
"value": "V1ZJZ3o1OTZ5UEQ3YzJkalFnc0dCZFNheTl5TWJLeFArdlRWWlRadnRkbmFQc0IySEdxVmxQbDZsVEN3Q1FPUA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358293"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358293/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358293"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358293"
}
},
"id": "152466335371358293",
"paging_token": "152466335371358293",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "84purw80cV//v2Eh+3hzm31rT2ee0GOhGyxWh8zQI7G46t6xxB39cbDKs92i2USo",
"value": "MExTRmUzMVIyc2lrTW1DcUpjb1RRZ04zM2k2NWNwVllRVGhnWTd6QlNhN3hIV2ZHTjV1c2NvZkFkc2o5SWU1Ug=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358294"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358294/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358294"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358294"
}
},
"id": "152466335371358294",
"paging_token": "152466335371358294",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "851eYQQhyRmkFsKRxhriIkdWTj5hcvU528Kp1XHCCqX26/6ANIqo2BbzjQXuP5OZ",
"value": "RFJ2ZXJzdm5ZWWpyYXk0KzFQd3Zyblg1RDYrdFVKVENmTGRBZDQzMWJOQTRadHVtSUNFb2pOa3lyQmhabHVuVQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358295"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358295/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358295"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358295"
}
},
"id": "152466335371358295",
"paging_token": "152466335371358295",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "86aHzw5BAAx7NGBSX9foxTxvh2ZmqNbU1x8xRbJzVJD+FK43Je6LA4VzdYo3sPRZ",
"value": "NFRwVGxSTGt5U3BhMVF5MHF6VEQ4Y01sYVR0UllLK2RIbVZmcHBiQWpEYWpVZ2RFTmpPdDBpTVptaEtadnJXYg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358296"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358296/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358296"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358296"
}
},
"id": "152466335371358296",
"paging_token": "152466335371358296",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "87wswtMqzFJy4TGvFs37GYEAAAOaSURBVPHSCrbMyZIcRUaz9Im0xm2HVi4plW00",
"value": "YStLK1JuVXAwRFRJZkZGTGFhME9FVnlIQktNWkV4cEdKVGQ3S0NUSDhnazBzU29pTWsrUnB4RjVkREFxc0F6dg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358297"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358297/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358297"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358297"
}
},
"id": "152466335371358297",
"paging_token": "152466335371358297",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "88HTdJA9eiWama39ri9k1RV5CpkqonkTo71f0ePXkiShaqDvIvrr5CotvgOi0udF",
"value": "d3VEY2dOSElIU3RMdk1zVW85OWFVVElCdGZDTzVFS1JjYlBqOTIraW5tNjJmeEs2N3BzLzNpSStOMkZ4ejBFeg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358298"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358298/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358298"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358298"
}
},
"id": "152466335371358298",
"paging_token": "152466335371358298",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "897Zt3hp02crkUNfzUuyQtFPc/b3tmnvXKUoUjNg4XoV6rVlgkqNSqVuSJL2mUxY",
"value": "eG96VHRLQ1Z1SVovQ0M4WVJnN1hNU1NuVzFpMGV6a25sMnNtdkM0RjBpUmcxV0JZcXRNelNxR1pKc2xObDBybg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358299"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358299/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358299"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358299"
}
},
"id": "152466335371358299",
"paging_token": "152466335371358299",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "905Hpqbb+XYv+tr5z+mpK2pcOF1CRcC7/qUs0sajrGOy6Z0JkddGVJ6FbZqC+xmX",
"value": "WDV3ZloxOXBNOWx2MEdnZWVib1VSVDhwSUNYOEpxQ0E4MUVqVER2Ulg3cGh5bE9iL09Db093U3JXeFFyVTJiOA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358300"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358300/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358300"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358300"
}
},
"id": "152466335371358300",
"paging_token": "152466335371358300",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "91bpbHIcKzNFlHpDD23lRkueU+ruDUKlJIOe6RrrabJhrjQcga7Ikucu6C4zpowX",
"value": "SjZscHBPNTJJdnB4Umk5S1RLVkw1eVE2SGRiVktqM0l0Vmh6bFV5emhKVkNzSkJES3hmY3FmaHM5eFRLeVVsRg=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358301"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358301/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358301"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358301"
}
},
"id": "152466335371358301",
"paging_token": "152466335371358301",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "92aUwYmeEsCWquw3anxa3BDoGrwLf5ML5C9+4mX1JfphYuYGv+L6QZaJI69/ZdPu",
"value": "L0hYS3oxK2ZadW5RODdybW1JMm1iQWVWaFA5TUltZmxBbmJkK2cwejhnT21nVFJmdEl2Mm1zb1Y3MWFHM2ZvZA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358302"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358302/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358302"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358302"
}
},
"id": "152466335371358302",
"paging_token": "152466335371358302",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "93vdpcz7lHk2TIFdx/QewsAxPj9X1emwMoNUCcL0NSuexDFfsRmW5sffLrFGIdc+",
"value": "OVd6OWE3ZkpyTHVlWW9lRVRwRXdTTHRrTWphVU5FMXpNd3BiaU1LZ3JKN2t6SzNobHhoMDRTSWZsTFNpaEN2eA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358303"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358303/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358303"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358303"
}
},
"id": "152466335371358303",
"paging_token": "152466335371358303",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "94xxS9NnY/wNbdGs82GrQdG7/i06i6nAliAlLe3y1IlYXnuzTmGlQ0oLoublDR26",
"value": "S3diR3l2YWlwVDJuV3VmZlFxVVdlTFV2Vk42MDRHRG9YblVVakpXdDNqY3hzMUdvRnRTSlhtS2FGakV6aERUUA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358304"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358304/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358304"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358304"
}
},
"id": "152466335371358304",
"paging_token": "152466335371358304",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "95EcaTTu2MPJdX1oHa37ulaRKSUX604eq8z4hwrMNygIM8FBJlC2QlfqvUAw73g0",
"value": "cWg0SHVzQ29pNmU1d05IaHpaWmtvbVJyZDhEcnpTdjQxaHkxWW00NHZHQVB2MEZ1T2tNNitmRWNIbHVNV2JBVA=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358305"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358305/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358305"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358305"
}
},
"id": "152466335371358305",
"paging_token": "152466335371358305",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "96fuudO7x77TYqj5GeZ6zAllUzKJ0mXdPRLUViDrBx/8NYXoXB/i6D1g6d7hVK7c",
"value": "dTVZck5UOHVJSEJUL3phSk9Hcm5xNXRpbkZhVUZvMHFWSGZQVFpCMmxobWl3YUJQVitOTjl4aE1qL1B5cDl1aQ=="
},
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/operations/152466335371358306"
},
"transaction": {
"href": "https://horizon.stellar.org/transactions/31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23"
},
"effects": {
"href": "https://horizon.stellar.org/operations/152466335371358306/effects"
},
"succeeds": {
"href": "https://horizon.stellar.org/effects?order=desc\u0026cursor=152466335371358306"
},
"precedes": {
"href": "https://horizon.stellar.org/effects?order=asc\u0026cursor=152466335371358306"
}
},
"id": "152466335371358306",
"paging_token": "152466335371358306",
"transaction_successful": true,
"source_account": "GCEE5H3RI2MFP4UQ4NHFKLGTIHILWA775AM7KTLU5HUBSLOBJN7M4RSL",
"type": "manage_data",
"type_i": 10,
"created_at": "2021-05-20T17:38:14Z",
"transaction_hash": "31670f7c2b3d598c6c8be9519ec218ed727f8554f8f3f1523910885e6dbd2a23",
"name": "97MrMrjfAAAAAElFTkSuQmCC",
"value": ""
}
]
}
}
#called with ./fund stellarTestnetAddress
curl "https://friendbot.stellar.org/?addr=$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment