@tatumio/celo 2.0.1-alpha.237 → 2.0.1-alpha.238

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 CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@tatumio/celo",
3
- "version": "2.0.1-alpha.237",
3
+ "version": "2.0.1-alpha.238",
4
4
  "license": "MIT",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
7
7
  "dependencies": {
8
- "@tatumio/shared-testing-common": "2.0.1-alpha.237",
9
- "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.237",
10
- "@tatumio/api-client": "2.0.1-alpha.237",
11
- "axios": "^0.25.0",
8
+ "@tatumio/shared-testing-common": "2.0.1-alpha.238",
9
+ "@tatumio/api-client": "2.0.1-alpha.238",
10
+ "axios": "^0.26.0",
12
11
  "form-data": "^4.0.0",
13
- "@tatumio/shared-core": "2.0.1-alpha.237",
14
- "@tatumio/shared-abstract-sdk": "2.0.1-alpha.237",
12
+ "@tatumio/shared-core": "2.0.1-alpha.238",
13
+ "@tatumio/shared-abstract-sdk": "2.0.1-alpha.238",
15
14
  "bignumber.js": "^9.0.2",
16
- "@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.237",
15
+ "@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.238",
16
+ "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.238",
17
17
  "ethereumjs-wallet": "^1.0.2",
18
18
  "bip39": "^3.0.2",
19
19
  "web3": "^1.7.0",
@@ -32,7 +32,7 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
32
32
  getNFTTransaction: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactErc721;
33
33
  getNFTTransactionsByToken: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByToken;
34
34
  getNFTTransactionsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByAddress;
35
- getNFTsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetBalanceErc721;
35
+ getNFTsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTokensByAddressErc721;
36
36
  getNFTProvenanceData: typeof import("@tatumio/api-client").BlockchainNftService.nftGetProvenanceDataErc721;
37
37
  getNFTMetadataURI: typeof import("@tatumio/api-client").BlockchainNftService.nftGetMetadataErc721;
38
38
  getNFTRoyalty: typeof import("@tatumio/api-client").BlockchainNftService.nftGetRoyaltyErc721;
@@ -41,7 +41,7 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
41
41
  originalUrl: string;
42
42
  publicUrl: string;
43
43
  }>;
44
- prepareAddNftMinterAbstraction: (body: import("@tatumio/api-client").AddNftMinter | import("@tatumio/api-client").AddNftMinterKMS) => Promise<string[]>;
44
+ prepareAddNftMinterAbstraction: (body: import("@tatumio/api-client").AddNftMinter | import("@tatumio/api-client").AddNftMinterKMS) => string[];
45
45
  prepare: {
46
46
  mintSignedTransaction: (body: import("@tatumio/api-client").MintNftCelo & {
47
47
  signatureId?: string;
@@ -207,63 +207,6 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
207
207
  get: typeof import("@tatumio/api-client").StorageIpfsService.getIpfsData;
208
208
  };
209
209
  subscriptions: typeof import("@tatumio/api-client").LedgerSubscriptionService;
210
- ledger: {
211
- customer: {
212
- get: typeof import("@tatumio/api-client").LedgerCustomerService.getCustomerByExternalOrInternalId;
213
- getAll: typeof import("@tatumio/api-client").LedgerCustomerService.findAllCustomers;
214
- update: typeof import("@tatumio/api-client").LedgerCustomerService.updateCustomer;
215
- activate: typeof import("@tatumio/api-client").LedgerCustomerService.activateCustomer;
216
- deactivate: typeof import("@tatumio/api-client").LedgerCustomerService.deactivateCustomer;
217
- enable: typeof import("@tatumio/api-client").LedgerCustomerService.enableCustomer;
218
- disable: typeof import("@tatumio/api-client").LedgerCustomerService.disableCustomer;
219
- };
220
- orderBook: {
221
- getHistorical: typeof import("@tatumio/api-client").LedgerOrderBookService.getHistoricalTradesBody;
222
- getActiveBuyTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
223
- getActiveSellTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
224
- newTrade: typeof import("@tatumio/api-client").LedgerOrderBookService.storeTrade;
225
- get: typeof import("@tatumio/api-client").LedgerOrderBookService.getTradeById;
226
- cancel: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteTrade;
227
- cancelByAccount: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteAccountTrades;
228
- };
229
- transaction: {
230
- send: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransaction;
231
- sendMultiple: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransactionBatch;
232
- getAll: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactions;
233
- getAllByAccount: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByAccountId;
234
- getAllByCustomer: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByCustomerId;
235
- getAllByReference: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByReference;
236
- countByAccount: (filter: import("@tatumio/api-client").TransactionFilter) => any;
237
- countByCustomer: (filter: import("@tatumio/api-client").TransactionFilterCustomer) => any;
238
- };
239
- virtualCurrency: {
240
- create: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.createCurrency;
241
- mint: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.mintCurrency;
242
- revoke: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.revokeCurrency;
243
- getByName: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.getCurrency;
244
- update: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.updateCurrency;
245
- };
246
- blockAmount: {
247
- block: typeof import("@tatumio/api-client").LedgerAccountService.blockAmount;
248
- unblock: typeof import("@tatumio/api-client").LedgerAccountService.deleteBlockAmount;
249
- unblockWithTransaction: typeof import("@tatumio/api-client").LedgerAccountService.unblockAmountWithTransaction;
250
- };
251
- account: {
252
- get: typeof import("@tatumio/api-client").LedgerAccountService.getAccountByAccountId;
253
- getAll: typeof import("@tatumio/api-client").LedgerAccountService.getAllAccounts;
254
- getByCustomerId: typeof import("@tatumio/api-client").LedgerAccountService.getAccountsByCustomerId;
255
- getBalance: typeof import("@tatumio/api-client").LedgerAccountService.getAccountBalance;
256
- create: typeof import("@tatumio/api-client").LedgerAccountService.createAccount;
257
- createMultiple: typeof import("@tatumio/api-client").LedgerAccountService.createAccountBatch;
258
- update: typeof import("@tatumio/api-client").LedgerAccountService.updateAccountByAccountId;
259
- getBlockedAmountsByAccountId: typeof import("@tatumio/api-client").LedgerAccountService.getBlockAmountById;
260
- activate: typeof import("@tatumio/api-client").LedgerAccountService.activateAccount;
261
- deactivate: typeof import("@tatumio/api-client").LedgerAccountService.deactivateAccount;
262
- freeze: typeof import("@tatumio/api-client").LedgerAccountService.freezeAccount;
263
- unfreeze: typeof import("@tatumio/api-client").LedgerAccountService.unfreezeAccount;
264
- generate: (account: import("@tatumio/api-client").CreateAccount, generateNewWalletFn: any, generateNewWallet?: boolean, testnet?: boolean, webhookUrl?: string) => Promise<any>;
265
- };
266
- };
267
210
  security: {
268
211
  checkMaliciousAddress: typeof import("@tatumio/api-client").SecurityAddressService.checkMalicousAddress;
269
212
  };