A simple tool to interact with Crust Shadow and Crust Mainnet. Under development
Project description
crust-file-uploader
https://crust.network/ https://apps.crust.network/ https://wiki.crust.network/en https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc-shadow.crust.network%2F#/explorer
This is a simple tool to pin your files sing Crust Network or Crust Shadow.
Setup
Installation:
pip3 install crust-interface-patara
Features
The module is divided into Mainnet
and Shadow
Mainnet
provides Crust interaction functionality to check user balance, calculate file storage price, placing
file storage order, add tokens to renewal pool and checking replicas count.
import time
from crustinterface import Mainnet
seed = "seed"
mainnet = Mainnet(seed=seed)
# get any IPFS CID and size
cid, size = "QmbJtyu82TQSHU52AzRMXBENZGQKYqPsmao9dPuTeorPui", 18 # <any way to get an IPFS CID and size. One may use ipfshttpclient2 from IPFS-Toolkit>
# Check balance
balance = mainnet.get_balance()
print(balance)
# Check price in Main net. Price in pCRUs
price = mainnet.get_appx_store_price(int(size))
print(price)
# Store file in Mainnet for CRUs
file_stored = mainnet.store_file(cid, size)
print(file_stored)
# Add renewal pool
file_prepaid = mainnet.add_renewal_pool_balance(cid, price*2)
print(file_prepaid)
# Get replicas
time.sleep(10)
replicas = mainnet.get_replicas(cid)
print(replicas)
Shadow
allows you to perform Xstorage
extrinsic in Crust Shadow network.
from crustinterface import Shadow
seed = "seed"
shadow = Shadow(seed=seed)
# get any IPFS CID and size
cid, size = "QmbJtyu82TQSHU52AzRMXBENZGQKYqPsmao9dPuTeorPui", 18 # <any way to get an IPFS CID and size. One may use ipfshttpclient2 from IPFS-Toolkit>
print(cid, size)
# Check balance
balance = shadow.get_balance()
print(balance)
# Store file in Shadow for CSMs
file_stored = shadow.store_file(cid, size)
print(file_stored)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for crust_interface_patara-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 495cca04d2bcbfe31cecec24e6d7fff1b32bfb85aaa2c251402a285a36cda82c |
|
MD5 | f03145e01202ecb699030cb31fb1e651 |
|
BLAKE2b-256 | 487d1de3d9bb98c836cbe07dd2640fa64ebcd32c3abfa8454a1a36f9882fcee6 |
Close
Hashes for crust_interface_patara-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 532c3f24d343392dd2dfaa32c96a3104128bb8338bafb383bfb6e173990ccf77 |
|
MD5 | 73f157f5323fc8e30c9f7b0ac8143b5e |
|
BLAKE2b-256 | d875f78fa5469c135e2043745ce0220419967596f2221875aad0936ff3169371 |