@tatumio/doge 2.0.1-alpha.237 → 2.0.1-alpha.240
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 +9 -9
- package/src/lib/doge.sdk.d.ts +2 -59
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tatumio/doge",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.240",
|
|
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.
|
|
9
|
-
"@tatumio/
|
|
10
|
-
"
|
|
11
|
-
"axios": "^0.25.0",
|
|
8
|
+
"@tatumio/shared-testing-common": "2.0.1-alpha.240",
|
|
9
|
+
"@tatumio/api-client": "2.0.1-alpha.240",
|
|
10
|
+
"axios": "^0.26.0",
|
|
12
11
|
"form-data": "^4.0.0",
|
|
13
|
-
"@tatumio/shared-
|
|
14
|
-
"@tatumio/shared-
|
|
12
|
+
"@tatumio/shared-testing-btc-based": "2.0.1-alpha.240",
|
|
13
|
+
"@tatumio/shared-blockchain-btc-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",
|
|
15
17
|
"bignumber.js": "^9.0.2",
|
|
16
|
-
"@tatumio/shared-testing-btc-based": "2.0.1-alpha.237",
|
|
17
|
-
"@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.237",
|
|
18
18
|
"bip32": "^2.0.5",
|
|
19
19
|
"bip39": "^3.0.2",
|
|
20
20
|
"bitcoinjs-lib": "^5.2.0",
|
package/src/lib/doge.sdk.d.ts
CHANGED
|
@@ -58,63 +58,6 @@ export declare const TatumDogeSDK: (args: {
|
|
|
58
58
|
get: typeof import("@tatumio/api-client").StorageIpfsService.getIpfsData;
|
|
59
59
|
};
|
|
60
60
|
subscriptions: typeof import("@tatumio/api-client").LedgerSubscriptionService;
|
|
61
|
-
ledger: {
|
|
62
|
-
customer: {
|
|
63
|
-
get: typeof import("@tatumio/api-client").LedgerCustomerService.getCustomerByExternalOrInternalId;
|
|
64
|
-
getAll: typeof import("@tatumio/api-client").LedgerCustomerService.findAllCustomers;
|
|
65
|
-
update: typeof import("@tatumio/api-client").LedgerCustomerService.updateCustomer;
|
|
66
|
-
activate: typeof import("@tatumio/api-client").LedgerCustomerService.activateCustomer;
|
|
67
|
-
deactivate: typeof import("@tatumio/api-client").LedgerCustomerService.deactivateCustomer;
|
|
68
|
-
enable: typeof import("@tatumio/api-client").LedgerCustomerService.enableCustomer;
|
|
69
|
-
disable: typeof import("@tatumio/api-client").LedgerCustomerService.disableCustomer;
|
|
70
|
-
};
|
|
71
|
-
orderBook: {
|
|
72
|
-
getHistorical: typeof import("@tatumio/api-client").LedgerOrderBookService.getHistoricalTradesBody;
|
|
73
|
-
getActiveBuyTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
|
|
74
|
-
getActiveSellTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
|
|
75
|
-
newTrade: typeof import("@tatumio/api-client").LedgerOrderBookService.storeTrade;
|
|
76
|
-
get: typeof import("@tatumio/api-client").LedgerOrderBookService.getTradeById;
|
|
77
|
-
cancel: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteTrade;
|
|
78
|
-
cancelByAccount: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteAccountTrades;
|
|
79
|
-
};
|
|
80
|
-
transaction: {
|
|
81
|
-
send: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransaction;
|
|
82
|
-
sendMultiple: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransactionBatch;
|
|
83
|
-
getAll: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactions;
|
|
84
|
-
getAllByAccount: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByAccountId;
|
|
85
|
-
getAllByCustomer: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByCustomerId;
|
|
86
|
-
getAllByReference: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByReference;
|
|
87
|
-
countByAccount: (filter: import("@tatumio/api-client").TransactionFilter) => any;
|
|
88
|
-
countByCustomer: (filter: import("@tatumio/api-client").TransactionFilterCustomer) => any;
|
|
89
|
-
};
|
|
90
|
-
virtualCurrency: {
|
|
91
|
-
create: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.createCurrency;
|
|
92
|
-
mint: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.mintCurrency;
|
|
93
|
-
revoke: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.revokeCurrency;
|
|
94
|
-
getByName: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.getCurrency;
|
|
95
|
-
update: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.updateCurrency;
|
|
96
|
-
};
|
|
97
|
-
blockAmount: {
|
|
98
|
-
block: typeof import("@tatumio/api-client").LedgerAccountService.blockAmount;
|
|
99
|
-
unblock: typeof import("@tatumio/api-client").LedgerAccountService.deleteBlockAmount;
|
|
100
|
-
unblockWithTransaction: typeof import("@tatumio/api-client").LedgerAccountService.unblockAmountWithTransaction;
|
|
101
|
-
};
|
|
102
|
-
account: {
|
|
103
|
-
get: typeof import("@tatumio/api-client").LedgerAccountService.getAccountByAccountId;
|
|
104
|
-
getAll: typeof import("@tatumio/api-client").LedgerAccountService.getAllAccounts;
|
|
105
|
-
getByCustomerId: typeof import("@tatumio/api-client").LedgerAccountService.getAccountsByCustomerId;
|
|
106
|
-
getBalance: typeof import("@tatumio/api-client").LedgerAccountService.getAccountBalance;
|
|
107
|
-
create: typeof import("@tatumio/api-client").LedgerAccountService.createAccount;
|
|
108
|
-
createMultiple: typeof import("@tatumio/api-client").LedgerAccountService.createAccountBatch;
|
|
109
|
-
update: typeof import("@tatumio/api-client").LedgerAccountService.updateAccountByAccountId;
|
|
110
|
-
getBlockedAmountsByAccountId: typeof import("@tatumio/api-client").LedgerAccountService.getBlockAmountById;
|
|
111
|
-
activate: typeof import("@tatumio/api-client").LedgerAccountService.activateAccount;
|
|
112
|
-
deactivate: typeof import("@tatumio/api-client").LedgerAccountService.deactivateAccount;
|
|
113
|
-
freeze: typeof import("@tatumio/api-client").LedgerAccountService.freezeAccount;
|
|
114
|
-
unfreeze: typeof import("@tatumio/api-client").LedgerAccountService.unfreezeAccount;
|
|
115
|
-
generate: (account: import("@tatumio/api-client").CreateAccount, generateNewWalletFn: any, generateNewWallet?: boolean, testnet?: boolean, webhookUrl?: string) => Promise<any>;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
61
|
security: {
|
|
119
62
|
checkMaliciousAddress: typeof import("@tatumio/api-client").SecurityAddressService.checkMalicousAddress;
|
|
120
63
|
};
|
|
@@ -135,7 +78,7 @@ export declare const TatumDogeSDK: (args: {
|
|
|
135
78
|
getNFTTransaction: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactErc721;
|
|
136
79
|
getNFTTransactionsByToken: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByToken;
|
|
137
80
|
getNFTTransactionsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByAddress;
|
|
138
|
-
getNFTsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.
|
|
81
|
+
getNFTsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTokensByAddressErc721;
|
|
139
82
|
getNFTProvenanceData: typeof import("@tatumio/api-client").BlockchainNftService.nftGetProvenanceDataErc721;
|
|
140
83
|
getNFTMetadataURI: typeof import("@tatumio/api-client").BlockchainNftService.nftGetMetadataErc721;
|
|
141
84
|
getNFTRoyalty: typeof import("@tatumio/api-client").BlockchainNftService.nftGetRoyaltyErc721;
|
|
@@ -144,6 +87,6 @@ export declare const TatumDogeSDK: (args: {
|
|
|
144
87
|
originalUrl: string;
|
|
145
88
|
publicUrl: string;
|
|
146
89
|
}>;
|
|
147
|
-
prepareAddNftMinterAbstraction: (body: import("@tatumio/api-client").AddNftMinter | import("@tatumio/api-client").AddNftMinterKMS) =>
|
|
90
|
+
prepareAddNftMinterAbstraction: (body: import("@tatumio/api-client").AddNftMinter | import("@tatumio/api-client").AddNftMinterKMS) => string[];
|
|
148
91
|
};
|
|
149
92
|
};
|