@verified-network/verified-sdk 0.8.4 → 0.8.7
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 +29635 -34623
- package/dist/abi/assetmanager/Client.json +1170 -1170
- package/dist/abi/assetmanager/Products.json +658 -340
- package/dist/abi/custody/Vault.json +7044 -9720
- package/dist/abi/deposits/Bond.json +222 -222
- package/dist/abi/deposits/Cash.json +421 -421
- package/dist/abi/deposits/Factory.json +17533 -5519
- package/dist/abi/deposits/Rates.json +1408 -1408
- package/dist/abi/deposits/Security.json +3417 -9505
- package/dist/contract/custody/index.js +19 -26
- package/dist/contract/public/factory/index.js +27 -0
- package/dist/contract/public/product/index.js +5 -0
- package/dist/contract/public/security/index.js +7 -27
- package/dist/contractAddress/index.js +15 -17
- package/dist/index.js +1 -3
- package/package.json +1 -1
|
@@ -27,59 +27,52 @@ class CustodyContract extends index_1.VerifiedContract {
|
|
|
27
27
|
async createVault(_creator, _id, options) {
|
|
28
28
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
29
29
|
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
30
|
-
return this.callContract(FUNCTIONS.CREATEVAULT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator),
|
|
30
|
+
return this.callContract(FUNCTIONS.CREATEVAULT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), _id, options);
|
|
31
31
|
}
|
|
32
32
|
async getCreator(_creator, options) {
|
|
33
33
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
34
34
|
return this.callContract(FUNCTIONS.GETCREATOR, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), options);
|
|
35
35
|
}
|
|
36
|
-
async addParticipant(_creator,
|
|
36
|
+
async addParticipant(_creator, _participant, _shard, options) {
|
|
37
37
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
38
|
-
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
39
38
|
await this.validateInput(index_1.DATATYPES.STRING, _participant);
|
|
40
|
-
|
|
39
|
+
await this.validateInput(index_1.DATATYPES.STRING, _shard);
|
|
40
|
+
return this.callContract(FUNCTIONS.ADDPARTICIPANT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant), _shard, options);
|
|
41
41
|
}
|
|
42
|
-
async removeParticipant(_creator,
|
|
42
|
+
async removeParticipant(_creator, _participant, options) {
|
|
43
43
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
44
|
-
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
45
44
|
await this.validateInput(index_1.DATATYPES.STRING, _participant);
|
|
46
|
-
return this.callContract(FUNCTIONS.REMOVEPARTICIPANT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32,
|
|
45
|
+
return this.callContract(FUNCTIONS.REMOVEPARTICIPANT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant), options);
|
|
47
46
|
}
|
|
48
|
-
async confirmParticipant(_creator, _participant,
|
|
47
|
+
async confirmParticipant(_creator, _participant, _pin, options) {
|
|
49
48
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
50
|
-
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
51
49
|
await this.validateInput(index_1.DATATYPES.STRING, _participant);
|
|
52
|
-
|
|
53
|
-
return this.callContract(FUNCTIONS.CONFIRMPARTICIPANT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant), this.sanitiseInput(index_1.DATATYPES.BYTE32, _id), _shard, _pin, options);
|
|
50
|
+
return this.callContract(FUNCTIONS.CONFIRMPARTICIPANT, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant), _pin, options);
|
|
54
51
|
}
|
|
55
|
-
async defineQuorum(_creator,
|
|
52
|
+
async defineQuorum(_creator, _minParticipants, options) {
|
|
56
53
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
57
|
-
await this.validateInput(index_1.DATATYPES.
|
|
58
|
-
return this.callContract(FUNCTIONS.DEFINEQUORUM, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator),
|
|
54
|
+
await this.validateInput(index_1.DATATYPES.NUMBER, _minParticipants);
|
|
55
|
+
return this.callContract(FUNCTIONS.DEFINEQUORUM, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), _minParticipants, options);
|
|
59
56
|
}
|
|
60
|
-
async promptSignatures(_creator,
|
|
57
|
+
async promptSignatures(_creator, options) {
|
|
61
58
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
62
|
-
|
|
63
|
-
return this.callContract(FUNCTIONS.PROMPTSIGNATURES, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _id), options);
|
|
59
|
+
return this.callContract(FUNCTIONS.PROMPTSIGNATURES, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), options);
|
|
64
60
|
}
|
|
65
|
-
async signTransaction(_creator, _participant,
|
|
61
|
+
async signTransaction(_creator, _participant, _tx, _pin, options) {
|
|
66
62
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
67
|
-
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
68
63
|
await this.validateInput(index_1.DATATYPES.STRING, _participant);
|
|
69
|
-
return this.callContract(FUNCTIONS.SIGNTRANSACTION, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant),
|
|
64
|
+
return this.callContract(FUNCTIONS.SIGNTRANSACTION, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant), _tx, _pin, options);
|
|
70
65
|
}
|
|
71
|
-
async checkQuorum(_creator,
|
|
66
|
+
async checkQuorum(_creator, _participant, _txid, options) {
|
|
72
67
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
73
|
-
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
74
68
|
await this.validateInput(index_1.DATATYPES.STRING, _participant);
|
|
75
69
|
await this.validateInput(index_1.DATATYPES.STRING, _txid);
|
|
76
|
-
return this.callContract(FUNCTIONS.CHECKQUORUM, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32,
|
|
70
|
+
return this.callContract(FUNCTIONS.CHECKQUORUM, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _participant), this.sanitiseInput(index_1.DATATYPES.BYTE32, _txid), options);
|
|
77
71
|
}
|
|
78
|
-
async getShards(_creator,
|
|
72
|
+
async getShards(_creator, _txid, options) {
|
|
79
73
|
await this.validateInput(index_1.DATATYPES.STRING, _creator);
|
|
80
|
-
await this.validateInput(index_1.DATATYPES.STRING, _id);
|
|
81
74
|
await this.validateInput(index_1.DATATYPES.STRING, _txid);
|
|
82
|
-
return this.callContract(FUNCTIONS.GETSHARDS, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32,
|
|
75
|
+
return this.callContract(FUNCTIONS.GETSHARDS, this.sanitiseInput(index_1.DATATYPES.BYTE32, _creator), this.sanitiseInput(index_1.DATATYPES.BYTE32, _txid), options);
|
|
83
76
|
}
|
|
84
77
|
}
|
|
85
78
|
exports.default = CustodyContract;
|
|
@@ -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;
|
|
@@ -6,39 +6,19 @@ const index_1 = require("../../index");
|
|
|
6
6
|
const Security_json_1 = require("../../../abi/deposits/Security.json");
|
|
7
7
|
var FUNCTIONS;
|
|
8
8
|
(function (FUNCTIONS) {
|
|
9
|
-
FUNCTIONS["
|
|
10
|
-
FUNCTIONS["ADDBALANCE"] = "addToBalance";
|
|
11
|
-
FUNCTIONS["TRANSFERBALANCE"] = "transferBalance";
|
|
12
|
-
FUNCTIONS["SECURITIESADDED"] = "securitiesAdded";
|
|
9
|
+
FUNCTIONS["APPROVETOKEN"] = "approveToken";
|
|
13
10
|
})(FUNCTIONS || (FUNCTIONS = {}));
|
|
14
11
|
class VerifiedSecurity extends index_1.VerifiedContract {
|
|
15
|
-
constructor(signer) {
|
|
16
|
-
const
|
|
17
|
-
const address = Security_json_1.networks[chainId].address;
|
|
12
|
+
constructor(signer, tokenAddress) {
|
|
13
|
+
const address = tokenAddress;
|
|
18
14
|
super(address, JSON.stringify(Security_json_1.abi), signer);
|
|
19
15
|
this.contractAddress = address;
|
|
20
16
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
*/
|
|
25
|
-
async setSigner(_signer, options) {
|
|
26
|
-
await this.validateInput(index_1.DATATYPES.ADDRESS, _signer);
|
|
27
|
-
return this.callContract(FUNCTIONS.SETSIGNER, _signer, options);
|
|
28
|
-
}
|
|
29
|
-
async addToBalance(_isin, _amount, _tokenHolder, _currency, _hashedMessage, _v, _r, _s, options) {
|
|
30
|
-
await this.validateInput(index_1.DATATYPES.ADDRESS, _tokenHolder);
|
|
31
|
-
await this.validateInput(index_1.DATATYPES.NUMBER, _amount);
|
|
32
|
-
return this.callContract(FUNCTIONS.ADDBALANCE, this.sanitiseInput(index_1.DATATYPES.BYTE32, _isin), _amount, _tokenHolder, this.sanitiseInput(index_1.DATATYPES.BYTE32, _currency), _hashedMessage, _v, _r, _s, options);
|
|
33
|
-
}
|
|
34
|
-
async transferBalance(_isin, _transferor, _amount, _transferee, _currency, _hashedMessage, _v, _r, _s, options) {
|
|
35
|
-
await this.validateInput(index_1.DATATYPES.ADDRESS, _transferee);
|
|
36
|
-
await this.validateInput(index_1.DATATYPES.ADDRESS, _transferor);
|
|
17
|
+
async approveToken(_owner, _spender, _amount, _hashedMessage, _v, _r, _s, options) {
|
|
18
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _owner);
|
|
19
|
+
await this.validateInput(index_1.DATATYPES.ADDRESS, _spender);
|
|
37
20
|
await this.validateInput(index_1.DATATYPES.NUMBER, _amount);
|
|
38
|
-
return this.callContract(FUNCTIONS.
|
|
39
|
-
}
|
|
40
|
-
notifySecuritiesAdded(callback) {
|
|
41
|
-
this.getEvent(FUNCTIONS.SECURITIESADDED, callback);
|
|
21
|
+
return this.callContract(FUNCTIONS.APPROVETOKEN, _owner, _spender, _amount, _hashedMessage, _v, _r, _s, options);
|
|
42
22
|
}
|
|
43
23
|
}
|
|
44
24
|
exports.default = VerifiedSecurity;
|
|
@@ -2,42 +2,41 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const contractAddress = {
|
|
4
4
|
'L1-goerli': {
|
|
5
|
-
'Client': '
|
|
5
|
+
'Client': '0xEF52B2289BE5eaf61100c59f529B42ba8d6022F1',
|
|
6
6
|
'KYC': '',
|
|
7
7
|
'System': '',
|
|
8
8
|
'Holder': '',
|
|
9
9
|
'Ledger': '',
|
|
10
10
|
'Account': '',
|
|
11
|
-
'Factory': '
|
|
12
|
-
'Cash': '
|
|
13
|
-
'Bond': '
|
|
11
|
+
'Factory': '0x31A0469B5B0941aCcf75643aAB81ae319AD07733',
|
|
12
|
+
'Cash': '0x13AAf050FD9BB16bb57A9D141515f789cD711004',
|
|
13
|
+
'Bond': '0xc97E5FFE71eE3dBf90a01917b154a20F6DfF6eb9',
|
|
14
14
|
'Token': '',
|
|
15
15
|
'Oracle': '',
|
|
16
|
-
'Rates': '
|
|
16
|
+
'Rates': '0xDccbBf85d4881f0BA8ea7c9Cb02f4Ed8a123A3fD',
|
|
17
17
|
'PreTrade': '',
|
|
18
18
|
'Trade': '',
|
|
19
19
|
'PostTrade': '',
|
|
20
20
|
'SecuritiesRegistry': '',
|
|
21
|
-
'Security': '
|
|
21
|
+
'Security': '0x6c09aA54F469052E29bBa80b632fDBc95Ea0a0e8',
|
|
22
22
|
'OrderPool': '',
|
|
23
23
|
'PoolFactory': '',
|
|
24
|
-
'Products': '0xF647F22e8Ce31d912c2786135610f9f4A45c8690',
|
|
25
24
|
'Stocks': '',
|
|
26
25
|
'Bonds': '',
|
|
27
26
|
'Liquidity': '0xE3B74659a6464519987DEe03F17696690BF3Ae10',
|
|
28
27
|
'Distribution': '0x5c3171AFEC854f8B6FD138ee9533629ABd8A5365',
|
|
29
|
-
'BalancerManager': '
|
|
30
|
-
'PrimaryIssuePoolFactory': '
|
|
31
|
-
'Custody': '',
|
|
28
|
+
'BalancerManager': '0x607080F3dB562aE9aFf0b3f2189798b873E2bB62',
|
|
29
|
+
'PrimaryIssuePoolFactory': '0xA84965eDDF405B76ea8fA9d902396562B9fd9AA1',
|
|
30
|
+
'Custody': '0x2D36DBD05580BF946fFf959DC5Af882F641edADc',
|
|
32
31
|
'CASH': {
|
|
33
|
-
'VCUSD': '
|
|
34
|
-
'VCEUR': '
|
|
35
|
-
'VCINR': '
|
|
32
|
+
'VCUSD': '0x64EA01fF7e9A0986Cd70b4d19CEDB26a9f99F0c1',
|
|
33
|
+
'VCEUR': '0x5f678B12C4a5fc2136CC9060B10BB2a8AFdfA5b6',
|
|
34
|
+
'VCINR': '0x74153fe9E896EC7067CC53c9533BFC00c45CD629'
|
|
36
35
|
},
|
|
37
36
|
'BOND': {
|
|
38
|
-
'VBUSD': '
|
|
39
|
-
'VBEUR': '
|
|
40
|
-
'VBINR': '
|
|
37
|
+
'VBUSD': '0x64a281e17b089aB8F0D50729b2C9C779B460e1fC',
|
|
38
|
+
'VBEUR': '0x220C22b1a292504afdA9FC0fE39D83e4bcBb834E',
|
|
39
|
+
'VBINR': '0x3cbaD48599a8EBfF275480E51ee03F9b1F63F0de'
|
|
41
40
|
},
|
|
42
41
|
},
|
|
43
42
|
'L2-goerli': {
|
|
@@ -60,7 +59,6 @@ const contractAddress = {
|
|
|
60
59
|
'Security': '0x324dfB528BEea8419eC96C6a54E0DA7744A4f8da',
|
|
61
60
|
'OrderPool': '0x69C61a08b46fdd75D6f000CCf2b85618AC7011a5',
|
|
62
61
|
'PoolFactory': '0xEE713f9e7d7D03267534C2628019C16dC1c41ecB',
|
|
63
|
-
'Products': '0xCA7C581d55E5025745C495D9be8EE6f8B22FD156',
|
|
64
62
|
'Stocks': '0xA02119054272E52f6b6380c358E995f95Db2E9B2',
|
|
65
63
|
'Bonds': '0xBa0daEBb3D325e6cE3401ff2FF913a5FEe20181D',
|
|
66
64
|
'Liquidity': '',
|
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.
|
|
7
|
+
exports.contractAddress = exports.utils = exports.VerifiedClient = 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;
|
|
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");
|
|
@@ -73,8 +73,6 @@ const distribution_2 = __importDefault(require("./contract/public/distribution")
|
|
|
73
73
|
exports.VerifiedDistribution = distribution_2.default;
|
|
74
74
|
const rates_2 = __importDefault(require("./contract/public/rates"));
|
|
75
75
|
exports.VerifiedRates = rates_2.default;
|
|
76
|
-
const product_2 = __importDefault(require("./contract/public/product"));
|
|
77
|
-
exports.VerifiedProducts = product_2.default;
|
|
78
76
|
const client_2 = __importDefault(require("./contract/public/client"));
|
|
79
77
|
exports.VerifiedClient = client_2.default;
|
|
80
78
|
const ethers_1 = require("ethers");
|