1.47.0 • Published 3 days ago

@arianee/arianee-protocol-client v1.47.0

Weekly downloads
-
License
-
Repository
-
Last release
3 days ago

@arianee/arianee-protocol-client

A simple library that lets you interact with the Arianee protocols.

Installation

You need the @arianee/core package to use this library.

npm i @arianee/core @arianee/arianee-protocol-client

Usage

Instantiate the client and connect it to the network of your choice. (see this github repository for v1 networks).

const client = new ArianeeProtocolClient(Core.fromMnemonic('... ...'));
const protocol = await client.connect('sokol');

Because there exists different versions of the protocol, the connect method returns an instance of either ProtocolClientV1 or ProtocolClientV2. \ You can check the version of the protocol you are connected to with a simple if:

if (protocol instanceof ProtocolClientV1) {
  // protocol deployed on the connected network is v1
  // you can call the contracts methods directly like that:

  const uri = await protocol.identityContract.addressURI('0x305051e9a023fe881EE21cA43fd90c460B427Caa');
} else if (protocol instanceof ProtocolClientV2) {
  // protocol deployed on the connected network is v2
}

Protocol details resolver

By default, the library uses our protocol details resolver API to fetch the ProtocolDetails when calling the connect method. If you don't want to use our API, you can pass your own protocol resolver by setting the optional protocolDetailsResolver property in the constructor's options.

Protocol v2 optional features

The version two of the Arianee protocol has optional features. You can use the requiresV2Feature helper to assert that a certain feature is enabled before doing a call or transaction. The helper will throw an UnavailableFeatureError if the required feature is not enabled.

import { requiresV2Feature, UnavailableFeatureError} from '@arianee/arianee-protocol-client';

async burnSmartAsset() {

  const protocol: ProtocolClientV2 = ...;

  try {
    requiresV2Feature(ProtocolV2Feature.burnable, protocol);
    // code after this line will be executed if and only if the feature is enabled

    ...
  } catch (e) {
    if(e instanceof UnavailableFeatureError) {
      // the burnable feature is not enabled on the connected network
      // you can't burn the smart asset
    }
  }
}
1.47.0

3 days ago

1.46.0

27 days ago

1.45.0

1 month ago

1.44.0

1 month ago

1.43.0

1 month ago

1.42.0

1 month ago

1.41.0

2 months ago

1.39.0

2 months ago

1.40.0

2 months ago

1.38.0

2 months ago

1.37.0

2 months ago

1.35.0

2 months ago

1.36.0

2 months ago

1.34.0

2 months ago

1.33.0

3 months ago

1.32.0

3 months ago

1.31.0

3 months ago

1.30.1

3 months ago

1.30.0

4 months ago

1.29.2

4 months ago

1.29.1

4 months ago

1.29.0

4 months ago

1.27.0

4 months ago

1.26.0

4 months ago

1.28.0

4 months ago

1.25.0

4 months ago

1.24.0

4 months ago

1.22.0

4 months ago

1.23.0

4 months ago

1.21.0

5 months ago

1.20.0

5 months ago

1.19.0

5 months ago

1.15.0

5 months ago

1.14.0

5 months ago

1.13.0

5 months ago

1.12.0

5 months ago

1.18.0

5 months ago

1.17.0

5 months ago

1.16.0

5 months ago

1.11.1

6 months ago

1.11.0

6 months ago

1.10.0

6 months ago

1.9.0

6 months ago

1.8.0

6 months ago

1.6.1

6 months ago

1.2.0

7 months ago

1.1.0

7 months ago

1.0.0

7 months ago

0.21.0

7 months ago

0.20.0

7 months ago

1.7.0

7 months ago

1.6.0

7 months ago

1.5.0

7 months ago

1.4.0

7 months ago

1.3.0

7 months ago

0.19.0

8 months ago

0.11.0

10 months ago

0.14.0

10 months ago

0.16.0

10 months ago

0.17.0

9 months ago

0.18.0

8 months ago

0.22.0

7 months ago

0.9.0

10 months ago

0.7.0

10 months ago

0.5.0

11 months ago

0.4.0

11 months ago

0.2.0

11 months ago

0.1.0

11 months ago

0.0.1

11 months ago