@verified-network/verified-sdk 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -15
- package/dist/abi/assetmanager/balancer/MarginIssueManager.json +210 -210
- package/dist/abi/assetmanager/balancer/PrimaryIssueManager.json +8234 -8513
- package/dist/abi/assetmanager/balancer/SecondaryIssueManager.json +4902 -4902
- package/dist/abi/distribution/Distribution.json +3 -3
- package/dist/abi/liquidity/Liquidity.json +18989 -14416
- package/dist/contractAddress/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# The Verified SDK
|
|
2
|
-
The Verified SDK provides access to the
|
|
2
|
+
The Verified SDK provides access to the issuing, trading and servicing of tokenized securities on the Verified Network.
|
|
3
3
|
|
|
4
4
|
# installing using npm
|
|
5
5
|
```npm install @verified-network/verified-sdk```
|
|
@@ -29,25 +29,20 @@ Now you can call a function in clientContract like:
|
|
|
29
29
|
Similarly you can create different Contracts instances available:
|
|
30
30
|
```
|
|
31
31
|
ClientContract,
|
|
32
|
-
KYCContract,
|
|
33
|
-
SystemContract,
|
|
34
|
-
HolderContract,
|
|
35
|
-
LedgerContract,
|
|
36
|
-
AccountContract,
|
|
37
32
|
BondContract,
|
|
38
33
|
CashContract,
|
|
39
34
|
TokenContract,
|
|
40
35
|
FactoryContract,
|
|
41
|
-
|
|
42
|
-
PoolFactoryContract,
|
|
43
|
-
PostTradeContract,
|
|
44
|
-
PreTradeContract,
|
|
36
|
+
RatesContract,
|
|
45
37
|
SecurityContract,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
38
|
+
SecuritiesFactory,
|
|
39
|
+
PoolContract,
|
|
40
|
+
PrimaryIssueManager,
|
|
41
|
+
SecondaryIssueManager,
|
|
42
|
+
MarginIssueManager,
|
|
43
|
+
CustodyContract,
|
|
44
|
+
LiquidityContract,
|
|
45
|
+
DistributionContract
|
|
51
46
|
```
|
|
52
47
|
|
|
53
48
|
# VerifiedContract
|