@tatumio/egld 2.0.1-alpha.308 → 2.0.1-alpha.310

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,18 +1,18 @@
1
1
  {
2
2
  "name": "@tatumio/egld",
3
- "version": "2.0.1-alpha.308",
3
+ "version": "2.0.1-alpha.310",
4
4
  "license": "MIT",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
7
7
  "dependencies": {
8
- "@tatumio/api-client": "2.0.1-alpha.308",
8
+ "@tatumio/api-client": "2.0.1-alpha.310",
9
9
  "axios": "^0.26.0",
10
10
  "form-data": "^4.0.0",
11
- "@tatumio/shared-testing-common": "2.0.1-alpha.308",
12
- "@tatumio/shared-core": "2.0.1-alpha.308",
13
- "@tatumio/shared-abstract-sdk": "2.0.1-alpha.308",
11
+ "@tatumio/shared-testing-common": "2.0.1-alpha.310",
12
+ "@tatumio/shared-core": "2.0.1-alpha.310",
13
+ "@tatumio/shared-abstract-sdk": "2.0.1-alpha.310",
14
14
  "bignumber.js": "^9.0.2",
15
- "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.308",
15
+ "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.310",
16
16
  "ed25519-hd-key": "^1.2.0",
17
17
  "web3-core": "^1.7.4",
18
18
  "@elrondnetwork/erdjs": "^9.2.4",
@@ -23,11 +23,11 @@ export declare const TatumEgldSDK: (args: SDKArguments) => {
23
23
  deployNft: (body: import("./egld.utils").TransferEgld) => Promise<string>;
24
24
  };
25
25
  send: {
26
- deploy: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
27
- signedTransaction: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
28
- smartContractMethodInvocation: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
29
- transferNft: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
30
- deployNft: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
26
+ deploy: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
27
+ signedTransaction: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
28
+ smartContractMethodInvocation: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
29
+ transferNft: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
30
+ deployNft: (body: import("./egld.utils").TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
31
31
  };
32
32
  };
33
33
  offchain: {
@@ -66,35 +66,35 @@ export declare const egldTransactionService: () => {
66
66
  * @param body content of the transaction to broadcast
67
67
  * @returns transaction id of the transaction in the blockchain
68
68
  */
69
- deploy: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
69
+ deploy: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
70
70
  /**
71
71
  * Send EGLD or supported ERC20 transaction to the blockchain. This method broadcasts signed transaction to the blockchain.
72
72
  * This operation is irreversible.
73
73
  * @param body content of the transaction to broadcast
74
74
  * @returns transaction id of the transaction in the blockchain
75
75
  */
76
- signedTransaction: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
76
+ signedTransaction: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
77
77
  /**
78
78
  * Send EGLD invoke smart contract transaction to the blockchain. This method broadcasts signed transaction to the blockchain.
79
79
  * This operation is irreversible.
80
80
  * @param body content of the transaction to broadcast
81
81
  * @returns transaction id of the transaction in the blockchain
82
82
  */
83
- smartContractMethodInvocation: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
83
+ smartContractMethodInvocation: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
84
84
  /**
85
85
  * Send EGLD ERC721 transaction to the blockchain. This method broadcasts signed transaction to the blockchain.
86
86
  * This operation is irreversible.
87
87
  * @param body content of the transaction to broadcast
88
88
  * @returns transaction id of the transaction in the blockchain
89
89
  */
90
- transferNft: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
90
+ transferNft: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
91
91
  /**
92
92
  * Send EGLD NFT deploy to the blockchain. This method broadcasts signed transaction to the blockchain.
93
93
  * This operation is irreversible.
94
94
  * @param body content of the transaction to broadcast
95
95
  * @returns transaction id of the transaction in the blockchain
96
96
  */
97
- deployNft: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHashKMS>;
97
+ deployNft: (body: TransferEgld) => Promise<import("@tatumio/api-client").TransactionHash>;
98
98
  };
99
99
  };
100
100
  export {};