ggez-banking-sdk 0.1.44 → 0.1.46

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.
@@ -1,5 +1,5 @@
1
1
  import { ChainType } from "../constants";
2
- interface ICoin {
2
+ export interface ICoin {
3
3
  amount: string;
4
4
  denom: string;
5
5
  }
@@ -40,30 +40,10 @@ export interface ISend {
40
40
  export interface IMultiSend {
41
41
  recipients: ISend[];
42
42
  }
43
- export interface ISendData extends IBaseRequest {
44
- transaction_data: {
45
- send: ISend;
46
- };
47
- }
48
- export interface IMultiSendData extends IBaseRequest {
49
- transaction_data: {
50
- multi_send: IMultiSend;
51
- };
52
- }
53
43
  export interface IDelegation {
54
44
  validator_address: string;
55
45
  coin: ICoin;
56
46
  }
57
- export interface IDelegateData extends IBaseRequest {
58
- transaction_data: {
59
- delegate: IDelegation;
60
- };
61
- }
62
- export interface IUndelegateData extends IBaseRequest {
63
- transaction_data: {
64
- undelegate: IDelegation;
65
- };
66
- }
67
47
  export interface ISendTransaction {
68
48
  transaction_data: {
69
49
  send: ISend;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
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",