@tatumio/egld 2.0.1-alpha.326 → 2.0.1-alpha.328
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/package.json +6 -6
- package/src/lib/egld.sdk.d.ts +59 -0
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tatumio/egld",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.328",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@tatumio/api-client": "2.0.1-alpha.
|
|
8
|
+
"@tatumio/api-client": "2.0.1-alpha.328",
|
|
9
9
|
"axios": "^0.26.0",
|
|
10
10
|
"form-data": "^4.0.0",
|
|
11
|
-
"@tatumio/shared-testing-common": "2.0.1-alpha.
|
|
12
|
-
"@tatumio/shared-core": "2.0.1-alpha.
|
|
13
|
-
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.
|
|
11
|
+
"@tatumio/shared-testing-common": "2.0.1-alpha.328",
|
|
12
|
+
"@tatumio/shared-core": "2.0.1-alpha.328",
|
|
13
|
+
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.328",
|
|
14
14
|
"bignumber.js": "^9.0.2",
|
|
15
|
-
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.
|
|
15
|
+
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.328",
|
|
16
16
|
"ed25519-hd-key": "^1.2.0",
|
|
17
17
|
"web3-core": "^1.7.4",
|
|
18
18
|
"@elrondnetwork/erdjs": "^9.2.4",
|
package/src/lib/egld.sdk.d.ts
CHANGED
|
@@ -117,4 +117,63 @@ export declare const TatumEgldSDK: (args: SDKArguments) => {
|
|
|
117
117
|
}>;
|
|
118
118
|
prepareAddNftMinterAbstraction: (body: import("@tatumio/api-client").AddNftMinter | import("@tatumio/api-client").AddNftMinterKMS) => string[];
|
|
119
119
|
};
|
|
120
|
+
ledger: {
|
|
121
|
+
customer: {
|
|
122
|
+
get: typeof import("@tatumio/api-client").CustomerService.getCustomerByExternalOrInternalId;
|
|
123
|
+
getAll: typeof import("@tatumio/api-client").CustomerService.findAllCustomers;
|
|
124
|
+
update: typeof import("@tatumio/api-client").CustomerService.updateCustomer;
|
|
125
|
+
activate: typeof import("@tatumio/api-client").CustomerService.activateCustomer;
|
|
126
|
+
deactivate: typeof import("@tatumio/api-client").CustomerService.deactivateCustomer;
|
|
127
|
+
enable: typeof import("@tatumio/api-client").CustomerService.enableCustomer;
|
|
128
|
+
disable: typeof import("@tatumio/api-client").CustomerService.disableCustomer;
|
|
129
|
+
};
|
|
130
|
+
orderBook: {
|
|
131
|
+
getHistorical: typeof import("@tatumio/api-client").OrderBookService.getHistoricalTradesBody;
|
|
132
|
+
getActiveBuyTrades: typeof import("@tatumio/api-client").OrderBookService.getBuyTradesBody;
|
|
133
|
+
getActiveSellTrades: typeof import("@tatumio/api-client").OrderBookService.getSellTradesBody;
|
|
134
|
+
newTrade: typeof import("@tatumio/api-client").OrderBookService.storeTrade;
|
|
135
|
+
get: typeof import("@tatumio/api-client").OrderBookService.getTradeById;
|
|
136
|
+
cancel: typeof import("@tatumio/api-client").OrderBookService.deleteTrade;
|
|
137
|
+
cancelByAccount: typeof import("@tatumio/api-client").OrderBookService.deleteAccountTrades;
|
|
138
|
+
};
|
|
139
|
+
transaction: {
|
|
140
|
+
send: typeof import("@tatumio/api-client").TransactionService.sendTransaction;
|
|
141
|
+
sendMultiple: typeof import("@tatumio/api-client").TransactionService.sendTransactionBatch;
|
|
142
|
+
getAll: typeof import("@tatumio/api-client").TransactionService.getTransactions;
|
|
143
|
+
getAllByAccount: typeof import("@tatumio/api-client").TransactionService.getTransactionsByAccountId;
|
|
144
|
+
getAllByCustomer: typeof import("@tatumio/api-client").TransactionService.getTransactionsByCustomerId;
|
|
145
|
+
getAllByReference: typeof import("@tatumio/api-client").TransactionService.getTransactionsByReference;
|
|
146
|
+
countByAccount: (filter: import("@tatumio/api-client").TransactionFilter) => import("@tatumio/api-client").CancelablePromise<number | import("@tatumio/api-client").Transaction[]>;
|
|
147
|
+
countByCustomer: (filter: import("@tatumio/api-client").TransactionFilterCustomer) => import("@tatumio/api-client").CancelablePromise<number | import("@tatumio/api-client").Transaction[]>;
|
|
148
|
+
};
|
|
149
|
+
virtualCurrency: {
|
|
150
|
+
create: typeof import("@tatumio/api-client").VirtualCurrencyService.createCurrency;
|
|
151
|
+
mint: typeof import("@tatumio/api-client").VirtualCurrencyService.mintCurrency;
|
|
152
|
+
revoke: typeof import("@tatumio/api-client").VirtualCurrencyService.revokeCurrency;
|
|
153
|
+
getByName: typeof import("@tatumio/api-client").VirtualCurrencyService.getCurrency;
|
|
154
|
+
update: typeof import("@tatumio/api-client").VirtualCurrencyService.updateCurrency;
|
|
155
|
+
};
|
|
156
|
+
blockAmount: {
|
|
157
|
+
block: typeof import("@tatumio/api-client").AccountService.blockAmount;
|
|
158
|
+
unblock: typeof import("@tatumio/api-client").AccountService.deleteBlockAmount;
|
|
159
|
+
unblockWithTransaction: typeof import("@tatumio/api-client").AccountService.unblockAmountWithTransaction;
|
|
160
|
+
};
|
|
161
|
+
account: {
|
|
162
|
+
get: typeof import("@tatumio/api-client").AccountService.getAccountByAccountId;
|
|
163
|
+
getAll: typeof import("@tatumio/api-client").AccountService.getAccounts;
|
|
164
|
+
getByCustomerId: typeof import("@tatumio/api-client").AccountService.getAccountsByCustomerId;
|
|
165
|
+
getBalance: typeof import("@tatumio/api-client").AccountService.getAccountBalance;
|
|
166
|
+
create: typeof import("@tatumio/api-client").AccountService.createAccount;
|
|
167
|
+
createMultiple: typeof import("@tatumio/api-client").AccountService.createAccountBatch;
|
|
168
|
+
update: typeof import("@tatumio/api-client").AccountService.updateAccountByAccountId;
|
|
169
|
+
getBlockedAmountsByAccountId: typeof import("@tatumio/api-client").AccountService.getBlockAmountById;
|
|
170
|
+
activate: typeof import("@tatumio/api-client").AccountService.activateAccount;
|
|
171
|
+
deactivate: typeof import("@tatumio/api-client").AccountService.deactivateAccount;
|
|
172
|
+
freeze: typeof import("@tatumio/api-client").AccountService.freezeAccount;
|
|
173
|
+
unfreeze: typeof import("@tatumio/api-client").AccountService.unfreezeAccount;
|
|
174
|
+
generate: (account: import("@tatumio/api-client").CreateAccount & {
|
|
175
|
+
xpub?: string;
|
|
176
|
+
}, generateNewWalletFn: any, generateNewWallet?: boolean, testnet?: boolean, webhookUrl?: string) => Promise<any>;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
120
179
|
};
|