A python version of ain-js.
pip install ain-py
from ain.ain import Ain
import asyncio
ain = Ain('https://mainnet-api.ainetwork.ai/')
async def process():
accounts = await ain.db.ref('/accounts').getValue()
print(accounts)
loop = asyncio.get_event_loop()
loop.run_until_complete(process())
- Clone AIN Blockchain and install
git clone [email protected]:ainblockchain/ain-blockchain.git
yarn install
- Start blockchain locally
bash start_local_blockchain.sh
- Run tests
tox
This project is licensed under the MIT License