@verified-network/verified-sdk 0.7.4 → 0.7.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.
- package/dist/abi/assetmanager/BalancerManager.json +21075 -14455
- package/dist/abi/deposits/L1Bond.json +20192 -0
- package/dist/abi/deposits/L1Cash.json +43651 -0
- package/dist/abi/deposits/L1Factory.json +6846 -0
- package/dist/abi/deposits/L1Rates.json +13420 -0
- package/dist/abi/deposits/L1Security.json +7297 -0
- package/dist/abi/liquidity/Distribution.json +4 -4
- package/dist/abi/liquidity/Liquidity.json +4 -4
- package/dist/abi/securities/Bonds.json +663 -663
- package/dist/abi/securities/Products.json +2690 -2690
- package/dist/abi/securities/Stocks.json +5100 -6620
- package/dist/abi/trades/OrderPool.json +14590 -13702
- package/dist/abi/trades/PoolFactory.json +671 -671
- package/dist/abi/trades/PostTrade.json +35 -35
- package/dist/abi/trades/PreTrade.json +139 -139
- package/dist/abi/trades/SecuritiesRegistry.json +2206 -2206
- package/dist/abi/trades/Security.json +798 -798
- package/dist/abi/trades/Trade.json +91 -91
- package/dist/contract/public/bond/index.js +68 -0
- package/dist/contract/public/cash/index.js +19 -7
- package/dist/contract/public/factory/index.js +62 -0
- package/dist/contract/public/rates/index.js +3 -3
- package/dist/contract/public/security/index.js +27 -0
- package/dist/contractAddress/index.js +29 -29
- package/dist/index.js +11 -3
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
const index_1 = require("../../index");
|
|
6
|
+
const L1Bond_json_1 = require("../../../abi/deposits/L1Bond.json");
|
|
7
|
+
var FUNCTIONS;
|
|
8
|
+
(function (FUNCTIONS) {
|
|
9
|
+
FUNCTIONS["SUPPORTTOKENS"] = "supportTokens";
|
|
10
|
+
FUNCTIONS["CHECKSUPPORTFORTOKEN"] = "checkSupportForToken";
|
|
11
|
+
FUNCTIONS["GETSUPPORTEDTOKENS"] = "getSupportedTokens";
|
|
12
|
+
FUNCTIONS["REQUESTISSUE"] = "requestIssue";
|
|
13
|
+
FUNCTIONS["SETSIGNER"] = "setSigner";
|
|
14
|
+
})(FUNCTIONS || (FUNCTIONS = {}));
|
|
15
|
+
class VerifiedBond extends index_1.VerifiedContract {
|
|
16
|
+
constructor(signer, bondCurrencyAddress) {
|
|
17
|
+
const chainId = signer.provider._network.chainId.toString();
|
|
18
|
+
const address = bondCurrencyAddress;
|
|
19
|
+
super(address, JSON.stringify(L1Bond_json_1.abi), signer);
|
|
20
|
+
this.contractAddress = address;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
Specifies list of supported tokens that can be invested in the Verified Liquidity token
|
|
24
|
+
@param _tokens address of token supported
|
|
25
|
+
@param _name string name of token supported
|
|
26
|
+
*/
|
|
27
|
+
async supportTokens(_tokens, _name, options) {
|
|
28
|
+
await this.validateInput(index_1.DATATYPES.STRING, _tokens);
|
|
29
|
+
await this.validateInput(index_1.DATATYPES.STRING, _name);
|
|
30
|
+
return this.callContract(FUNCTIONS.SUPPORTTOKENS, _tokens, this.sanitiseInput(index_1.DATATYPES.BYTE32, _name), options);
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
Checks if a specified token is supported for investing in the Verified Liquidity token
|
|
34
|
+
@param _token token that is supported for investment
|
|
35
|
+
*/
|
|
36
|
+
async checkSupportForToken(_token, options) {
|
|
37
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _token);
|
|
38
|
+
return this.callContract(FUNCTIONS.CHECKSUPPORTFORTOKEN, _token, options);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Returns list of supported liquidity tokens (eg, VITTA, USDC, DAI)
|
|
42
|
+
* @returns array of struct of tokens
|
|
43
|
+
*/
|
|
44
|
+
async getSupportedTokens() {
|
|
45
|
+
return this.callContract(FUNCTIONS.GETSUPPORTEDTOKENS);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
Used by external apps (eg, exchange, wallet) to buy Verified cash token
|
|
49
|
+
@param _token address of token used by investor to buy the cash token
|
|
50
|
+
@param _amount amount of token that is transferred from investor to this cash token issuing contract
|
|
51
|
+
@param _buyer address of buyer
|
|
52
|
+
*/
|
|
53
|
+
async requestIssue(_token, _amount, _buyer, options) {
|
|
54
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _token);
|
|
55
|
+
await this.validateInput(index_1.DATATYPES.NUMBER, _amount);
|
|
56
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _buyer);
|
|
57
|
+
return this.callContract(FUNCTIONS.REQUESTISSUE, _token, _amount, _buyer, options);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
Sets signer to verify bridge
|
|
61
|
+
@param _signer address of signer that can only be set by owner of bridge
|
|
62
|
+
*/
|
|
63
|
+
async setSigner(_signer, options) {
|
|
64
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _signer);
|
|
65
|
+
return this.callContract(FUNCTIONS.SETSIGNER, _signer, options);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.default = VerifiedBond;
|
|
@@ -3,24 +3,26 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
const index_1 = require("../../index");
|
|
6
|
-
const
|
|
6
|
+
const L1Cash_json_1 = require("../../../abi/deposits/L1Cash.json");
|
|
7
7
|
var FUNCTIONS;
|
|
8
8
|
(function (FUNCTIONS) {
|
|
9
9
|
FUNCTIONS["SUPPORTTOKENS"] = "supportTokens";
|
|
10
10
|
FUNCTIONS["CHECKSUPPORTFORTOKEN"] = "checkSupportForToken";
|
|
11
11
|
FUNCTIONS["GETSUPPORTEDTOKENS"] = "getSupportedTokens";
|
|
12
12
|
FUNCTIONS["REQUESTISSUE"] = "requestIssue";
|
|
13
|
+
FUNCTIONS["SETSIGNER"] = "setSigner";
|
|
13
14
|
})(FUNCTIONS || (FUNCTIONS = {}));
|
|
14
15
|
class VerifiedCash extends index_1.VerifiedContract {
|
|
15
|
-
constructor(signer) {
|
|
16
|
+
constructor(signer, currencyAddress) {
|
|
16
17
|
const chainId = signer.provider._network.chainId.toString();
|
|
17
|
-
const address =
|
|
18
|
-
super(address, JSON.stringify(
|
|
18
|
+
const address = currencyAddress;
|
|
19
|
+
super(address, JSON.stringify(L1Cash_json_1.abi), signer);
|
|
19
20
|
this.contractAddress = address;
|
|
20
21
|
}
|
|
21
22
|
/**
|
|
22
23
|
Specifies list of supported tokens that can be invested in the Verified Liquidity token
|
|
23
|
-
@param _tokens
|
|
24
|
+
@param _tokens address of token supported
|
|
25
|
+
@param _name string name of token supported
|
|
24
26
|
*/
|
|
25
27
|
async supportTokens(_tokens, _name, options) {
|
|
26
28
|
await this.validateInput(index_1.DATATYPES.STRING, _tokens);
|
|
@@ -46,11 +48,21 @@ class VerifiedCash extends index_1.VerifiedContract {
|
|
|
46
48
|
Used by external apps (eg, exchange, wallet) to buy Verified cash token
|
|
47
49
|
@param _token address of token used by investor to buy the cash token
|
|
48
50
|
@param _amount amount of token that is transferred from investor to this cash token issuing contract
|
|
51
|
+
@param _buyer address of buyer
|
|
49
52
|
*/
|
|
50
|
-
async requestIssue(_token, _amount, options) {
|
|
53
|
+
async requestIssue(_token, _amount, _buyer, options) {
|
|
51
54
|
await this.validateInput(index_1.DATATYPES.ADDRESS, _token);
|
|
52
55
|
await this.validateInput(index_1.DATATYPES.NUMBER, _amount);
|
|
53
|
-
|
|
56
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _buyer);
|
|
57
|
+
return this.callContract(FUNCTIONS.REQUESTISSUE, _token, _amount, _buyer, options);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
Sets signer to verify bridge
|
|
61
|
+
@param _signer address of signer that can only be set by owner of bridge
|
|
62
|
+
*/
|
|
63
|
+
async setSigner(_signer, options) {
|
|
64
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _signer);
|
|
65
|
+
return this.callContract(FUNCTIONS.SETSIGNER, _signer, options);
|
|
54
66
|
}
|
|
55
67
|
}
|
|
56
68
|
exports.default = VerifiedCash;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
const index_1 = require("../../index");
|
|
6
|
+
const L1Factory_json_1 = require("../../../abi/deposits/L1Factory.json");
|
|
7
|
+
var FUNCTIONS;
|
|
8
|
+
(function (FUNCTIONS) {
|
|
9
|
+
FUNCTIONS["GETNAME"] = "getName";
|
|
10
|
+
FUNCTIONS["GETTYPE"] = "getType";
|
|
11
|
+
FUNCTIONS["GETTOKENBYNAMETYPE"] = "getTokenByNameType";
|
|
12
|
+
FUNCTIONS["GETISSUER"] = "getIssuer";
|
|
13
|
+
})(FUNCTIONS || (FUNCTIONS = {}));
|
|
14
|
+
class VerifiedFactory extends index_1.VerifiedContract {
|
|
15
|
+
constructor(signer) {
|
|
16
|
+
const chainId = signer.provider._network.chainId.toString();
|
|
17
|
+
const address = L1Factory_json_1.networks[chainId].address;
|
|
18
|
+
super(address, JSON.stringify(L1Factory_json_1.abi), signer);
|
|
19
|
+
this.contractAddress = address;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Get name of token
|
|
23
|
+
* @param _token address of token for which name is required
|
|
24
|
+
* @returns returns name of token
|
|
25
|
+
*/
|
|
26
|
+
async getName(_token, options) {
|
|
27
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _token);
|
|
28
|
+
return this.callContract(FUNCTIONS.GETNAME, _token, options);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Get type of token
|
|
32
|
+
* @param _token address of token for which type is required
|
|
33
|
+
* @returns returns name of token
|
|
34
|
+
*/
|
|
35
|
+
async getType(_token, options) {
|
|
36
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _token);
|
|
37
|
+
return this.callContract(FUNCTIONS.GETTYPE, _token, options);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Get name and type of token
|
|
41
|
+
* @param _tokenName string name of token
|
|
42
|
+
* @param _tokenType string type of token
|
|
43
|
+
* @returns returns address of token
|
|
44
|
+
*/
|
|
45
|
+
async getTokenByNameType(tokenName, tokenType, options) {
|
|
46
|
+
await this.validateInput(index_1.DATATYPES.STRING, tokenName);
|
|
47
|
+
await this.validateInput(index_1.DATATYPES.STRING, tokenType);
|
|
48
|
+
return this.callContract(FUNCTIONS.GETTOKENBYNAMETYPE, this.sanitiseInput(index_1.DATATYPES.BYTE32, tokenName), this.sanitiseInput(index_1.DATATYPES.BYTE32, tokenType), options);
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Get name and type of token issuer
|
|
52
|
+
* @param _tokenName string name of token
|
|
53
|
+
* @param _tokenType string type of token
|
|
54
|
+
* @returns returns address of token issuer
|
|
55
|
+
*/
|
|
56
|
+
async getIssuer(tokenName, tokenType, options) {
|
|
57
|
+
await this.validateInput(index_1.DATATYPES.STRING, tokenName);
|
|
58
|
+
await this.validateInput(index_1.DATATYPES.STRING, tokenType);
|
|
59
|
+
return this.callContract(FUNCTIONS.GETISSUER, this.sanitiseInput(index_1.DATATYPES.BYTE32, tokenType), this.sanitiseInput(index_1.DATATYPES.BYTE32, tokenName), options);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.default = VerifiedFactory;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// @ts-nocheck
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
const index_1 = require("../../index");
|
|
6
|
-
const
|
|
6
|
+
const L1Rates_json_1 = require("../../../abi/deposits/L1Rates.json");
|
|
7
7
|
var FUNCTIONS;
|
|
8
8
|
(function (FUNCTIONS) {
|
|
9
9
|
FUNCTIONS["SETFEETO"] = "setFeeTo";
|
|
@@ -20,8 +20,8 @@ var FUNCTIONS;
|
|
|
20
20
|
class VerifiedRates extends index_1.VerifiedContract {
|
|
21
21
|
constructor(signer) {
|
|
22
22
|
const chainId = signer.provider._network.chainId.toString();
|
|
23
|
-
const address =
|
|
24
|
-
super(address, JSON.stringify(
|
|
23
|
+
const address = L1Rates_json_1.networks[chainId].address;
|
|
24
|
+
super(address, JSON.stringify(L1Rates_json_1.abi), signer);
|
|
25
25
|
this.contractAddress = address;
|
|
26
26
|
}
|
|
27
27
|
async setFeeTo(_feeTo, _fee, _feeType, options) {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
const index_1 = require("../../index");
|
|
6
|
+
const L1Security_json_1 = require("../../../abi/deposits/L1Security.json");
|
|
7
|
+
var FUNCTIONS;
|
|
8
|
+
(function (FUNCTIONS) {
|
|
9
|
+
FUNCTIONS["SETSIGNER"] = "setSigner";
|
|
10
|
+
})(FUNCTIONS || (FUNCTIONS = {}));
|
|
11
|
+
class VerifiedSecurity extends index_1.VerifiedContract {
|
|
12
|
+
constructor(signer) {
|
|
13
|
+
const chainId = signer.provider._network.chainId.toString();
|
|
14
|
+
const address = L1Security_json_1.networks[chainId].address;
|
|
15
|
+
super(address, JSON.stringify(L1Security_json_1.abi), signer);
|
|
16
|
+
this.contractAddress = address;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
Sets signer to verify bridge
|
|
20
|
+
@param _signer address of signer that can only be set by owner of bridge
|
|
21
|
+
*/
|
|
22
|
+
async setSigner(_signer, options) {
|
|
23
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _signer);
|
|
24
|
+
return this.callContract(FUNCTIONS.SETSIGNER, _signer, options);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
exports.default = VerifiedSecurity;
|
|
@@ -14,20 +14,20 @@ const contractAddress = {
|
|
|
14
14
|
'Token': '0x4527637554e0d240A6a81b0fE32C894A76e8F6f4',
|
|
15
15
|
'Oracle': '0xb5F2ecA071D0B70Bc4003c57e79FFA88c8A023AC',
|
|
16
16
|
'Rates': '0x2f0135840b55Fc20b8Ab10CE6AF8755Dd3E6737c',
|
|
17
|
-
'PreTrade': '
|
|
18
|
-
'Trade': '
|
|
19
|
-
'PostTrade': '
|
|
20
|
-
'SecuritiesRegistry': '
|
|
21
|
-
'Security': '
|
|
22
|
-
'OrderPool': '
|
|
23
|
-
'PoolFactory': '
|
|
24
|
-
'Products': '
|
|
25
|
-
'Stocks': '
|
|
26
|
-
'Bonds': '
|
|
17
|
+
'PreTrade': '0xDea805F278cCF023903dcED825B5E98897B394a0',
|
|
18
|
+
'Trade': '0xc2Ce803EB51b9c4ce16B6Fbda640D7E1c61Fc8f8',
|
|
19
|
+
'PostTrade': '0x6B748589ed66eB4c6Fc2aa91Ea556D9f86A0eC1e',
|
|
20
|
+
'SecuritiesRegistry': '0x96e1D79737F5C97614B0c800eEDC28174eFa1F7e',
|
|
21
|
+
'Security': '0x7f5f10cD4Ce5c70cd16B296b6dCB374AF2B19596',
|
|
22
|
+
'OrderPool': '0xe4bD71E366C65AFe21fC7c9a2320B356fe98eC97',
|
|
23
|
+
'PoolFactory': '0xc1c229F590500F4031871b1Ee346841159CE8269',
|
|
24
|
+
'Products': '0x8C59025b8A08Cb5dc0df9852ABa37a5ec671E34C',
|
|
25
|
+
'Stocks': '0xa674FD33dCE0C9c0d3B3bb41302FFDfA942c0416',
|
|
26
|
+
'Bonds': '0xcEdD153f8e17D82aa347f09F3E5FE3143d201631',
|
|
27
27
|
'Liquidity': '0x38465490aE03b2641D0497baf1F2CfeE3adB33a0',
|
|
28
28
|
'Distribution': '0xBBb9035864A25573Ad1f7FF7B8774218d347543F',
|
|
29
|
-
'BalancerManager': '
|
|
30
|
-
'PrimaryIssuePoolFactory': '
|
|
29
|
+
'BalancerManager': '',
|
|
30
|
+
'PrimaryIssuePoolFactory': '',
|
|
31
31
|
'Custody': '',
|
|
32
32
|
'CASH': {
|
|
33
33
|
'VCUSD': '0x0D5b968e84308ef57c4FfA5ce7EEFF8AdD6B9f66',
|
|
@@ -41,42 +41,42 @@ const contractAddress = {
|
|
|
41
41
|
},
|
|
42
42
|
},
|
|
43
43
|
'rinkeby': {
|
|
44
|
-
'Client': '
|
|
44
|
+
'Client': '0xEf2390081e6Bc8b2d122d8201ca14D3eC2246f33',
|
|
45
45
|
'KYC': '',
|
|
46
46
|
'System': '',
|
|
47
47
|
'Holder': '',
|
|
48
48
|
'Ledger': '',
|
|
49
49
|
'Account': '',
|
|
50
|
-
'Factory': '
|
|
51
|
-
'Cash': '
|
|
52
|
-
'Bond': '
|
|
50
|
+
'Factory': '0xB7b47966B7C9633b91cB1BEB0A997D35fF5EA77a',
|
|
51
|
+
'Cash': '0x95b31E7608b37B7A7c6adee75B775bC2F1f665A1',
|
|
52
|
+
'Bond': '0x5797C2340E97F026aEC6a019BE698D77E1B19Ee4',
|
|
53
53
|
'Token': '',
|
|
54
54
|
'Oracle': '',
|
|
55
|
-
'Rates': '
|
|
55
|
+
'Rates': '0xc5c2Aeb737C016FDB2655Ff7B748667f5ab6A7f1',
|
|
56
56
|
'PreTrade': '',
|
|
57
57
|
'Trade': '',
|
|
58
58
|
'PostTrade': '',
|
|
59
59
|
'SecuritiesRegistry': '',
|
|
60
|
-
'Security': '',
|
|
60
|
+
'Security': '0x30A613eBd1A460E4800395bc0BF6E1B6cE58Eb2c',
|
|
61
61
|
'OrderPool': '',
|
|
62
62
|
'PoolFactory': '',
|
|
63
|
-
'Products': '
|
|
63
|
+
'Products': '0xE3ba3A9598Cd99851Bd671E476331622d7306191',
|
|
64
64
|
'Stocks': '',
|
|
65
65
|
'Bonds': '',
|
|
66
|
-
'Liquidity': '
|
|
67
|
-
'Distribution': '
|
|
68
|
-
'BalancerManager': '
|
|
69
|
-
'PrimaryIssuePoolFactory': '
|
|
66
|
+
'Liquidity': '0xcffd111F1Ce862475d7eB1c3d4257276Ca8A4551',
|
|
67
|
+
'Distribution': '0xd9AaFEc2839Ac08773154596e9ED6936CDf474B4',
|
|
68
|
+
'BalancerManager': '0xF3Fa603C0Fc49DE8392A17DF8edd4E40a235f917',
|
|
69
|
+
'PrimaryIssuePoolFactory': '0x48E30d2C73BCa133Bbe7fac2fD32E7a4684d5d99',
|
|
70
70
|
'Custody': '',
|
|
71
71
|
'CASH': {
|
|
72
|
-
'VCUSD': '
|
|
73
|
-
'VCEUR': '
|
|
74
|
-
'VCINR': '
|
|
72
|
+
'VCUSD': '0x5e143828Ff6CCD59418752fc2019966EE3A97725',
|
|
73
|
+
'VCEUR': '0xe1621E2A7184a2BE93A09C6288b35Ad83994fFcA',
|
|
74
|
+
'VCINR': '0xE29c0CE49AE3b4b7F8A727e48A11e2Fd72df92dA'
|
|
75
75
|
},
|
|
76
76
|
'BOND': {
|
|
77
|
-
'VBUSD': '
|
|
78
|
-
'VBEUR': '
|
|
79
|
-
'VBINR': '
|
|
77
|
+
'VBUSD': '0xC341Ed6b732dd30D4b5100ecb558A8EA252E8929',
|
|
78
|
+
'VBEUR': '0xD4442eFEA597aA53C4eF2E41d4c743d509266d99',
|
|
79
|
+
'VBINR': '0xAcCC074Ebaa695604b9A5995Cda2EeaC5c1aF19C'
|
|
80
80
|
},
|
|
81
81
|
},
|
|
82
82
|
'mainnet': {
|
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.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.VerifiedRates = 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;
|
|
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");
|
|
@@ -61,8 +61,16 @@ const rates_1 = __importDefault(require("./contract/rates"));
|
|
|
61
61
|
exports.RatesContract = rates_1.default;
|
|
62
62
|
const assetmanager_1 = __importDefault(require("./contract/assetmanager"));
|
|
63
63
|
exports.AssetManager = assetmanager_1.default;
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
const cash_2 = __importDefault(require("./contract/public/cash"));
|
|
65
|
+
exports.VerifiedCash = cash_2.default;
|
|
66
|
+
const bond_2 = __importDefault(require("./contract/public/bond"));
|
|
67
|
+
exports.VerifiedBond = bond_2.default;
|
|
68
|
+
const security_2 = __importDefault(require("./contract/public/security"));
|
|
69
|
+
exports.VerifiedSecurity = security_2.default;
|
|
70
|
+
const factory_2 = __importDefault(require("./contract/public/factory"));
|
|
71
|
+
exports.VerifiedFactory = factory_2.default;
|
|
72
|
+
const rates_2 = __importDefault(require("./contract/public/rates"));
|
|
73
|
+
exports.VerifiedRates = rates_2.default;
|
|
66
74
|
const ethers_1 = require("ethers");
|
|
67
75
|
Object.defineProperty(exports, "utils", { enumerable: true, get: function () { return ethers_1.utils; } });
|
|
68
76
|
const contractAddress_1 = __importDefault(require("./contractAddress"));
|