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.
Instance Method Summary collapse
-
#get_all_blockchains ⇒ Object
Get all blockchains cryptomate.me/docs/management#get-all-blockchains Response: [ { “id”: “string”, “description”: “string” } ].
Methods inherited from Base
Constructor Details
This class inherits a constructor from CryptomateApi::Base
Instance Method Details
#get_all_blockchains ⇒ Object
Get all blockchains cryptomate.me/docs/management#get-all-blockchains Response: [
{
"id": "string",
"description": "string"
}
]
18 19 20 |
# File 'lib/cryptomate_api/management/blockchain.rb', line 18 def get_all_blockchains self.class.get('/management/blockchains/list') end |