@tatumio/doge 2.0.1-alpha.229 → 2.0.1-alpha.233
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 +8 -8
- package/src/lib/doge.sdk.d.ts +14 -3
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.233",
|
|
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/shared-blockchain-abstract": "2.0.1-alpha.
|
|
10
|
-
"@tatumio/api-client": "2.0.1-alpha.
|
|
8
|
+
"@tatumio/shared-testing-common": "2.0.1-alpha.233",
|
|
9
|
+
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.233",
|
|
10
|
+
"@tatumio/api-client": "2.0.1-alpha.233",
|
|
11
11
|
"axios": "^0.24.0",
|
|
12
12
|
"form-data": "^4.0.0",
|
|
13
|
-
"@tatumio/shared-core": "2.0.1-alpha.
|
|
14
|
-
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.
|
|
13
|
+
"@tatumio/shared-core": "2.0.1-alpha.233",
|
|
14
|
+
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.233",
|
|
15
15
|
"bignumber.js": "^9.0.2",
|
|
16
|
-
"@tatumio/shared-testing-btc-based": "
|
|
17
|
-
"@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.
|
|
16
|
+
"@tatumio/shared-testing-btc-based": "2.0.1-alpha.233",
|
|
17
|
+
"@tatumio/shared-blockchain-btc-based": "2.0.1-alpha.233",
|
|
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
|
@@ -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;
|
|
@@ -52,7 +52,7 @@ export declare const TatumDogeSDK: (args: {
|
|
|
52
52
|
};
|
|
53
53
|
storeTokenAddress: typeof import("@tatumio/api-client").OffChainBlockchainService.storeTokenAddress;
|
|
54
54
|
};
|
|
55
|
-
getExchangeRate(basePair?: import("@tatumio/
|
|
55
|
+
getExchangeRate(basePair?: import("@tatumio/api-client").Fiat): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").ExchangeRate>;
|
|
56
56
|
storage: {
|
|
57
57
|
upload: typeof import("@tatumio/api-client").StorageIpfsService.storeIpfs;
|
|
58
58
|
get: typeof import("@tatumio/api-client").StorageIpfsService.getIpfsData;
|
|
@@ -125,7 +125,13 @@ export declare const TatumDogeSDK: (args: {
|
|
|
125
125
|
unfreezeApiKey: typeof import("@tatumio/api-client").TatumServiceService.unfreezeApiKey;
|
|
126
126
|
};
|
|
127
127
|
nft: {
|
|
128
|
+
deployNFTSmartContract: typeof import("@tatumio/api-client").BlockchainNftService.nftDeployErc721;
|
|
129
|
+
addNFTMinter: typeof import("@tatumio/api-client").BlockchainNftService.nftAddMinter;
|
|
128
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;
|
|
129
135
|
getNFTTransaction: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactErc721;
|
|
130
136
|
getNFTTransactionsByToken: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByToken;
|
|
131
137
|
getNFTTransactionsByAddress: typeof import("@tatumio/api-client").BlockchainNftService.nftGetTransactionByAddress;
|
|
@@ -133,6 +139,11 @@ export declare const TatumDogeSDK: (args: {
|
|
|
133
139
|
getNFTProvenanceData: typeof import("@tatumio/api-client").BlockchainNftService.nftGetProvenanceDataErc721;
|
|
134
140
|
getNFTMetadataURI: typeof import("@tatumio/api-client").BlockchainNftService.nftGetMetadataErc721;
|
|
135
141
|
getNFTRoyalty: typeof import("@tatumio/api-client").BlockchainNftService.nftGetRoyaltyErc721;
|
|
136
|
-
|
|
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[]>;
|
|
137
148
|
};
|
|
138
149
|
};
|