From 258dd5623b6113ed0c7069d12883e0ad576999cb Mon Sep 17 00:00:00 2001 From: platfowner Date: Wed, 27 Nov 2024 10:39:37 +0900 Subject: [PATCH 1/2] Add links to more use cases --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6de5565..6fb43db 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ yarn add @ainblockchain/ain-js ``` ## Examples +### A Simple Example ``` const Ain = require('./lib/ain').default; const ain = new Ain('http://localhost:8081/', 'ws://localhost:5100/'); @@ -33,6 +34,13 @@ const accounts = ain.db.ref('/accounts').getValue().then(result => { }); ``` +### More Use Cases +#### [ainize-js](https://github.com/ainize-team/ainize-js) +- [AinModule](https://github.com/ainize-team/ainize-js/blob/main/src/ain.ts) + +#### [ainft-js](https://github.com/ainize-team/ainize-js) +- [AinftJs](https://github.com/ainft-team/ainft-js/blob/main/src/ainft.ts) + ## Test How-To For testing, you need a blockchain node cluster running locally. 1. Clone AIN Blockchain and install From 16ed0d669985e49fe16100ca6073992fc3dddddb Mon Sep 17 00:00:00 2001 From: platfowner Date: Thu, 28 Nov 2024 04:17:23 +0000 Subject: [PATCH 2/2] Upgrade version to 1.13.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0c5a743..161a251 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ainblockchain/ain-js", - "version": "1.13.1", + "version": "1.13.2", "description": "", "main": "lib/ain.js", "scripts": {