Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanleecode/stellar-anchor-server
Anchor/Financial Institution Implementation for the Stellar Protocol
https://github.com/ryanleecode/stellar-anchor-server
Last synced: 5 days ago
JSON representation
Anchor/Financial Institution Implementation for the Stellar Protocol
- Host: GitHub
- URL: https://github.com/ryanleecode/stellar-anchor-server
- Owner: ryanleecode
- Created: 2019-06-30T21:29:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-16T03:14:44.000Z (over 5 years ago)
- Last Synced: 2023-12-19T08:33:00.946Z (11 months ago)
- Language: Go
- Homepage:
- Size: 235 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stellar Anchor
Stellar Anchor is a web server that implements the Stellar Ecosystem Proposals. The purpose for this project to provide a foundation for creating Stellar Applications. This web server can represent a fake financial institution for your Stellar wallet to connect to.
[![Build Status](https://travis-ci.com/drdgvhbh/stellar-anchor-server.svg?branch=master)](https://travis-ci.com/drdgvhbh/stellar-anchor-server)
## Features
Protocols
- [x] [SEP-0001](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0001.md) — stellar.toml
- [ ] [SEP-0006](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0006.md) — Anchor/Client interoperability
- [ ] [SEP-0009](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0009.md) — Standard KYC / AML fields
- [x] [SEP-0010](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md) — Stellar Web Authentication
- [x] [SEP-0012](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0012.md) — Anchor/Client customer info transferAssets
- [ ] Ethereum (ETH)
- [x] Lumens (XLM)
- [ ] Bitcoin (BTC)## Building from Source
```sh
git clone https://github.com/drdgvhbh/StellarAnchor.git
cd StellarAnchor
go mod vendor
make start
```## Running the Tests
```sh
make test-unit
make test-e2e
make cover
make coveralls
```