@verified-network/verified-sdk 0.8.2 → 0.8.5

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.
@@ -24,7 +24,12 @@ class AssetManager extends index_1.VerifiedContract {
24
24
  super(address, JSON.stringify(BalancerManager_json_1.abi), signer);
25
25
  this.contractAddress = address;
26
26
  }
27
- async offer(owned, isin, offered, tomatch, desired, min, issuer, _hashedMessage, _v, _r, _s, options) {
27
+ async offer(owned, isin, offered, tomatch, desired, min, issuer,
28
+ //_hashedMessage: string,
29
+ //_v: string,
30
+ //_r: string,
31
+ //_s: string,
32
+ options) {
28
33
  await this.validateInput(index_1.DATATYPES.ADDRESS, owned);
29
34
  await this.validateInput(index_1.DATATYPES.ADDRESS, tomatch);
30
35
  await this.validateInput(index_1.DATATYPES.ADDRESS, issuer);
@@ -32,7 +37,8 @@ class AssetManager extends index_1.VerifiedContract {
32
37
  await this.validateInput(index_1.DATATYPES.NUMBER, offered);
33
38
  await this.validateInput(index_1.DATATYPES.NUMBER, desired);
34
39
  await this.validateInput(index_1.DATATYPES.NUMBER, min);
35
- return this.callContract(FUNCTIONS.OFFER, owned, this.sanitiseInput(index_1.DATATYPES.BYTE32, isin), offered, tomatch, desired, min, issuer, _hashedMessage, _v, _r, _s, options);
40
+ return this.callContract(FUNCTIONS.OFFER, owned, this.sanitiseInput(index_1.DATATYPES.BYTE32, isin), offered, tomatch, desired, min, issuer,
41
+ /*_hashedMessage, _v, _r, _s,*/ options);
36
42
  }
37
43
  /**
38
44
  * Gets security tokens offered for passed token parameter
@@ -70,9 +76,16 @@ class AssetManager extends index_1.VerifiedContract {
70
76
  * @param options
71
77
  * @returns array of structs of liquidity providers
72
78
  */
73
- async getLiquidityProviders(security, _hashedMessage, _v, _r, _s, options) {
79
+ async getLiquidityProviders(security,
80
+ //_hashedMessage: string,
81
+ //_v: string,
82
+ //_r: string,
83
+ //_s: string,
84
+ options) {
74
85
  await this.validateInput(index_1.DATATYPES.ADDRESS, security);
75
- return this.callContract(FUNCTIONS.GETLIQUIDITYPROVIDERS, security, _hashedMessage, _v, _r, _s, options);
86
+ return this.callContract(FUNCTIONS.GETLIQUIDITYPROVIDERS, security,
87
+ //_hashedMessage, _v, _r, _s,
88
+ options);
76
89
  }
77
90
  async issue(security, cutoffTime, issuer, _hashedMessage, _v, _r, _s, options) {
78
91
  await this.validateInput(index_1.DATATYPES.ADDRESS, security);
@@ -24,6 +24,10 @@ var FUNCTIONS;
24
24
  FUNCTIONS["PAYOUT"] = "payOut";
25
25
  FUNCTIONS["ISSUEBOND"] = "issueBond";
26
26
  FUNCTIONS["GETBENEFICIARIES"] = "getBeneficiaries";
27
+ FUNCTIONS["SETLIQUIDITYPROVIDERS"] = "setLiquidityProviders";
28
+ FUNCTIONS["SETPLATFORMPOOLS"] = "setPlatformPools";
29
+ FUNCTIONS["SETPLATFORMSUBSCRIBERS"] = "setPlatformSubscribers";
30
+ FUNCTIONS["SETTLE"] = "settleIssue";
27
31
  })(FUNCTIONS || (FUNCTIONS = {}));
28
32
  class BondsContract extends index_1.VerifiedContract {
29
33
  constructor(signer, issue) {
@@ -56,6 +60,10 @@ class BondsContract extends index_1.VerifiedContract {
56
60
  await this.validateInput(index_1.DATATYPES.ADDRESS, _asset);
57
61
  return this.callContract(FUNCTIONS.ALLOTISSUE, this.sanitiseInput(index_1.DATATYPES.BYTE32, _allotment), _platform, this.sanitiseInput(index_1.DATATYPES.BYTE32, _pool), _investor, _amount, _asset, options);
58
62
  }
63
+ async settle(issue, options) {
64
+ await this.validateInput(index_1.DATATYPES.ADDRESS, issue);
65
+ return this.callContract(FUNCTIONS.SETTLE, issue, options);
66
+ }
59
67
  async computeNextInstallment(_currency, options) {
60
68
  await this.validateInput(index_1.DATATYPES.ADDRESS, _currency);
61
69
  return this.callContract(FUNCTIONS.NEXTINSTALLMENT, _currency, options);
@@ -110,5 +118,23 @@ class BondsContract extends index_1.VerifiedContract {
110
118
  await this.validateInput(index_1.DATATYPES.STRING, _offeringDocuments);
111
119
  return this.callContract(FUNCTIONS.ISSUEBOND, _issueSize, _offerPrice, _minAskPrice, _minSubscription, _couponPaymentCycle, _tenure, this.sanitiseInput(index_1.DATATYPES.BYTE32, _currency), this.sanitiseInput(index_1.DATATYPES.BYTE32, _offerType), this.sanitiseInput(index_1.DATATYPES.BYTE32, _isin), _offeringDocuments, options);
112
120
  }
121
+ async setLiquidityProviders(platform, liquidityProviders, _hashedMessage, _v, _r, _s, options) {
122
+ await this.validateInput(index_1.DATATYPES.ADDRESS, platform);
123
+ await this.validateInput(index_1.DATATYPES.STRING, liquidityProviders);
124
+ return this.callContract(FUNCTIONS.SETLIQUIDITYPROVIDERS, platform, liquidityProviders, _hashedMessage, _v, _r, _s, options);
125
+ }
126
+ async setPlatformPools(platform, securityToken, pools, status, _hashedMessage, _v, _r, _s, options) {
127
+ await this.validateInput(index_1.DATATYPES.ADDRESS, platform);
128
+ await this.validateInput(index_1.DATATYPES.ADDRESS, securityToken);
129
+ await this.validateInput(index_1.DATATYPES.STRING, pools);
130
+ await this.validateInput(index_1.DATATYPES.STRING, status);
131
+ return this.callContract(FUNCTIONS.SETPLATFORMPOOLS, platform, securityToken, pools, status, _hashedMessage, _v, _r, _s, options);
132
+ }
133
+ async setPlatformSubscribers(platform, pool, eois, _hashedMessage, _v, _r, _s, options) {
134
+ await this.validateInput(index_1.DATATYPES.ADDRESS, platform);
135
+ await this.validateInput(index_1.DATATYPES.STRING, pool);
136
+ await this.validateInput(index_1.DATATYPES.STRING, eois);
137
+ return this.callContract(FUNCTIONS.SETPLATFORMSUBSCRIBERS, platform, this.sanitiseInput(index_1.DATATYPES.BYTE32, pool), eois, _hashedMessage, _v, _r, _s, options);
138
+ }
113
139
  }
114
140
  exports.default = BondsContract;
@@ -21,7 +21,7 @@ var FUNCTIONS;
21
21
  FUNCTIONS["ADDMANAGER"] = "addManager";
22
22
  FUNCTIONS["REMOVEMANAGER"] = "removeManager";
23
23
  FUNCTIONS["GETMANAGERS"] = "getManagers";
24
- FUNCTIONS["GETPLATFORMS"] = "getPlaforms";
24
+ FUNCTIONS["GETPLATFORMS"] = "getPlatforms";
25
25
  FUNCTIONS["GETPLATFORMPERFORMANCE"] = "getPlatformPerformance";
26
26
  FUNCTIONS["GETMANAGERPERFORMANCE"] = "getManagerPerformance";
27
27
  FUNCTIONS["PROVIDELIQUIDITY"] = "provideLiquidity";
@@ -99,7 +99,7 @@ class LiquidityContract extends index_1.VerifiedContract {
99
99
  /**
100
100
  Fetches registered platforms
101
101
  */
102
- async getPlaforms() {
102
+ async getPlatforms() {
103
103
  return this.callContract(FUNCTIONS.GETPLATFORMS);
104
104
  }
105
105
  /**
@@ -221,11 +221,13 @@ class LiquidityContract extends index_1.VerifiedContract {
221
221
  * @param options
222
222
  * @returns none
223
223
  */
224
- async provideLiquidity(_platform, _manager, _liquidity, options) {
224
+ async provideLiquidity(_platform, _manager, _liquidity, _token, _tokenAmount, options) {
225
225
  await this.validateInput(index_1.DATATYPES.ADDRESS, _platform);
226
226
  await this.validateInput(index_1.DATATYPES.ADDRESS, _manager);
227
227
  await this.validateInput(index_1.DATATYPES.NUMBER, _liquidity);
228
- return this.callContract(FUNCTIONS.PROVIDELIQUIDITY, _platform, _manager, _liquidity, options);
228
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _token);
229
+ await this.validateInput(index_1.DATATYPES.NUMBER, _tokenAmount);
230
+ return this.callContract(FUNCTIONS.PROVIDELIQUIDITY, _platform, _manager, _liquidity, _token, _tokenAmount, options);
229
231
  }
230
232
  /**
231
233
  * Fetches balance of investor
@@ -22,6 +22,7 @@ var FUNCTIONS;
22
22
  FUNCTIONS["GETPLATFORMS"] = "getPlatforms";
23
23
  FUNCTIONS["GETPRODUCTREFERENCE"] = "getProductReference";
24
24
  FUNCTIONS["SETSIGNER"] = "setSigner";
25
+ FUNCTIONS["REGISTERPLATFORM"] = "registerPlatform";
25
26
  })(FUNCTIONS || (FUNCTIONS = {}));
26
27
  class ProductContract extends index_1.VerifiedContract {
27
28
  constructor(signer) {
@@ -101,5 +102,9 @@ class ProductContract extends index_1.VerifiedContract {
101
102
  await this.validateInput(index_1.DATATYPES.ADDRESS, _issue);
102
103
  return this.callContract(FUNCTIONS.GETPRODUCTREFERENCE, _issue, options);
103
104
  }
105
+ async registerPlatform(liquidityPlatform, _hashedMessage, _v, _r, _s, options) {
106
+ await this.validateInput(index_1.DATATYPES.ADDRESS, liquidityPlatform);
107
+ return this.callContract(FUNCTIONS.REGISTERPLATFORM, liquidityPlatform, _hashedMessage, _v, _r, _s, options);
108
+ }
104
109
  }
105
110
  exports.default = ProductContract;
@@ -13,6 +13,10 @@ var FUNCTIONS;
13
13
  FUNCTIONS["GETTOKENCOUNT"] = "getTokenCount";
14
14
  FUNCTIONS["GETTOKEN"] = "getToken";
15
15
  FUNCTIONS["GETNAMEANDTYPE"] = "getNameAndType";
16
+ FUNCTIONS["SETSIGNER"] = "setSigner";
17
+ FUNCTIONS["ADDBALANCE"] = "addToBalance";
18
+ FUNCTIONS["ISSUESECURITY"] = "issueSecurity";
19
+ FUNCTIONS["SECURITIESADDED"] = "securitiesAdded";
16
20
  })(FUNCTIONS || (FUNCTIONS = {}));
17
21
  class VerifiedFactory extends index_1.VerifiedContract {
18
22
  constructor(signer) {
@@ -21,6 +25,14 @@ class VerifiedFactory extends index_1.VerifiedContract {
21
25
  super(address, JSON.stringify(Factory_json_1.abi), signer);
22
26
  this.contractAddress = address;
23
27
  }
28
+ /**
29
+ Sets signer to verify bridge
30
+ @param _signer address of signer that can only be set by owner of bridge
31
+ */
32
+ async setSigner(_signer, options) {
33
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _signer);
34
+ return this.callContract(FUNCTIONS.SETSIGNER, _signer, options);
35
+ }
24
36
  /**
25
37
  * Get number of tokens [callable by client]
26
38
  * @param
@@ -88,5 +100,20 @@ class VerifiedFactory extends index_1.VerifiedContract {
88
100
  await this.validateInput(index_1.DATATYPES.STRING, tokenType);
89
101
  return this.callContract(FUNCTIONS.GETISSUER, this.sanitiseInput(index_1.DATATYPES.BYTE32, tokenType), this.sanitiseInput(index_1.DATATYPES.BYTE32, tokenName), options);
90
102
  }
103
+ async issueSecurity(_security, _company, _isin, _currency, _issuer, _hashedMessage, _v, _r, _s, options) {
104
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _security);
105
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _issuer);
106
+ return this.callContract(FUNCTIONS.ISSUESECURITY, _security, this.sanitiseInput(index_1.DATATYPES.BYTE32, _company), this.sanitiseInput(index_1.DATATYPES.BYTE32, _isin), this.sanitiseInput(index_1.DATATYPES.BYTE32, _currency), _issuer, _hashedMessage, _v, _r, _s, options);
107
+ }
108
+ async addBalance(_security, _transferor, _transferee, _amount, _hashedMessage, _v, _r, _s, options) {
109
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _security);
110
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _transferor);
111
+ await this.validateInput(index_1.DATATYPES.ADDRESS, _transferee);
112
+ await this.validateInput(index_1.DATATYPES.NUMBER, _amount);
113
+ return this.callContract(FUNCTIONS.ADDBALANCE, _security, _transferor, _transferee, _amount, _hashedMessage, _v, _r, _s, options);
114
+ }
115
+ notifySecuritiesAdded(callback) {
116
+ this.getEvent(FUNCTIONS.SECURITIESADDED, callback);
117
+ }
91
118
  }
92
119
  exports.default = VerifiedFactory;
@@ -7,6 +7,7 @@ const Products_json_1 = require("../../../abi/assetmanager/Products.json");
7
7
  var FUNCTIONS;
8
8
  (function (FUNCTIONS) {
9
9
  FUNCTIONS["ISSUEPRODUCT"] = "issueProduct";
10
+ FUNCTIONS["GETPRODUCTREFERENCE"] = "getProductReference";
10
11
  })(FUNCTIONS || (FUNCTIONS = {}));
11
12
  class VerifiedProducts extends index_1.VerifiedContract {
12
13
  constructor(signer) {
@@ -20,5 +21,9 @@ class VerifiedProducts extends index_1.VerifiedContract {
20
21
  await this.validateInput(index_1.DATATYPES.STRING, ref);
21
22
  return this.callContract(FUNCTIONS.ISSUEPRODUCT, issue, this.sanitiseInput(index_1.DATATYPES.BYTE32, ref), _hashedMessage, _v, _r, _s, options);
22
23
  }
24
+ async getProductReference(issue, options) {
25
+ await this.validateInput(index_1.DATATYPES.ADDRESS, issue);
26
+ return this.callContract(FUNCTIONS.GETPRODUCTREFERENCE, issue, options);
27
+ }
23
28
  }
24
29
  exports.default = VerifiedProducts;
@@ -17,6 +17,10 @@ var FUNCTIONS;
17
17
  FUNCTIONS["PAYOUT"] = "payOut";
18
18
  FUNCTIONS["ISSUESHARE"] = "issueShare";
19
19
  FUNCTIONS["GETBENEFICIARIES"] = "getBeneficiaries";
20
+ FUNCTIONS["SETLIQUIDITYPROVIDERS"] = "setLiquidityProviders";
21
+ FUNCTIONS["SETPLATFORMPOOLS"] = "setPlatformPools";
22
+ FUNCTIONS["SETPLATFORMSUBSCRIBERS"] = "setPlatformSubscribers";
23
+ FUNCTIONS["SETTLE"] = "settleIssue";
20
24
  })(FUNCTIONS || (FUNCTIONS = {}));
21
25
  class StocksContract extends index_1.VerifiedContract {
22
26
  constructor(signer, issue) {
@@ -49,6 +53,10 @@ class StocksContract extends index_1.VerifiedContract {
49
53
  await this.validateInput(index_1.DATATYPES.ADDRESS, _asset);
50
54
  return this.callContract(FUNCTIONS.ALLOTISSUE, this.sanitiseInput(index_1.DATATYPES.BYTE32, _allotment), _platform, this.sanitiseInput(index_1.DATATYPES.BYTE32, _pool), _investor, _amount, _asset, options);
51
55
  }
56
+ async settle(issue, options) {
57
+ await this.validateInput(index_1.DATATYPES.ADDRESS, issue);
58
+ return this.callContract(FUNCTIONS.SETTLE, issue, options);
59
+ }
52
60
  async getPaymentStatusFor(_beneficiary, options) {
53
61
  await this.validateInput(index_1.DATATYPES.ADDRESS, _beneficiary);
54
62
  return this.callContract(FUNCTIONS.GETPAYMENTSTATUS, _beneficiary, options);
@@ -77,5 +85,23 @@ class StocksContract extends index_1.VerifiedContract {
77
85
  await this.validateInput(index_1.DATATYPES.STRING, _isin);
78
86
  return this.callContract(FUNCTIONS.ISSUESHARE, _issueSize, _offerPrice, _minAskPrice, _minSubscription, this.sanitiseInput(index_1.DATATYPES.BYTE32, _currency), this.sanitiseInput(index_1.DATATYPES.BYTE32, _offerType), this.sanitiseInput(index_1.DATATYPES.BYTE32, _isin), _offeringDocuments, options);
79
87
  }
88
+ async setLiquidityProviders(platform, liquidityProviders, _hashedMessage, _v, _r, _s, options) {
89
+ await this.validateInput(index_1.DATATYPES.ADDRESS, platform);
90
+ await this.validateInput(index_1.DATATYPES.STRING, liquidityProviders);
91
+ return this.callContract(FUNCTIONS.SETLIQUIDITYPROVIDERS, platform, liquidityProviders, _hashedMessage, _v, _r, _s, options);
92
+ }
93
+ async setPlatformPools(platform, securityToken, pools, status, _hashedMessage, _v, _r, _s, options) {
94
+ await this.validateInput(index_1.DATATYPES.ADDRESS, platform);
95
+ await this.validateInput(index_1.DATATYPES.ADDRESS, securityToken);
96
+ await this.validateInput(index_1.DATATYPES.STRING, pools);
97
+ await this.validateInput(index_1.DATATYPES.STRING, status);
98
+ return this.callContract(FUNCTIONS.SETPLATFORMPOOLS, platform, securityToken, pools, status, _hashedMessage, _v, _r, _s, options);
99
+ }
100
+ async setPlatformSubscribers(platform, pool, eois, _hashedMessage, _v, _r, _s, options) {
101
+ await this.validateInput(index_1.DATATYPES.ADDRESS, platform);
102
+ await this.validateInput(index_1.DATATYPES.STRING, pool);
103
+ await this.validateInput(index_1.DATATYPES.STRING, eois);
104
+ return this.callContract(FUNCTIONS.SETPLATFORMSUBSCRIBERS, platform, this.sanitiseInput(index_1.DATATYPES.BYTE32, pool), eois, _hashedMessage, _v, _r, _s, options);
105
+ }
80
106
  }
81
107
  exports.default = StocksContract;
@@ -2,42 +2,42 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const contractAddress = {
4
4
  'L1-goerli': {
5
- 'Client': '0x115A7b38bE1d96F66cE5D25EaEe2f4FB91bb1E2F',
5
+ 'Client': '0xa1633Ab6F940D6eCE8a61F5D68285139277aeF0F',
6
6
  'KYC': '',
7
7
  'System': '',
8
8
  'Holder': '',
9
9
  'Ledger': '',
10
10
  'Account': '',
11
- 'Factory': '0xC5893D32ff3389fF8eE7De566C6487Fffa5d4d40',
12
- 'Cash': '0x4f1578c1F52401A600Cf000DD0aD3B19826baf5c',
13
- 'Bond': '0xbfAC42b83fBB6fb34914368BD0A9654fBEc559C3',
11
+ 'Factory': '0x0F248837AAd71e08A2AE43d8e148A6AbE891Daa6',
12
+ 'Cash': '0xf9CA2Ea876CB561610b89Cf3c009B723579f60C9',
13
+ 'Bond': '0x2c9e6D15350C5217D2908a40a07af47CC5a94428',
14
14
  'Token': '',
15
15
  'Oracle': '',
16
- 'Rates': '0x48b14BA34CB0c95779B4049C3B994a5ab43a6385',
16
+ 'Rates': '0x95b73422B232710953F8454e39E72672a48D88ED',
17
17
  'PreTrade': '',
18
18
  'Trade': '',
19
19
  'PostTrade': '',
20
20
  'SecuritiesRegistry': '',
21
- 'Security': '0x8B7D20deDF0DC7874B3C357Ba759890e51ad4bb3',
21
+ 'Security': '0xe88B4cc2F7620Ec5ABcd32aC5dCDB1E59Bd2D69b',
22
22
  'OrderPool': '',
23
23
  'PoolFactory': '',
24
- 'Products': '0x812cD96Bd1D9C35EaCD3F09Dc504B2d30e63EFe5',
24
+ 'Products': '0xdC51E8b0BaE85B134FfAf1E2a1d3ABdE14eF4927',
25
25
  'Stocks': '',
26
26
  'Bonds': '',
27
- 'Liquidity': '0xf6FeBF7B2d2A9828F4B75dB9AE56414907175849',
27
+ 'Liquidity': '0xE3B74659a6464519987DEe03F17696690BF3Ae10',
28
28
  'Distribution': '0x5c3171AFEC854f8B6FD138ee9533629ABd8A5365',
29
- 'BalancerManager': '0x69071961A04024F20A180B66F391DA5B14040bEa',
30
- 'PrimaryIssuePoolFactory': '0x3Ea829F1a0E01dFDa096f71DEAFd3582DF5E5a26',
29
+ 'BalancerManager': '0xA1edeF110612Af64FE4b88d73d6DC5b73eDfc2C6',
30
+ 'PrimaryIssuePoolFactory': '0x80B93fAe4DDaa078b054B761Ed09228814250b7F',
31
31
  'Custody': '',
32
32
  'CASH': {
33
- 'VCUSD': '0xCb8eF17d0715bB115977C65e04423d9171025911',
34
- 'VCEUR': '0xde5c4d3eC34e7918f97dc1bd0a4A2D9EfCeb95EB',
35
- 'VCINR': '0x52C3406DA3ce0aC152c61eEE0958A9fC4B5c1326'
33
+ 'VCUSD': '0xAE12CFDF57c9c38441a4205179970Fd7eEcff5D7',
34
+ 'VCEUR': '0x17531a8F6C5cd4a4681EB8c8B57c9c4C55b84308',
35
+ 'VCINR': '0xA5939cA5fF0Aa81940e6bF2e1F4ab0efb27c06C6'
36
36
  },
37
37
  'BOND': {
38
- 'VBUSD': '0x90bBea33248898fcaf3677265BDf11BF29D0cA8E',
39
- 'VBEUR': '0xA659FF847d4d0e86F40b0e22257fB4C38BA7Ce1b',
40
- 'VBINR': '0xeb0a155f635259849a17CC944B039DD2B7d61F04'
38
+ 'VBUSD': '0x738150a512984632D08e654f86B47CdF26eC644e',
39
+ 'VBEUR': '0xE01633468Ddf83F6b19C8ea3156193561f1580AB',
40
+ 'VBINR': '0x0075417c1B24a47fbCf54Eb53F29E1989eCEbC17'
41
41
  },
42
42
  },
43
43
  'L2-goerli': {
@@ -60,14 +60,14 @@ const contractAddress = {
60
60
  'Security': '0x324dfB528BEea8419eC96C6a54E0DA7744A4f8da',
61
61
  'OrderPool': '0x69C61a08b46fdd75D6f000CCf2b85618AC7011a5',
62
62
  'PoolFactory': '0xEE713f9e7d7D03267534C2628019C16dC1c41ecB',
63
- 'Products': '0x53F20058A93364689C70d2CBf4057F507e32e000',
64
- 'Stocks': '0x57ecEE694D9Cd5B16A55CFc5FF596de3Aa4B9a56',
65
- 'Bonds': '0x23ceC8ec65837F71F02f27f351cecB3ec4cf5ba6',
63
+ 'Products': '0xCA7C581d55E5025745C495D9be8EE6f8B22FD156',
64
+ 'Stocks': '0xA02119054272E52f6b6380c358E995f95Db2E9B2',
65
+ 'Bonds': '0xBa0daEBb3D325e6cE3401ff2FF913a5FEe20181D',
66
66
  'Liquidity': '',
67
67
  'Distribution': '',
68
68
  'BalancerManager': '',
69
69
  'PrimaryIssuePoolFactory': '',
70
- 'Custody': '',
70
+ 'Custody': '0x138a6aF82D20c1bb4589721C846626317C5E1143',
71
71
  'CASH': {
72
72
  'VCUSD': '0xdD089A53574CabcA8082F81CC883bdBFCb0e464a',
73
73
  'VCEUR': '0xC889374e780911b6524ADde13998F7Cb2b0Bb8d5',
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  return (mod && mod.__esModule) ? mod : { "default": mod };
5
5
  };
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.contractAddress = exports.utils = exports.VerifiedClient = exports.VerifiedProducts = exports.VerifiedRates = exports.VerifiedDistribution = exports.VerifiedFactory = exports.VerifiedSecurity = exports.VerifiedBond = exports.VerifiedCash = exports.AssetManager = exports.RatesContract = exports.LiquidityContract = exports.CustodyContract = exports.BondsContract = exports.StocksContract = exports.ProductContract = exports.DistributionContract = exports.OracleContract = exports.SecurityContract = exports.TokenContract = exports.FactoryContract = exports.TradeContract = exports.SecuritiesRegistryContract = exports.PreTradeContract = exports.PostTradeContract = exports.PoolFactoryContract = exports.OrderPoolContract = exports.CashContract = exports.BondContract = exports.AccountContract = exports.LedgerContract = exports.HolderContract = exports.SystemContract = exports.KYCContract = exports.ClientContract = exports.Provider = exports.VerifiedWallet = void 0;
7
+ exports.contractAddress = exports.utils = exports.VerifiedClient = exports.VerifiedProducts = exports.VerifiedRates = exports.VerifiedDistribution = exports.VerifiedFactory = exports.VerifiedBond = exports.VerifiedCash = exports.AssetManager = exports.RatesContract = exports.LiquidityContract = exports.CustodyContract = exports.BondsContract = exports.StocksContract = exports.ProductContract = exports.DistributionContract = exports.OracleContract = exports.SecurityContract = exports.TokenContract = exports.FactoryContract = exports.TradeContract = exports.SecuritiesRegistryContract = exports.PreTradeContract = exports.PostTradeContract = exports.PoolFactoryContract = exports.OrderPoolContract = exports.CashContract = exports.BondContract = exports.AccountContract = exports.LedgerContract = exports.HolderContract = exports.SystemContract = exports.KYCContract = exports.ClientContract = exports.Provider = exports.VerifiedWallet = void 0;
8
8
  const wallet_1 = require("./wallet");
9
9
  Object.defineProperty(exports, "VerifiedWallet", { enumerable: true, get: function () { return wallet_1.VerifiedWallet; } });
10
10
  const utils_1 = require("./utils");
@@ -65,8 +65,6 @@ const cash_2 = __importDefault(require("./contract/public/cash"));
65
65
  exports.VerifiedCash = cash_2.default;
66
66
  const bond_2 = __importDefault(require("./contract/public/bond"));
67
67
  exports.VerifiedBond = bond_2.default;
68
- const security_2 = __importDefault(require("./contract/public/security"));
69
- exports.VerifiedSecurity = security_2.default;
70
68
  const factory_2 = __importDefault(require("./contract/public/factory"));
71
69
  exports.VerifiedFactory = factory_2.default;
72
70
  const distribution_2 = __importDefault(require("./contract/public/distribution"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verified-network/verified-sdk",
3
- "version": "0.8.2",
3
+ "version": "0.8.5",
4
4
  "description": "An SDK to develop applications on the Verified Network",
5
5
  "repository": {
6
6
  "type": "git",