@tatumio/tron 2.0.1-alpha.237 → 2.0.1-alpha.240

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@tatumio/tron",
3
- "version": "2.0.1-alpha.237",
3
+ "version": "2.0.1-alpha.240",
4
4
  "type": "commonjs",
5
5
  "license": "MIT",
6
6
  "main": "./src/index.js",
7
7
  "typings": "./src/index.d.ts",
8
8
  "dependencies": {
9
- "@tatumio/shared-testing-common": "2.0.1-alpha.237",
10
- "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.237",
11
- "@tatumio/api-client": "2.0.1-alpha.237",
12
- "axios": "^0.25.0",
9
+ "@tatumio/shared-testing-common": "2.0.1-alpha.240",
10
+ "@tatumio/api-client": "2.0.1-alpha.240",
11
+ "axios": "^0.26.0",
13
12
  "form-data": "^4.0.0",
14
- "@tatumio/shared-core": "2.0.1-alpha.237",
15
- "@tatumio/shared-abstract-sdk": "2.0.1-alpha.237",
13
+ "@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.240",
14
+ "@tatumio/shared-core": "2.0.1-alpha.240",
15
+ "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.240",
16
+ "@tatumio/shared-abstract-sdk": "2.0.1-alpha.240",
16
17
  "bignumber.js": "^9.0.2",
17
- "@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.237",
18
18
  "ethereumjs-wallet": "^1.0.2",
19
19
  "bip39": "^3.0.2",
20
20
  "web3": "^1.7.0",
@@ -176,63 +176,6 @@ export declare const TatumTronSDK: (args: SDKArguments) => {
176
176
  get: typeof import("@tatumio/api-client").StorageIpfsService.getIpfsData;
177
177
  };
178
178
  subscriptions: typeof import("@tatumio/api-client").LedgerSubscriptionService;
179
- ledger: {
180
- customer: {
181
- get: typeof import("@tatumio/api-client").LedgerCustomerService.getCustomerByExternalOrInternalId;
182
- getAll: typeof import("@tatumio/api-client").LedgerCustomerService.findAllCustomers;
183
- update: typeof import("@tatumio/api-client").LedgerCustomerService.updateCustomer;
184
- activate: typeof import("@tatumio/api-client").LedgerCustomerService.activateCustomer;
185
- deactivate: typeof import("@tatumio/api-client").LedgerCustomerService.deactivateCustomer;
186
- enable: typeof import("@tatumio/api-client").LedgerCustomerService.enableCustomer;
187
- disable: typeof import("@tatumio/api-client").LedgerCustomerService.disableCustomer;
188
- };
189
- orderBook: {
190
- getHistorical: typeof import("@tatumio/api-client").LedgerOrderBookService.getHistoricalTradesBody;
191
- getActiveBuyTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
192
- getActiveSellTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
193
- newTrade: typeof import("@tatumio/api-client").LedgerOrderBookService.storeTrade;
194
- get: typeof import("@tatumio/api-client").LedgerOrderBookService.getTradeById;
195
- cancel: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteTrade;
196
- cancelByAccount: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteAccountTrades;
197
- };
198
- transaction: {
199
- send: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransaction;
200
- sendMultiple: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransactionBatch;
201
- getAll: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactions;
202
- getAllByAccount: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByAccountId;
203
- getAllByCustomer: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByCustomerId;
204
- getAllByReference: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByReference;
205
- countByAccount: (filter: import("@tatumio/api-client").TransactionFilter) => any;
206
- countByCustomer: (filter: import("@tatumio/api-client").TransactionFilterCustomer) => any;
207
- };
208
- virtualCurrency: {
209
- create: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.createCurrency;
210
- mint: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.mintCurrency;
211
- revoke: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.revokeCurrency;
212
- getByName: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.getCurrency;
213
- update: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.updateCurrency;
214
- };
215
- blockAmount: {
216
- block: typeof import("@tatumio/api-client").LedgerAccountService.blockAmount;
217
- unblock: typeof import("@tatumio/api-client").LedgerAccountService.deleteBlockAmount;
218
- unblockWithTransaction: typeof import("@tatumio/api-client").LedgerAccountService.unblockAmountWithTransaction;
219
- };
220
- account: {
221
- get: typeof import("@tatumio/api-client").LedgerAccountService.getAccountByAccountId;
222
- getAll: typeof import("@tatumio/api-client").LedgerAccountService.getAllAccounts;
223
- getByCustomerId: typeof import("@tatumio/api-client").LedgerAccountService.getAccountsByCustomerId;
224
- getBalance: typeof import("@tatumio/api-client").LedgerAccountService.getAccountBalance;
225
- create: typeof import("@tatumio/api-client").LedgerAccountService.createAccount;
226
- createMultiple: typeof import("@tatumio/api-client").LedgerAccountService.createAccountBatch;
227
- update: typeof import("@tatumio/api-client").LedgerAccountService.updateAccountByAccountId;
228
- getBlockedAmountsByAccountId: typeof import("@tatumio/api-client").LedgerAccountService.getBlockAmountById;
229
- activate: typeof import("@tatumio/api-client").LedgerAccountService.activateAccount;
230
- deactivate: typeof import("@tatumio/api-client").LedgerAccountService.deactivateAccount;
231
- freeze: typeof import("@tatumio/api-client").LedgerAccountService.freezeAccount;
232
- unfreeze: typeof import("@tatumio/api-client").LedgerAccountService.unfreezeAccount;
233
- generate: (account: import("@tatumio/api-client").CreateAccount, generateNewWalletFn: any, generateNewWallet?: boolean, testnet?: boolean, webhookUrl?: string) => Promise<any>;
234
- };
235
- };
236
179
  security: {
237
180
  checkMaliciousAddress: typeof import("@tatumio/api-client").SecurityAddressService.checkMalicousAddress;
238
181
  };