Class: CryptomateApi::Management::Blockchain
- Defined in:
- lib/cryptomate_api/management/blockchain.rb
Overview
Get all the blockchains available in the platform. You can use this information to create new credentials for your clients or using every other endpoints that ask for the blockchain where you want to operate.
Class Method Summary collapse
-
.get_all_blockchains ⇒ Object
Get all blockchains cryptomate.me/docs/management#get-all-blockchains Response: [ { “id”: “string”, “description”: “string” } ].
Class Method Details
.get_all_blockchains ⇒ Object
Get all blockchains cryptomate.me/docs/management#get-all-blockchains Response: [
{
"id": "string",
"description": "string"
}
]
19 20 21 |
# File 'lib/cryptomate_api/management/blockchain.rb', line 19 def get_all_blockchains get('/management/blockchains/list') end |