ggez-banking-sdk 0.1.37 → 0.1.41
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.
@@ -75,6 +75,7 @@ const Data = () => {
|
|
75
75
|
info: info,
|
76
76
|
transaction_data: transaction_data,
|
77
77
|
authentication: authentication,
|
78
|
+
fee: null,
|
78
79
|
};
|
79
80
|
return data;
|
80
81
|
};
|
@@ -84,6 +85,7 @@ const Data = () => {
|
|
84
85
|
info: info,
|
85
86
|
transaction_data: transaction_data,
|
86
87
|
authentication: authentication,
|
88
|
+
fee: null,
|
87
89
|
};
|
88
90
|
return data;
|
89
91
|
};
|
@@ -93,6 +95,7 @@ const Data = () => {
|
|
93
95
|
info: info,
|
94
96
|
transaction_data: transaction_data,
|
95
97
|
authentication: authentication,
|
98
|
+
fee: null,
|
96
99
|
};
|
97
100
|
return data;
|
98
101
|
};
|
@@ -102,6 +105,7 @@ const Data = () => {
|
|
102
105
|
info: info,
|
103
106
|
transaction_data: transaction_data,
|
104
107
|
authentication: authentication,
|
108
|
+
fee: null,
|
105
109
|
};
|
106
110
|
return data;
|
107
111
|
};
|
@@ -9,15 +9,22 @@ interface IAuthentication {
|
|
9
9
|
}
|
10
10
|
interface IBase {
|
11
11
|
info: {
|
12
|
+
user_id?: number;
|
12
13
|
account_id: number;
|
14
|
+
program_id?: number;
|
15
|
+
chain_address?: string;
|
16
|
+
validator_address?: string;
|
17
|
+
memo?: string;
|
18
|
+
type?: number;
|
13
19
|
chain_type: ChainType;
|
20
|
+
client_date?: string;
|
21
|
+
server_date?: string;
|
22
|
+
date_utc?: string;
|
23
|
+
source_time_zone?: string;
|
24
|
+
source_id?: string;
|
14
25
|
};
|
15
26
|
authentication: IAuthentication[];
|
16
27
|
}
|
17
|
-
interface IEntry {
|
18
|
-
recipient_address: string;
|
19
|
-
coin: ICoin;
|
20
|
-
}
|
21
28
|
export interface ISend {
|
22
29
|
address: string;
|
23
30
|
coins: ICoin[];
|
@@ -25,12 +32,6 @@ export interface ISend {
|
|
25
32
|
export interface IMultiSend {
|
26
33
|
recipients: ISend[];
|
27
34
|
}
|
28
|
-
export interface ITransferData extends IBase {
|
29
|
-
transfer_data: {
|
30
|
-
entries: IEntry[];
|
31
|
-
total_coins?: ICoin[];
|
32
|
-
};
|
33
|
-
}
|
34
35
|
export interface ISendData extends IBase {
|
35
36
|
transaction_data: {
|
36
37
|
send: ISend;
|
@@ -62,5 +63,6 @@ export interface IBlockchainData extends IBase {
|
|
62
63
|
delegate?: IDelegation;
|
63
64
|
undelegate?: IDelegation;
|
64
65
|
};
|
66
|
+
fee: ICoin | null;
|
65
67
|
}
|
66
68
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ggez-banking-sdk",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.41",
|
4
4
|
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|