@tatumio/celo 2.0.1-alpha.248 → 2.0.1-alpha.249
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.
|
|
3
|
+
"version": "2.0.1-alpha.249",
|
|
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/api-client": "2.0.1-alpha.
|
|
8
|
+
"@tatumio/shared-testing-common": "2.0.1-alpha.249",
|
|
9
|
+
"@tatumio/api-client": "2.0.1-alpha.249",
|
|
10
10
|
"axios": "^0.26.0",
|
|
11
11
|
"form-data": "^4.0.0",
|
|
12
|
-
"@tatumio/shared-core": "2.0.1-alpha.
|
|
13
|
-
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.
|
|
12
|
+
"@tatumio/shared-core": "2.0.1-alpha.249",
|
|
13
|
+
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.249",
|
|
14
14
|
"bignumber.js": "^9.0.2",
|
|
15
|
-
"@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.
|
|
16
|
-
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.
|
|
15
|
+
"@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.249",
|
|
16
|
+
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.249",
|
|
17
17
|
"ethereumjs-wallet": "^1.0.2",
|
|
18
18
|
"bip39": "^3.0.2",
|
|
19
19
|
"web3": "^1.7.0",
|
package/src/lib/celo.sdk.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
|
|
|
37
37
|
getNFTMetadataURI: typeof import("@tatumio/api-client").BlockchainNftService.nftGetMetadataErc721;
|
|
38
38
|
getNFTRoyalty: typeof import("@tatumio/api-client").BlockchainNftService.nftGetRoyaltyErc721;
|
|
39
39
|
getNFTAccountBalance: typeof import("@tatumio/api-client").BlockchainNftService.nftGetBalanceErc721;
|
|
40
|
-
getNFTImage: (chain: "CELO" | "ETH" | "ONE" | "KLAY" | "BSC" | "MATIC" | "TRON" | "
|
|
40
|
+
getNFTImage: (chain: "CELO" | "ETH" | "ONE" | "KLAY" | "BSC" | "MATIC" | "TRON" | "KCS" | "FLOW" | "SOL", contractAddress: string, tokenId: string, account?: string) => Promise<{
|
|
41
41
|
originalUrl: string;
|
|
42
42
|
publicUrl: string;
|
|
43
43
|
}>;
|
|
@@ -102,7 +102,6 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
|
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
custodial: {
|
|
105
|
-
generateCustodialBatch: typeof import("@tatumio/api-client").BlockchainUtilsService.generateCustodialWalletBatch;
|
|
106
105
|
prepare: {
|
|
107
106
|
transferFromCustodialWallet: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<string>;
|
|
108
107
|
batchTransferFromCustodialWallet: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainBatchTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<string>;
|
|
@@ -113,7 +112,7 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
|
|
|
113
112
|
transferFromCustodialWallet: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
114
113
|
batchTransferFromCustodialWallet: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainBatchTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
115
114
|
approveFromCustodialWallet: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainApproveCustodialTransfer, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
116
|
-
custodialWalletBatch: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainGenerateCustodialWalletBatch, testnet?: boolean, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
115
|
+
custodialWalletBatch: (body: import("../../../../../dist/packages/shared/blockchain/abstract/src").ChainGenerateCustodialWalletBatch, testnet?: boolean, provider?: string) => Promise<string | import("@tatumio/api-client").TransactionHashKMS>;
|
|
117
116
|
};
|
|
118
117
|
};
|
|
119
118
|
marketplace: {
|
|
@@ -73,7 +73,6 @@ export declare const celoTxService: (args: {
|
|
|
73
73
|
};
|
|
74
74
|
};
|
|
75
75
|
custodial: {
|
|
76
|
-
generateCustodialBatch: typeof import("@tatumio/api-client").BlockchainUtilsService.generateCustodialWalletBatch;
|
|
77
76
|
prepare: {
|
|
78
77
|
transferFromCustodialWallet: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<string>;
|
|
79
78
|
batchTransferFromCustodialWallet: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainBatchTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<string>;
|
|
@@ -84,7 +83,7 @@ export declare const celoTxService: (args: {
|
|
|
84
83
|
transferFromCustodialWallet: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
85
84
|
batchTransferFromCustodialWallet: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainBatchTransferCustodialWallet, testnet?: boolean, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
86
85
|
approveFromCustodialWallet: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainApproveCustodialTransfer, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
87
|
-
custodialWalletBatch: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainGenerateCustodialWalletBatch, testnet?: boolean, provider?: string) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
|
|
86
|
+
custodialWalletBatch: (body: import("../../../../../../dist/packages/shared/blockchain/abstract/src").ChainGenerateCustodialWalletBatch, testnet?: boolean, provider?: string) => Promise<string | import("@tatumio/api-client").TransactionHashKMS>;
|
|
88
87
|
};
|
|
89
88
|
};
|
|
90
89
|
};
|