@tatumio/doge 2.0.1-alpha.228 → 2.0.1-alpha.232

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,20 @@
1
1
  {
2
2
  "name": "@tatumio/doge",
3
- "version": "2.0.1-alpha.228",
3
+ "version": "2.0.1-alpha.232",
4
4
  "license": "MIT",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
7
7
  "dependencies": {
8
- "@tatumio/shared-testing": "2.0.1-alpha.227",
9
- "@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.227",
10
- "@tatumio/shared-core": "2.0.1-alpha.227",
8
+ "@tatumio/shared-testing-common": "2.0.1-alpha.232",
9
+ "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.232",
10
+ "@tatumio/api-client": "2.0.1-alpha.232",
11
11
  "axios": "^0.24.0",
12
- "@tatumio/api-client": "2.0.1-alpha.227",
13
12
  "form-data": "^4.0.0",
14
- "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.227",
15
- "@tatumio/shared-abstract-sdk": "2.0.1-alpha.227",
13
+ "@tatumio/shared-core": "2.0.1-alpha.232",
14
+ "@tatumio/shared-abstract-sdk": "2.0.1-alpha.232",
16
15
  "bignumber.js": "^9.0.2",
16
+ "@tatumio/shared-testing-btc-based": "2.0.1-alpha.232",
17
+ "@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.232",
17
18
  "bip32": "^2.0.5",
18
19
  "bip39": "^3.0.2",
19
20
  "bitcoinjs-lib": "^5.2.0",
@@ -16,7 +16,7 @@ export declare const TatumDogeSDK: (args: {
16
16
  };
17
17
  kms: {
18
18
  sign(tx: import("@tatumio/shared-core").ChainTransactionKMS, privateKeys: string[]): Promise<string>;
19
- getAllPending(signatures?: string): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").PendingTransaction>;
19
+ getAllPending(signatures?: string): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").PendingTransaction[]>;
20
20
  get: typeof import("@tatumio/api-client").SecurityKeyManagementSystemService.getPendingTransactionToSign;
21
21
  complete: typeof import("@tatumio/api-client").SecurityKeyManagementSystemService.completePendingSignature;
22
22
  delete: typeof import("@tatumio/api-client").SecurityKeyManagementSystemService.deletePendingTransactionToSign;
@@ -46,10 +46,13 @@ export declare const TatumDogeSDK: (args: {
46
46
  };
47
47
  withdrawal: {
48
48
  getAll: (status?: "InProgress" | "Done" | "Cancelled", pageSize?: number, offset?: number) => Promise<import("@tatumio/api-client").WithdrawalObject[]>;
49
+ broadcast: typeof import("@tatumio/api-client").OffChainWithdrawalService.broadcastBlockchainTransaction;
50
+ create: typeof import("@tatumio/api-client").OffChainWithdrawalService.storeWithdrawal;
51
+ complete: typeof import("@tatumio/api-client").OffChainWithdrawalService.completeWithdrawal;
49
52
  };
50
53
  storeTokenAddress: typeof import("@tatumio/api-client").OffChainBlockchainService.storeTokenAddress;
51
54
  };
52
- getExchangeRate(basePair?: import("@tatumio/shared-core").Fiat): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").ExchangeRate>;
55
+ getExchangeRate(basePair?: import("@tatumio/api-client").Fiat): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").ExchangeRate>;
53
56
  storage: {
54
57
  upload: typeof import("@tatumio/api-client").StorageIpfsService.storeIpfs;
55
58
  get: typeof import("@tatumio/api-client").StorageIpfsService.getIpfsData;
@@ -122,7 +125,13 @@ export declare const TatumDogeSDK: (args: {
122
125
  unfreezeApiKey: typeof import("@tatumio/api-client").TatumServiceService.unfreezeApiKey;
123
126
  };
124
127
  nft: {
128
+ deployNFTSmartContract: typeof import("@tatumio/api-client").BlockchainNftService.nftDeployErc721;
129
+ addNFTMinter: typeof import("@tatumio/api-client").BlockchainNftService.nftAddMinter;
125
130
  mintNFT: typeof import("@tatumio/api-client").BlockchainNftService.nftMintErc721;
131
+ mintMultipleNFTs: typeof import("@tatumio/api-client").BlockchainNftService.nftMintMultipleErc721;
132
+ burnNFT: typeof import("@tatumio/api-client").BlockchainNftService.nftBurnErc721;
133
+ transferNFT: typeof import("@tatumio/api-client").BlockchainNftService.nftTransferErc721;
134
+ updateNFTRoyalty: typeof import("@tatumio/api-client").BlockchainNftService.nftUpdateCashbackErc721;
126
135
  getNFTTransaction: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactErc721;
127
136
  getNFTTransactionsByToken: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByToken;
128
137
  getNFTTransactionsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByAddress;
@@ -130,6 +139,11 @@ export declare const TatumDogeSDK: (args: {
130
139
  getNFTProvenanceData: typeof import("@tatumio/api-client").BlockchainNftService.nftGetProvenanceDataErc721;
131
140
  getNFTMetadataURI: typeof import("@tatumio/api-client").BlockchainNftService.nftGetMetadataErc721;
132
141
  getNFTRoyalty: typeof import("@tatumio/api-client").BlockchainNftService.nftGetRoyaltyErc721;
133
- prepareAddNFTMinterAbstraction: typeof import("@tatumio/api-client").BlockchainNftService.nftGetRoyaltyErc721;
142
+ getNFTAccountBalance: typeof import("@tatumio/api-client").BlockchainNftService.nftGetBalanceErc721;
143
+ getNFTImage: (chain: "ETH" | "BSC" | "MATIC" | "CELO" | "FLOW" | "TRON" | "ONE" | "KLAY" | "SOL" | "KCS", contractAddress: string, tokenId: string, account?: string) => Promise<{
144
+ originalUrl: string;
145
+ publicUrl: string;
146
+ }>;
147
+ prepareAddNftMinterAbstraction: (body: import("@tatumio/api-client").AddNftMinter | import("@tatumio/api-client").AddNftMinterKMS) => Promise<string[]>;
134
148
  };
135
149
  };