This an API wrapper for making requests to the CoMakery API. It implements signing and verifying CoMakery API requests with Ed25519 digital signature public & private keys.
API Documentation is Here
To get started:
git clone git@github.com:CoMakery/comakery-api-rb.git
cd comakery-api-rb
and runbundle install
- Get your API key by contacting CoMakery
- Generate a public/private keypair in ed25519 format for signing your API requests.
- Give the public key of your ed25519 keypair to CoMakery. Keep the private key secure.
- For test environments here you can store your api key and private key in your .env file at the root of the project
Copy the .env.example
file to .env
and enter these variables:
API_KEY=get this from CoMakery
PRIVATE_KEY=ed25519 private key
API_URL=https://www.comakery.com or your whitelable URL
Check out the examples in the examples directory
Run the examples in the example folder against a test environment like this:
ruby examples/get_projects.rb
Or configure your own signed API requests like this:
require_relative 'helper.rb'
require_relative 'comakery_api_signature.rb'
PRIVATE_KEY = ENV['PRIVATE_KEY']
API_KEY = ENV['API_KEY']
API_URL = ENV['API_URL']
API_ENDPOINT = API_URL + '/api/v1/accounts'
Comakery::APISignature.signed_request(
API_KEY,
PRIVATE_KEY, {
"body" => {
"data" =>
{"account" =>
{"managed_account_id" => "ae0344e2-fff8-466b-8de7-5941ec7115c2",
"email" => "me+bc6b1da493d156f06d2fb85a044ba01146796f52@example.com",
"first_name" => "Eva",
"last_name" => "Smith",
"nickname" => "hunter-36546fef2bc6c93536aaf0a7e3c374d645a00d59",
"date_of_birth" => "1990/01/01",
"country" => "United States of America",
"ethereum_wallet" => "0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B"}},
"url" => API_ENDPOINT,
"method" => "POST"
}
}
)
Full API Documentation is Here
If you want to interact with the raw request signatures here are some more details.
Format of the request (JSON):
{
"body": {
"data": {},
"url": "https://example.org/",
"method": "GET",
"nonce": "ajgpe79rv6sv1i8sqhxobd",
"timestamp": 1579539467614
},
"proof": {
"type": "Ed25519Signature2018",
"verificationMethod": "O7zTH4xHnD1jRKheBTrpNN24Fg1ddL8DHKi/zgVCVpA=",
"signature": "FeDeSZNqfvz/EmfhIxz+tvRFXn83Xm0SUpcI/AJQDre0tGInJ96+/HN0nhG2vHPevKfpGaq9cr0zwuC6OEbvCQ=="
}
}
private_key = 'eodjQfDLTyNCBnz+MORHW0lOKWZnCTyPDTFcwAdVRyQ7vNMfjEecPWNEqF4FOuk03bgWDV10vwMcqL/OBUJWkA=='
request = {
"body" => {
"data" => {}
}
}
signed_request = Comakery::APISignature.new(request).sign(private_key)
public_key = 'O7zTH4xHnD1jRKheBTrpNN24Fg1ddL8DHKi/zgVCVpA='
request = {
"body" => {
"data" => {},
"url" => "https://example.org/",
"method" => "GET",
"nonce" =>"ajgpe79rv6sv1i8sqhxobd",
"timestamp" => 1579539467614
},
"proof" => {
"type" => "Ed25519Signature2018",
"verificationMethod" => "O7zTH4xHnD1jRKheBTrpNN24Fg1ddL8DHKi/zgVCVpA=",
"signature" => "FeDeSZNqfvz/EmfhIxz+tvRFXn83Xm0SUpcI/AJQDre0tGInJ96+/HN0nhG2vHPevKfpGaq9cr0zwuC6OEbvCQ=="
}
}
is_nonce_unique = -> (nonce) { ['1', '2', '3'].none? nonce }
http_url = "https://example.org/"
http_method = "GET"
begin
Comakery::APISignature.new(request, http_url, http_method, is_nonce_unique).verify(public_key)
rescue Comakery::APISignatureError => e
e.message
end