All URIs are relative to https://api.fireblocks.io/v1
| Method | HTTP request | Description |
|---|---|---|
| add_contract_asset | POST /contracts/{contractId}/{assetId} | Add an asset to a whitelisted contract |
| create_contract | POST /contracts | Add a contract |
| delete_contract | DELETE /contracts/{contractId} | Delete a contract |
| delete_contract_asset | DELETE /contracts/{contractId}/{assetId} | Delete an asset from a whitelisted contract |
| get_contract | GET /contracts/{contractId} | Find a Specific Whitelisted Contract |
| get_contract_asset | GET /contracts/{contractId}/{assetId} | Find a whitelisted contract's asset |
| get_contracts | GET /contracts | List Whitelisted Contracts |
ExternalWalletAsset add_contract_asset(contract_id, asset_id, idempotency_key=idempotency_key, add_contract_asset_request=add_contract_asset_request)
Add an asset to a whitelisted contract
Adds an asset to a whitelisted contract. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
from fireblocks.models.add_contract_asset_request import AddContractAssetRequest
from fireblocks.models.external_wallet_asset import ExternalWalletAsset
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
contract_id = 'contract_id_example' # str | The ID of the contract
asset_id = 'asset_id_example' # str | The ID of the asset to add
idempotency_key = 'idempotency_key_example' # str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. (optional)
add_contract_asset_request = fireblocks.AddContractAssetRequest() # AddContractAssetRequest | (optional)
try:
# Add an asset to a whitelisted contract
api_response = fireblocks.contracts.add_contract_asset(contract_id, asset_id, idempotency_key=idempotency_key, add_contract_asset_request=add_contract_asset_request).result()
print("The response of ContractsApi->add_contract_asset:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ContractsApi->add_contract_asset: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| contract_id | str | The ID of the contract | |
| asset_id | str | The ID of the asset to add | |
| idempotency_key | str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. | [optional] |
| add_contract_asset_request | AddContractAssetRequest | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A Wallet Asset object | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UnmanagedWallet create_contract(idempotency_key=idempotency_key, create_contract_request=create_contract_request)
Add a contract
Adds a contract to the workspace whitelist. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
from fireblocks.models.create_contract_request import CreateContractRequest
from fireblocks.models.unmanaged_wallet import UnmanagedWallet
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
idempotency_key = 'idempotency_key_example' # str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. (optional)
create_contract_request = fireblocks.CreateContractRequest() # CreateContractRequest | (optional)
try:
# Add a contract
api_response = fireblocks.contracts.create_contract(idempotency_key=idempotency_key, create_contract_request=create_contract_request).result()
print("The response of ContractsApi->create_contract:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ContractsApi->create_contract: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| idempotency_key | str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. | [optional] |
| create_contract_request | CreateContractRequest | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A Wallet object | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_contract(contract_id)
Delete a contract
Deletes a contract by ID. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
contract_id = 'contract_id_example' # str | The ID of the contract to delete
try:
# Delete a contract
fireblocks.contracts.delete_contract(contract_id).result()
except Exception as e:
print("Exception when calling ContractsApi->delete_contract: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| contract_id | str | The ID of the contract to delete |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 201 | OK | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_contract_asset(contract_id, asset_id)
Delete an asset from a whitelisted contract
Deletes a whitelisted contract asset by ID. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
contract_id = 'contract_id_example' # str | The ID of the contract
asset_id = 'asset_id_example' # str | The ID of the asset to delete
try:
# Delete an asset from a whitelisted contract
fireblocks.contracts.delete_contract_asset(contract_id, asset_id).result()
except Exception as e:
print("Exception when calling ContractsApi->delete_contract_asset: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| contract_id | str | The ID of the contract | |
| asset_id | str | The ID of the asset to delete |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 201 | OK | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UnmanagedWallet get_contract(contract_id)
Find a Specific Whitelisted Contract
Returns a whitelisted contract by Fireblocks Contract ID. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
from fireblocks.models.unmanaged_wallet import UnmanagedWallet
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
contract_id = 'contract_id_example' # str | The ID of the contract to return
try:
# Find a Specific Whitelisted Contract
api_response = fireblocks.contracts.get_contract(contract_id).result()
print("The response of ContractsApi->get_contract:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ContractsApi->get_contract: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| contract_id | str | The ID of the contract to return |
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A Wallet object | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ExternalWalletAsset get_contract_asset(contract_id, asset_id)
Find a whitelisted contract's asset
Returns a whitelisted contract's asset by ID. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
from fireblocks.models.external_wallet_asset import ExternalWalletAsset
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
contract_id = 'contract_id_example' # str | The ID of the contract
asset_id = 'asset_id_example' # str | The ID of the asset to return
try:
# Find a whitelisted contract's asset
api_response = fireblocks.contracts.get_contract_asset(contract_id, asset_id).result()
print("The response of ContractsApi->get_contract_asset:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ContractsApi->get_contract_asset: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| contract_id | str | The ID of the contract | |
| asset_id | str | The ID of the asset to return |
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A Wallet Asset object | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List[UnmanagedWallet] get_contracts()
List Whitelisted Contracts
Gets a list of whitelisted contracts. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
from fireblocks.models.unmanaged_wallet import UnmanagedWallet
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
try:
# List Whitelisted Contracts
api_response = fireblocks.contracts.get_contracts().result()
print("The response of ContractsApi->get_contracts:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ContractsApi->get_contracts: %s\n" % e)This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A list of contracts | * X-Request-ID - |
| 0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]