Api/BlockchainStorageApi
Blockchain storage API Reference
// Set your API Keys 👇 here
$sdk = new \Tatum\Sdk();
// MainNet API Call
$sdk->mainnet()->api()->blockchainStorage();
// TestNet API Call
$sdk->testnet()->api()->blockchainStorage();
Methods
Method | Description |
---|---|
createRecord() | Store a log record |
createRecordCelo() | Store a log record |
createRecordKMS() | Store a log record |
getLog() | Get a log record |
createRecord()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/record
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->blockchainStorage()->createRecord(
\Tatum\Model\CreateRecord $create_record
): \Tatum\Model\TransactionHash
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$create_record | \Tatum\Model\CreateRecord |
Return type
Description
Store a log record
2 credits per API call + additional credits based on the size of the stored data and the type of the blockchain
Store data on the blockchain.
The total cost of a transaction on Ethereum (in credits) depends on the size of the data. The data is stored as a string in the hexadecimal format, and the maximum size of the data is approximately 130 kB on the mainnet and 30 kB on testnet. Every 5 characters cost 1 credit. Therefore, one API call with 1 kB of data (1024 characters) would cost 205 credits.
This API is supported for the following blockchains:
- BNB Smart Chain
- Celo
- Elrond
- Ethereum (only the mainnet or the Sepolia testnet)
- Harmony
- Klaytn
- Polygon
- XDC
createRecordCelo()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/record
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->blockchainStorage()->createRecordCelo(
\Tatum\Model\CreateRecordCelo $create_record_celo
): \Tatum\Model\TransactionHash
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$create_record_celo | \Tatum\Model\CreateRecordCelo |
Return type
Description
Store a log record
createRecordKMS()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/record
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->blockchainStorage()->createRecordKMS(
\Tatum\Model\CreateRecordKMS $create_record_kms
): \Tatum\Model\TransactionHash
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$create_record_kms | \Tatum\Model\CreateRecordKMS |
Return type
Description
Store a log record
getLog()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/record
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->blockchainStorage()->getLog(
string $chain,
string $id
): \Tatum\Model\GetLog200Response
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$chain | string | The blockchain to get the log record from | |
$id | string | The ID of the log record or transaction to get from the blockchain |
Return type
\Tatum\Model\GetLog200Response
Description
Get a log record
1 credit per API call
Get a log data record from the Ethereum blockchain (only the mainnet or the Sepolia testnet).