This is a backend secrets plugin to be used with Hashicorp Vault. This plugin manages secret keys for the Stellar blockchain platform.
Assuming you have Hashicorp Vault installed, scripts/dev.sh
is a helper script to start up Vault in dev mode and mount this plugin.
Vault will be listening on a private IP at 192.168.50.4:8200.
Once the plugin is mounted, you can start writing secrets to it.
export VAULT_ADDR=http://192.168.50.4:8200
vault login
The token is "root" if you've used dev.sh to start Vault.
vault write stellar/accounts/MyAccountName xlm_balance=50
This will create a new account called "MyAccountName". The XLM balance is just a placeholder for now, it doesn't actually do anything since we're running on the Stellar testnet.
vault read stellar/accounts/MyAccountName
vault list stellar/accounts
vault write stellar/payments source=MySourceAccountName destination=MyDestinationAccountName amount=35
This will return a signed transaction with a payment operation to send 35 XLM from MySourceAccountName to MyDestinationAccountName.
vault write stellar/payments source=MySourceAccountName destination=MyDestinationAccountName paymentChannel=MyPaymentChannelAccountName amount=35
This will return a signed transaction with a payment operation to send 35 XLM from MySourceAccountName to MyDestinationAccountName. The account MyPaymentChannelAccountName will be used for sequence numbers, and will be added as a signer to the transaction.
cd stellar
go test
Copyright (c) 2018-2019 ChainFront LLC
Licensed under the Apache License, Version 2.0.