@tatumio/celo 2.0.1-alpha.347 → 2.0.1-alpha.348
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,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tatumio/celo",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.348",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.
|
|
9
|
-
"@tatumio/api-client": "2.0.1-alpha.
|
|
8
|
+
"@tatumio/shared-abstract-sdk": "2.0.1-alpha.348",
|
|
9
|
+
"@tatumio/api-client": "2.0.1-alpha.348",
|
|
10
10
|
"axios": "^0.26.0",
|
|
11
11
|
"form-data": "^4.0.0",
|
|
12
|
-
"@tatumio/shared-testing-common": "2.0.1-alpha.
|
|
12
|
+
"@tatumio/shared-testing-common": "2.0.1-alpha.348",
|
|
13
13
|
"bignumber.js": "^9.0.2",
|
|
14
14
|
"lodash": "^4.17.21",
|
|
15
|
-
"@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.
|
|
16
|
-
"@tatumio/shared-core": "2.0.1-alpha.
|
|
17
|
-
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.
|
|
15
|
+
"@tatumio/shared-blockchain-evm-based": "2.0.1-alpha.348",
|
|
16
|
+
"@tatumio/shared-core": "2.0.1-alpha.348",
|
|
17
|
+
"@tatumio/shared-blockchain-abstract": "2.0.1-alpha.348",
|
|
18
18
|
"ethereumjs-wallet": "^1.0.2",
|
|
19
19
|
"bip39": "^3.0.2",
|
|
20
20
|
"web3": "^1.7.4",
|
|
21
21
|
"web3-core": "^1.7.4",
|
|
22
22
|
"web3-utils": "^1.7.4",
|
|
23
|
-
"@tatumio/shared-testing-evm-based": "2.0.1-alpha.
|
|
23
|
+
"@tatumio/shared-testing-evm-based": "2.0.1-alpha.348",
|
|
24
24
|
"@celo-tools/celo-ethers-wrapper": "^0.1.0",
|
|
25
25
|
"tslib": "^2.0.0"
|
|
26
26
|
},
|
package/src/lib/celo.sdk.d.ts
CHANGED
|
@@ -135,16 +135,16 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
|
|
|
135
135
|
};
|
|
136
136
|
custodial: {
|
|
137
137
|
prepare: {
|
|
138
|
-
transferFromCustodialWallet: (body: import("
|
|
139
|
-
batchTransferFromCustodialWallet: (body: import("
|
|
140
|
-
approveFromCustodialWallet: (body: import("
|
|
141
|
-
custodialWalletBatch: (body: import("
|
|
138
|
+
transferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<any>;
|
|
139
|
+
batchTransferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainBatchTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<any>;
|
|
140
|
+
approveFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainApproveCustodialTransfer, provider?: string) => Promise<any>;
|
|
141
|
+
custodialWalletBatch: (body: import("@tatumio/shared-blockchain-abstract").ChainGenerateCustodialWalletBatch, provider?: string, testnet?: boolean) => Promise<any>;
|
|
142
142
|
};
|
|
143
143
|
send: {
|
|
144
|
-
transferFromCustodialWallet: (body: import("
|
|
145
|
-
batchTransferFromCustodialWallet: (body: import("
|
|
146
|
-
approveFromCustodialWallet: (body: import("
|
|
147
|
-
custodialWalletBatch: (body: import("
|
|
144
|
+
transferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
145
|
+
batchTransferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainBatchTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
146
|
+
approveFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainApproveCustodialTransfer, provider?: string) => Promise<import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
147
|
+
custodialWalletBatch: (body: import("@tatumio/shared-blockchain-abstract").ChainGenerateCustodialWalletBatch, provider?: string, testnet?: boolean) => Promise<string | import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
148
148
|
};
|
|
149
149
|
};
|
|
150
150
|
gasPump: {
|
|
@@ -208,7 +208,7 @@ export declare const TatumCeloSDK: (args: SDKArguments) => {
|
|
|
208
208
|
getLog(id: string): import("@tatumio/api-client").CancelablePromise<{
|
|
209
209
|
data: string;
|
|
210
210
|
}>;
|
|
211
|
-
storeLog(requestBody: import("
|
|
211
|
+
storeLog(requestBody: import("@tatumio/shared-blockchain-evm-based").RequestBodyWithoutChain): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").TransactionHash>;
|
|
212
212
|
};
|
|
213
213
|
getGasPriceInWei: (provider?: string) => Promise<string>;
|
|
214
214
|
wallet: {
|
|
@@ -80,16 +80,16 @@ export declare const celoTxService: (args: {
|
|
|
80
80
|
};
|
|
81
81
|
custodial: {
|
|
82
82
|
prepare: {
|
|
83
|
-
transferFromCustodialWallet: (body: import("
|
|
84
|
-
batchTransferFromCustodialWallet: (body: import("
|
|
85
|
-
approveFromCustodialWallet: (body: import("
|
|
86
|
-
custodialWalletBatch: (body: import("
|
|
83
|
+
transferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<any>;
|
|
84
|
+
batchTransferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainBatchTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<any>;
|
|
85
|
+
approveFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainApproveCustodialTransfer, provider?: string) => Promise<any>;
|
|
86
|
+
custodialWalletBatch: (body: import("@tatumio/shared-blockchain-abstract").ChainGenerateCustodialWalletBatch, provider?: string, testnet?: boolean) => Promise<any>;
|
|
87
87
|
};
|
|
88
88
|
send: {
|
|
89
|
-
transferFromCustodialWallet: (body: import("
|
|
90
|
-
batchTransferFromCustodialWallet: (body: import("
|
|
91
|
-
approveFromCustodialWallet: (body: import("
|
|
92
|
-
custodialWalletBatch: (body: import("
|
|
89
|
+
transferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
90
|
+
batchTransferFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainBatchTransferCustodialWallet, provider?: string, testnet?: boolean) => Promise<import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
91
|
+
approveFromCustodialWallet: (body: import("@tatumio/shared-blockchain-abstract").ChainApproveCustodialTransfer, provider?: string) => Promise<import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
92
|
+
custodialWalletBatch: (body: import("@tatumio/shared-blockchain-abstract").ChainGenerateCustodialWalletBatch, provider?: string, testnet?: boolean) => Promise<string | import("@tatumio/api-client").SignatureId | import("@tatumio/api-client").TransactionHash>;
|
|
93
93
|
};
|
|
94
94
|
};
|
|
95
95
|
gasPump: {
|