Internal
- Print
- PDF
Internal
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Internal Module 1.5.0 | Core SDK
Overview
Internal methods for SDK / FEE integration
Private Methods
View
initialize
This is a private RPC method.
Initialize the SDK / FEE session.
Parameters:
Param | Type | Required | Description |
---|---|---|---|
version | SemanticVersion | true | The semantic version of the SDK. |
Result:
Capabilities:
Role | Capability |
---|---|
uses | xrn:firebolt:capability:lifecycle:initialize |
Examples
Default Example
JSON-RPC:
Request:
{
"jsonrpc": "2.0",
"id": 1,
"method": "Internal.initialize",
"params": {
"version": {
"major": 1,
"minor": 0,
"patch": 0,
"readable": "Firebolt SDK 1.0.0"
}
}
}
Response:
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"version": {
"major": 1,
"minor": 0,
"patch": 0,
"readable": "Firebolt FEE 1.0.0"
}
}
}
Types
InitializeResult
type InitializeResult = {
version: SemanticVersion // The semantic version of the FEE.
}
See also:
Was this article helpful?