Questions tagged [stellar]

Stellar is a distributed ledger system. It has a dedicated stackexchange at stellar.stackexchange.com.

Stellar is a distributed ledger system. There are multiple components to the platform and APIs in multiple languages. It has a dedicated stackexchange at stellar.stackexchange.com. This tag should not be confused with stellar.js, which is an unrelated javascript library.

35 questions
1
vote
0 answers

Go - use of internal package [...] not allowed

I tried to clone and build the project from the stellar bridge-server github repository. After quite a lot of steps I am facing following errors: [ERROR] github.com\stellar\go\services\bridge\internal\handlers\main.go:8:2: use of internal package…
0
votes
0 answers

I want to implement django-polaris deposit and withdrawal integration

I'm building an anchor with django-polaris on the stellar network using the readthedocs tutorial. I'm stuck at the Enable Hosted deposit and withdrawals. Here is the code for the deposit integration; from decimal import Decimal from django import…
0
votes
0 answers

How to display a file instead of downloading it with react

I use nx to build react apps and deploy it to vercel. I am able to generate .well-known folder with stellar.toml file inside it and then reference it in index.html like this: …
0
votes
0 answers

How Can I connect the account stellar to an email with javascript?

I want to change the public key to email and the private key to password with javascript, Does anyone have an idea of how it works, please? ` const fs = require ('fs') const stellar = require('stellar-sdk') const fileName=…
Sophia
  • 11
  • 2
0
votes
0 answers

Setup Stellar Horizon have errors 503?

I installed a Horizon Server 2.x with stellar-core 19.2.0(Basic Validator), but unfortunately when I submit transactions (send), randomly (at 80%), I get 503 errors. I have the impression that the errors happen during the ingestion, which happens…
Robert N
  • 51
  • 1
  • 6
0
votes
0 answers

Issue with authenticating steller client account

I am trying to set up an Stellar Anchor Server, where I have implemented SEP-1,SEP-6,SEP-10,SEP-12 and SEP-24. I am trying to generate token using SEP-10. Then I am requesting for the transaction using GET…
0
votes
1 answer

How to merge a sponsored stellar account with '0' XLM balance

I create a sponsored account with '0' XLM balance. To remove it using the sponsoring account, I use the accountMerge operation, but the subsequent endSponsoringFutureReserves operation fails to access the merged account - preventing the whole…
Did Alik
  • 199
  • 2
  • 7
0
votes
2 answers

Enable CORS in a specific folder with dot in directory name

I am trying to enable CORS in a specific file (stellar.toml) located at mydomain.com/.well-known/stellar.toml I added the below catch all and allow for testing in my .htaccess file on my litespeed/wordpress site: Access-Control-Allow-Origin: * If I…
Sajal Dutta
  • 18,272
  • 11
  • 52
  • 74
0
votes
2 answers

On the Stellar Network, why must one activate an account before receiving to it?

Documentation for the Stellar payment network indicates that an address is not valid until it is activated, and that activating requires a special operation and 1 XLM. The Stellar Docs say this: in order to prevent unused accounts from bloating the…
michael_teter
  • 1,880
  • 2
  • 15
  • 14
0
votes
1 answer

send xlm from coinbase to stellar address using coinbase api

i can send xlm from coinbase to my stellar address in their website. When i tried their sdk, i got error "XLM memo is required". First, my stellar address doesn't have a memo, Second, I can't find the xml field in the sendmoney api document.
0
votes
1 answer

Trying to delete a stellar account with exist Data Entity

On stellar account "signers": [ { "weight": 1, "key": "GAVWIBPHF7JQ7BHHDKTZTWOJ2W4M2FVSGTSRZUPHBJC7DBMN7O6PG4OW", "type": "ed25519_public_key" } ], "data": { //data entity "asd": "ZHNh" , "banana": "ZSfd0" …
0
votes
0 answers

Python executes a statement fine, but when run from freeradius modules/Rlm_python, the same statement fails the module

Python executes a statement fine, but when run from freeradius modules/Rlm_python, the same statement fails the module. The statement is: from stellar_base.address import Address There is no error codes or reasons to be found as to why it doesn't…
0
votes
2 answers

Does stellar core deployment on k8s needs persistent storage?

I want to deploy stellar core on k8s with CATCHUP COMPLETE. I'm using this docker image satoshipay/stellar-core In docker image docs mentioned /data used to store the some informations about DB. And I've seen that helm template is using a persistent…
taraf
  • 777
  • 2
  • 10
  • 28
0
votes
3 answers

NodeJS Async/Await doesn't await (returns Promise pending)

I'm writing an API that gets past transactions on the Stellar network for a user, looks up the corresponding users in my database, and put's it all together into a JSON (to respond to the request - later). Problem: looking up the username…
user11136475
0
votes
0 answers

I can't install stellar-base in python3

i tried installing Stellar-Base as it says here https://github.com/StellarCN/py-stellar-base but it doesn't work... i'm using a virtual environment and python3. here is the error x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g…