Work in progress. Use at your own risk.
This server provides Stellar federation for your domain.
Stellar is a decentralized protocol for sending and receiving money in any pair of currencies.
The Stellar federation protocol makes it possible to set up federated addresses for your domain. That means, that if you control the domain example.org, you could receive payments under e.g. [email protected]. Check out this blog post if you want to learn more about Stellar federation.
Whenever a Stellar client tries to make a payment to [email protected] it tries to request a file called stellar.txt
from three different URLs on your server (more on stellar.txt
below). This file tells the client how to reach the federation server. Once the client knows the URL of the federation server it asks the federation server for the users wallet address.
Both the server serving the stellar.txt file as well as your federation server need a valid SSL certificate.
The easiest and quickest way to get a federation server up and running is to init a new git repository, require dominik/stellar-federation
as a dependency via composer, create a new Heroku application and push it there. When using Heroku it's already taken care of the webserver config in the Procfile
- if you use something else, you'll have to configure your webserver yourself. For Heroku you'll need their command line tools set up on your machine (On a Mac simply install via brew install heroku-toolbelt
). If you don't have composer on your machine, the instructions can be found on the composer website.
- Create a new git repository somewhere on your machine with
git init
- Run
composer init
to initialize your new project- You should set
minimum-stability
todev
- When asked for dependencies enter
dominik/stellar-federation
withdev-master
as the version constraint - You'll also need the mbstring extension, so make sure to require
ext-mbstring
with*
as the version constraint as well
- You should set
- Then run
composer install
to pull in the dependencies
- Create the directory
public/
in your project.- Copy the example server into the directory
cp vendor/dominik/stellar-federation/example/server.php public/index.php
- Configure
public/index.php
as needed with your domain and users you want to provide federation for
- Copy the example server into the directory
- Copy the Heroku Procfile into the root directory of your project
cp vendor/dominik/stellar-federation/example/Procfile .
- Add everything to git with
git add .
- Commit your changes
git commit -m "Initial commit"
- Create a new Heroku application
heroku apps:create
- Push to Heroku
git push heroku master
Whenever you want to update, just run
composer update
in your project, commit the updated composer.lock and deploy again.
The last step is to bring the stellar.txt
file in place to tell Stellar clients where to find your federation server in one of these locations:
- https://stellar.example.org/stellar.txt
- https://example.org/stellar.txt
- https://www.example.org/stellar.txt
Don't forget to adjust the URL in stellar.txt
to the actual location of your federation server.
[federation_url]
https://example.herokuapp.com
If you did everything correctly you should now be able to query your federation server like this:
curl -i 'https://example.herokuapp.com?type=federation&user=user&domain=example.org'
HTTP/1.1 200 OK
Connection: keep-alive
Content-Type: application/json
Access-Control-Allow-Origin: *
{
"result": "success",
"federation_json": {
"type": "federation_record",
"domain": "example.org",
"user": "user",
"destination_address": "gDnu3fdGNNAuUy84DmbfyxwELjfu8kpmHg"
}
}
When someone now tries to make a payment to [email protected]
, the client will first try to find your stellar.txt
to figure out where the federation server for your domain is running and then ask your federation server for the wallet address of [email protected]
.