@transak/hedera-transak 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/lib/types.d.ts +4 -4
  2. package/package.json +7 -7
package/lib/types.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import { TransactionResponse, TransactionRecord, TransactionReceipt } from '@hashgraph/sdk';
2
- export declare type Network = {
2
+ export type Network = {
3
3
  networkName: string;
4
4
  transactionLink: (arg0: string) => string;
5
5
  walletLink: (arg0: string) => string;
6
6
  mirrorNodeUrl: string;
7
7
  };
8
- export declare type GetTransactionResult = {
8
+ export type GetTransactionResult = {
9
9
  transactionData: TransactionRecord;
10
10
  receipt: {
11
11
  date: Date | null;
@@ -23,7 +23,7 @@ export declare type GetTransactionResult = {
23
23
  transactionLink: string;
24
24
  };
25
25
  };
26
- export declare type SendTransactionParams = {
26
+ export type SendTransactionParams = {
27
27
  to: string;
28
28
  amount: number;
29
29
  network: string;
@@ -32,7 +32,7 @@ export declare type SendTransactionParams = {
32
32
  privateKey: string;
33
33
  tokenId?: string;
34
34
  };
35
- export declare type SendTransactionResult = {
35
+ export type SendTransactionResult = {
36
36
  transactionData: TransactionResponse;
37
37
  receipt: {
38
38
  amount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transak/hedera-transak",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -26,12 +26,12 @@
26
26
  "author": "",
27
27
  "license": "ISC",
28
28
  "dependencies": {
29
- "@ethersproject/abi": "^5.7.0",
30
- "@ethersproject/basex": "^5.7.0",
31
- "@ethersproject/random": "^5.7.0",
32
- "@ethersproject/wordlists": "^5.7.0",
33
- "@hashgraph/hethers": "^1.2.1",
34
- "@hashgraph/sdk": "^2.18.1",
29
+ "@ethersproject/abi": "5.7.0",
30
+ "@ethersproject/basex": "5.7.0",
31
+ "@ethersproject/random": "5.7.0",
32
+ "@ethersproject/wordlists": "5.7.0",
33
+ "@hashgraph/hethers": "1.2.1",
34
+ "@hashgraph/sdk": "2.18.1",
35
35
  "axios": "^0.27.2",
36
36
  "dotenv": "10.0.0"
37
37
  },