@injectivelabs/sdk-ts 1.16.13-alpha.6 → 1.16.13
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/dist/cjs/client/chain/types/exchange.d.ts +36 -3
- package/dist/cjs/client/chain/types/gov.d.ts +17 -2
- package/dist/cjs/client/chain/types/insurance.d.ts +16 -1
- package/dist/cjs/client/chain/types/permissions.d.ts +13 -1
- package/dist/cjs/client/chain/types/wasm.d.ts +7 -1
- package/dist/cjs/core/tx/utils/constants.d.ts +4 -5
- package/dist/cjs/types/exchange.d.ts +11 -1
- package/dist/esm/client/chain/types/exchange.d.ts +36 -3
- package/dist/esm/client/chain/types/gov.d.ts +17 -2
- package/dist/esm/client/chain/types/insurance.d.ts +16 -1
- package/dist/esm/client/chain/types/permissions.d.ts +13 -1
- package/dist/esm/client/chain/types/wasm.d.ts +7 -1
- package/dist/esm/core/tx/utils/constants.d.ts +4 -5
- package/dist/esm/types/exchange.d.ts +11 -1
- package/package.json +8 -8
|
@@ -131,8 +131,41 @@ export type GrpcChainFullSpotMarket = InjectiveExchangeV1Beta1Query.FullSpotMark
|
|
|
131
131
|
export type GrpcChainDerivativeMarket = InjectiveExchangeV1Beta1Exchange.DerivativeMarket;
|
|
132
132
|
export type GrpcChainSpotMarket = InjectiveExchangeV1Beta1Exchange.SpotMarket;
|
|
133
133
|
export type GrpcOrderType = InjectiveExchangeV1Beta1Exchange.OrderType;
|
|
134
|
-
export declare const GrpcOrderTypeMap:
|
|
134
|
+
export declare const GrpcOrderTypeMap: {
|
|
135
|
+
readonly UNSPECIFIED: 0;
|
|
136
|
+
readonly BUY: 1;
|
|
137
|
+
readonly SELL: 2;
|
|
138
|
+
readonly STOP_BUY: 3;
|
|
139
|
+
readonly STOP_SELL: 4;
|
|
140
|
+
readonly TAKE_BUY: 5;
|
|
141
|
+
readonly TAKE_SELL: 6;
|
|
142
|
+
readonly BUY_PO: 7;
|
|
143
|
+
readonly SELL_PO: 8;
|
|
144
|
+
readonly BUY_ATOMIC: 9;
|
|
145
|
+
readonly SELL_ATOMIC: 10;
|
|
146
|
+
readonly UNRECOGNIZED: -1;
|
|
147
|
+
};
|
|
135
148
|
export type OrderType = InjectiveExchangeV1Beta1Exchange.OrderType;
|
|
136
|
-
export declare const OrderTypeMap:
|
|
149
|
+
export declare const OrderTypeMap: {
|
|
150
|
+
readonly UNSPECIFIED: 0;
|
|
151
|
+
readonly BUY: 1;
|
|
152
|
+
readonly SELL: 2;
|
|
153
|
+
readonly STOP_BUY: 3;
|
|
154
|
+
readonly STOP_SELL: 4;
|
|
155
|
+
readonly TAKE_BUY: 5;
|
|
156
|
+
readonly TAKE_SELL: 6;
|
|
157
|
+
readonly BUY_PO: 7;
|
|
158
|
+
readonly SELL_PO: 8;
|
|
159
|
+
readonly BUY_ATOMIC: 9;
|
|
160
|
+
readonly SELL_ATOMIC: 10;
|
|
161
|
+
readonly UNRECOGNIZED: -1;
|
|
162
|
+
};
|
|
137
163
|
export type GrpcMarketStatus = InjectiveExchangeV1Beta1Exchange.MarketStatus;
|
|
138
|
-
export declare const GrpcMarketStatusMap:
|
|
164
|
+
export declare const GrpcMarketStatusMap: {
|
|
165
|
+
readonly Unspecified: 0;
|
|
166
|
+
readonly Active: 1;
|
|
167
|
+
readonly Paused: 2;
|
|
168
|
+
readonly Demolished: 3;
|
|
169
|
+
readonly Expired: 4;
|
|
170
|
+
readonly UNRECOGNIZED: -1;
|
|
171
|
+
};
|
|
@@ -63,6 +63,21 @@ export type GrpcTallyResult = CosmosGovV1Gov.TallyResult;
|
|
|
63
63
|
export type GrpcVote = CosmosGovV1Gov.Vote;
|
|
64
64
|
export type VoteOption = CosmosGovV1Gov.VoteOption;
|
|
65
65
|
export type ProposalStatus = CosmosGovV1Gov.ProposalStatus;
|
|
66
|
-
export declare const VoteOptionMap:
|
|
67
|
-
|
|
66
|
+
export declare const VoteOptionMap: {
|
|
67
|
+
readonly VOTE_OPTION_UNSPECIFIED: 0;
|
|
68
|
+
readonly VOTE_OPTION_YES: 1;
|
|
69
|
+
readonly VOTE_OPTION_ABSTAIN: 2;
|
|
70
|
+
readonly VOTE_OPTION_NO: 3;
|
|
71
|
+
readonly VOTE_OPTION_NO_WITH_VETO: 4;
|
|
72
|
+
readonly UNRECOGNIZED: -1;
|
|
73
|
+
};
|
|
74
|
+
export declare const ProposalStatusMap: {
|
|
75
|
+
readonly PROPOSAL_STATUS_UNSPECIFIED: 0;
|
|
76
|
+
readonly PROPOSAL_STATUS_DEPOSIT_PERIOD: 1;
|
|
77
|
+
readonly PROPOSAL_STATUS_VOTING_PERIOD: 2;
|
|
78
|
+
readonly PROPOSAL_STATUS_PASSED: 3;
|
|
79
|
+
readonly PROPOSAL_STATUS_REJECTED: 4;
|
|
80
|
+
readonly PROPOSAL_STATUS_FAILED: 5;
|
|
81
|
+
readonly UNRECOGNIZED: -1;
|
|
82
|
+
};
|
|
68
83
|
export type { ProposalStatus as GrpcProposalStatus };
|
|
@@ -20,4 +20,19 @@ export type GrpcInsuranceParams = InjectiveInsuranceV1Beta1Insurance.Params;
|
|
|
20
20
|
export type GrpcInsuranceFund = InjectiveInsuranceV1Beta1Insurance.InsuranceFund;
|
|
21
21
|
export type GrpcRedemptionSchedule = InjectiveInsuranceV1Beta1Insurance.RedemptionSchedule;
|
|
22
22
|
export type OracleType = InjectiveOracleV1Beta1Oracle.OracleType;
|
|
23
|
-
export declare const OracleTypeMap:
|
|
23
|
+
export declare const OracleTypeMap: {
|
|
24
|
+
readonly Unspecified: 0;
|
|
25
|
+
readonly Band: 1;
|
|
26
|
+
readonly PriceFeed: 2;
|
|
27
|
+
readonly Coinbase: 3;
|
|
28
|
+
readonly Chainlink: 4;
|
|
29
|
+
readonly Razor: 5;
|
|
30
|
+
readonly Dia: 6;
|
|
31
|
+
readonly API3: 7;
|
|
32
|
+
readonly Uma: 8;
|
|
33
|
+
readonly Pyth: 9;
|
|
34
|
+
readonly BandIBC: 10;
|
|
35
|
+
readonly Provider: 11;
|
|
36
|
+
readonly Stork: 12;
|
|
37
|
+
readonly UNRECOGNIZED: -1;
|
|
38
|
+
};
|
|
@@ -81,4 +81,16 @@ export type GrpcPermissionAddressVoucher = InjectivePermissionsV1Beta1Permission
|
|
|
81
81
|
export type GrpcPermissionPolicyStatusManagerCapability = InjectivePermissionsV1Beta1Permissions.PolicyManagerCapability;
|
|
82
82
|
export type GrpcPermissionsParams = InjectivePermissionsV1Beta1Params.Params;
|
|
83
83
|
export type GrpcPermissionRole = InjectivePermissionsV1Beta1Permissions.Role;
|
|
84
|
-
export declare const PermissionActionMap:
|
|
84
|
+
export declare const PermissionActionMap: {
|
|
85
|
+
readonly UNSPECIFIED: 0;
|
|
86
|
+
readonly MINT: 1;
|
|
87
|
+
readonly RECEIVE: 2;
|
|
88
|
+
readonly BURN: 4;
|
|
89
|
+
readonly SEND: 8;
|
|
90
|
+
readonly SUPER_BURN: 16;
|
|
91
|
+
readonly MODIFY_POLICY_MANAGERS: 134217728;
|
|
92
|
+
readonly MODIFY_CONTRACT_HOOK: 268435456;
|
|
93
|
+
readonly MODIFY_ROLE_PERMISSIONS: 536870912;
|
|
94
|
+
readonly MODIFY_ROLE_MANAGERS: 1073741824;
|
|
95
|
+
readonly UNRECOGNIZED: -1;
|
|
96
|
+
};
|
|
@@ -72,4 +72,10 @@ export type GrpcContractInfo = CosmwasmWasmV1Types.ContractInfo;
|
|
|
72
72
|
export type GrpcContractCodeHistoryEntry = CosmwasmWasmV1Types.ContractCodeHistoryEntry;
|
|
73
73
|
export type GrpcAbsoluteTxPosition = CosmwasmWasmV1Types.AbsoluteTxPosition;
|
|
74
74
|
export type ContractCodeHistoryOperationType = CosmwasmWasmV1Types.ContractCodeHistoryOperationType;
|
|
75
|
-
export declare const ContractCodeHistoryOperationTypeMap:
|
|
75
|
+
export declare const ContractCodeHistoryOperationTypeMap: {
|
|
76
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_UNSPECIFIED: 0;
|
|
77
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_INIT: 1;
|
|
78
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_MIGRATE: 2;
|
|
79
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_GENESIS: 3;
|
|
80
|
+
readonly UNRECOGNIZED: -1;
|
|
81
|
+
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const SIGN_EIP712_V2 = CosmosTxSigningV1Beta1Signing.SignMode.SIGN_MODE_EIP712_V2;
|
|
1
|
+
export declare const SIGN_DIRECT: 1;
|
|
2
|
+
export declare const SIGN_AMINO: 127;
|
|
3
|
+
export declare const SIGN_EIP712: 127;
|
|
4
|
+
export declare const SIGN_EIP712_V2: 128;
|
|
@@ -19,4 +19,14 @@ export declare const TradeDirection: {
|
|
|
19
19
|
};
|
|
20
20
|
export type TradeDirection = (typeof TradeDirection)[keyof typeof TradeDirection];
|
|
21
21
|
export type OrderMask = InjectiveExchangeV1Beta1Exchange.OrderMask;
|
|
22
|
-
export declare const OrderMaskMap:
|
|
22
|
+
export declare const OrderMaskMap: {
|
|
23
|
+
readonly UNUSED: 0;
|
|
24
|
+
readonly ANY: 1;
|
|
25
|
+
readonly REGULAR: 2;
|
|
26
|
+
readonly CONDITIONAL: 4;
|
|
27
|
+
readonly DIRECTION_BUY_OR_HIGHER: 8;
|
|
28
|
+
readonly DIRECTION_SELL_OR_LOWER: 16;
|
|
29
|
+
readonly TYPE_MARKET: 32;
|
|
30
|
+
readonly TYPE_LIMIT: 64;
|
|
31
|
+
readonly UNRECOGNIZED: -1;
|
|
32
|
+
};
|
|
@@ -131,8 +131,41 @@ export type GrpcChainFullSpotMarket = InjectiveExchangeV1Beta1Query.FullSpotMark
|
|
|
131
131
|
export type GrpcChainDerivativeMarket = InjectiveExchangeV1Beta1Exchange.DerivativeMarket;
|
|
132
132
|
export type GrpcChainSpotMarket = InjectiveExchangeV1Beta1Exchange.SpotMarket;
|
|
133
133
|
export type GrpcOrderType = InjectiveExchangeV1Beta1Exchange.OrderType;
|
|
134
|
-
export declare const GrpcOrderTypeMap:
|
|
134
|
+
export declare const GrpcOrderTypeMap: {
|
|
135
|
+
readonly UNSPECIFIED: 0;
|
|
136
|
+
readonly BUY: 1;
|
|
137
|
+
readonly SELL: 2;
|
|
138
|
+
readonly STOP_BUY: 3;
|
|
139
|
+
readonly STOP_SELL: 4;
|
|
140
|
+
readonly TAKE_BUY: 5;
|
|
141
|
+
readonly TAKE_SELL: 6;
|
|
142
|
+
readonly BUY_PO: 7;
|
|
143
|
+
readonly SELL_PO: 8;
|
|
144
|
+
readonly BUY_ATOMIC: 9;
|
|
145
|
+
readonly SELL_ATOMIC: 10;
|
|
146
|
+
readonly UNRECOGNIZED: -1;
|
|
147
|
+
};
|
|
135
148
|
export type OrderType = InjectiveExchangeV1Beta1Exchange.OrderType;
|
|
136
|
-
export declare const OrderTypeMap:
|
|
149
|
+
export declare const OrderTypeMap: {
|
|
150
|
+
readonly UNSPECIFIED: 0;
|
|
151
|
+
readonly BUY: 1;
|
|
152
|
+
readonly SELL: 2;
|
|
153
|
+
readonly STOP_BUY: 3;
|
|
154
|
+
readonly STOP_SELL: 4;
|
|
155
|
+
readonly TAKE_BUY: 5;
|
|
156
|
+
readonly TAKE_SELL: 6;
|
|
157
|
+
readonly BUY_PO: 7;
|
|
158
|
+
readonly SELL_PO: 8;
|
|
159
|
+
readonly BUY_ATOMIC: 9;
|
|
160
|
+
readonly SELL_ATOMIC: 10;
|
|
161
|
+
readonly UNRECOGNIZED: -1;
|
|
162
|
+
};
|
|
137
163
|
export type GrpcMarketStatus = InjectiveExchangeV1Beta1Exchange.MarketStatus;
|
|
138
|
-
export declare const GrpcMarketStatusMap:
|
|
164
|
+
export declare const GrpcMarketStatusMap: {
|
|
165
|
+
readonly Unspecified: 0;
|
|
166
|
+
readonly Active: 1;
|
|
167
|
+
readonly Paused: 2;
|
|
168
|
+
readonly Demolished: 3;
|
|
169
|
+
readonly Expired: 4;
|
|
170
|
+
readonly UNRECOGNIZED: -1;
|
|
171
|
+
};
|
|
@@ -63,6 +63,21 @@ export type GrpcTallyResult = CosmosGovV1Gov.TallyResult;
|
|
|
63
63
|
export type GrpcVote = CosmosGovV1Gov.Vote;
|
|
64
64
|
export type VoteOption = CosmosGovV1Gov.VoteOption;
|
|
65
65
|
export type ProposalStatus = CosmosGovV1Gov.ProposalStatus;
|
|
66
|
-
export declare const VoteOptionMap:
|
|
67
|
-
|
|
66
|
+
export declare const VoteOptionMap: {
|
|
67
|
+
readonly VOTE_OPTION_UNSPECIFIED: 0;
|
|
68
|
+
readonly VOTE_OPTION_YES: 1;
|
|
69
|
+
readonly VOTE_OPTION_ABSTAIN: 2;
|
|
70
|
+
readonly VOTE_OPTION_NO: 3;
|
|
71
|
+
readonly VOTE_OPTION_NO_WITH_VETO: 4;
|
|
72
|
+
readonly UNRECOGNIZED: -1;
|
|
73
|
+
};
|
|
74
|
+
export declare const ProposalStatusMap: {
|
|
75
|
+
readonly PROPOSAL_STATUS_UNSPECIFIED: 0;
|
|
76
|
+
readonly PROPOSAL_STATUS_DEPOSIT_PERIOD: 1;
|
|
77
|
+
readonly PROPOSAL_STATUS_VOTING_PERIOD: 2;
|
|
78
|
+
readonly PROPOSAL_STATUS_PASSED: 3;
|
|
79
|
+
readonly PROPOSAL_STATUS_REJECTED: 4;
|
|
80
|
+
readonly PROPOSAL_STATUS_FAILED: 5;
|
|
81
|
+
readonly UNRECOGNIZED: -1;
|
|
82
|
+
};
|
|
68
83
|
export type { ProposalStatus as GrpcProposalStatus };
|
|
@@ -20,4 +20,19 @@ export type GrpcInsuranceParams = InjectiveInsuranceV1Beta1Insurance.Params;
|
|
|
20
20
|
export type GrpcInsuranceFund = InjectiveInsuranceV1Beta1Insurance.InsuranceFund;
|
|
21
21
|
export type GrpcRedemptionSchedule = InjectiveInsuranceV1Beta1Insurance.RedemptionSchedule;
|
|
22
22
|
export type OracleType = InjectiveOracleV1Beta1Oracle.OracleType;
|
|
23
|
-
export declare const OracleTypeMap:
|
|
23
|
+
export declare const OracleTypeMap: {
|
|
24
|
+
readonly Unspecified: 0;
|
|
25
|
+
readonly Band: 1;
|
|
26
|
+
readonly PriceFeed: 2;
|
|
27
|
+
readonly Coinbase: 3;
|
|
28
|
+
readonly Chainlink: 4;
|
|
29
|
+
readonly Razor: 5;
|
|
30
|
+
readonly Dia: 6;
|
|
31
|
+
readonly API3: 7;
|
|
32
|
+
readonly Uma: 8;
|
|
33
|
+
readonly Pyth: 9;
|
|
34
|
+
readonly BandIBC: 10;
|
|
35
|
+
readonly Provider: 11;
|
|
36
|
+
readonly Stork: 12;
|
|
37
|
+
readonly UNRECOGNIZED: -1;
|
|
38
|
+
};
|
|
@@ -81,4 +81,16 @@ export type GrpcPermissionAddressVoucher = InjectivePermissionsV1Beta1Permission
|
|
|
81
81
|
export type GrpcPermissionPolicyStatusManagerCapability = InjectivePermissionsV1Beta1Permissions.PolicyManagerCapability;
|
|
82
82
|
export type GrpcPermissionsParams = InjectivePermissionsV1Beta1Params.Params;
|
|
83
83
|
export type GrpcPermissionRole = InjectivePermissionsV1Beta1Permissions.Role;
|
|
84
|
-
export declare const PermissionActionMap:
|
|
84
|
+
export declare const PermissionActionMap: {
|
|
85
|
+
readonly UNSPECIFIED: 0;
|
|
86
|
+
readonly MINT: 1;
|
|
87
|
+
readonly RECEIVE: 2;
|
|
88
|
+
readonly BURN: 4;
|
|
89
|
+
readonly SEND: 8;
|
|
90
|
+
readonly SUPER_BURN: 16;
|
|
91
|
+
readonly MODIFY_POLICY_MANAGERS: 134217728;
|
|
92
|
+
readonly MODIFY_CONTRACT_HOOK: 268435456;
|
|
93
|
+
readonly MODIFY_ROLE_PERMISSIONS: 536870912;
|
|
94
|
+
readonly MODIFY_ROLE_MANAGERS: 1073741824;
|
|
95
|
+
readonly UNRECOGNIZED: -1;
|
|
96
|
+
};
|
|
@@ -72,4 +72,10 @@ export type GrpcContractInfo = CosmwasmWasmV1Types.ContractInfo;
|
|
|
72
72
|
export type GrpcContractCodeHistoryEntry = CosmwasmWasmV1Types.ContractCodeHistoryEntry;
|
|
73
73
|
export type GrpcAbsoluteTxPosition = CosmwasmWasmV1Types.AbsoluteTxPosition;
|
|
74
74
|
export type ContractCodeHistoryOperationType = CosmwasmWasmV1Types.ContractCodeHistoryOperationType;
|
|
75
|
-
export declare const ContractCodeHistoryOperationTypeMap:
|
|
75
|
+
export declare const ContractCodeHistoryOperationTypeMap: {
|
|
76
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_UNSPECIFIED: 0;
|
|
77
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_INIT: 1;
|
|
78
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_MIGRATE: 2;
|
|
79
|
+
readonly CONTRACT_CODE_HISTORY_OPERATION_TYPE_GENESIS: 3;
|
|
80
|
+
readonly UNRECOGNIZED: -1;
|
|
81
|
+
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const SIGN_EIP712_V2 = CosmosTxSigningV1Beta1Signing.SignMode.SIGN_MODE_EIP712_V2;
|
|
1
|
+
export declare const SIGN_DIRECT: 1;
|
|
2
|
+
export declare const SIGN_AMINO: 127;
|
|
3
|
+
export declare const SIGN_EIP712: 127;
|
|
4
|
+
export declare const SIGN_EIP712_V2: 128;
|
|
@@ -19,4 +19,14 @@ export declare const TradeDirection: {
|
|
|
19
19
|
};
|
|
20
20
|
export type TradeDirection = (typeof TradeDirection)[keyof typeof TradeDirection];
|
|
21
21
|
export type OrderMask = InjectiveExchangeV1Beta1Exchange.OrderMask;
|
|
22
|
-
export declare const OrderMaskMap:
|
|
22
|
+
export declare const OrderMaskMap: {
|
|
23
|
+
readonly UNUSED: 0;
|
|
24
|
+
readonly ANY: 1;
|
|
25
|
+
readonly REGULAR: 2;
|
|
26
|
+
readonly CONDITIONAL: 4;
|
|
27
|
+
readonly DIRECTION_BUY_OR_HIGHER: 8;
|
|
28
|
+
readonly DIRECTION_SELL_OR_LOWER: 16;
|
|
29
|
+
readonly TYPE_MARKET: 32;
|
|
30
|
+
readonly TYPE_LIMIT: 64;
|
|
31
|
+
readonly UNRECOGNIZED: -1;
|
|
32
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@injectivelabs/sdk-ts",
|
|
3
3
|
"description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
|
|
4
|
-
"version": "1.16.13
|
|
4
|
+
"version": "1.16.13",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"author": {
|
|
@@ -123,17 +123,17 @@
|
|
|
123
123
|
"@cosmjs/proto-signing": "^0.33.0",
|
|
124
124
|
"@cosmjs/stargate": "^0.33.0",
|
|
125
125
|
"@injectivelabs/abacus-proto-ts": "1.14.0",
|
|
126
|
-
"@injectivelabs/core-proto-ts": "1.16.
|
|
127
|
-
"@injectivelabs/exceptions": "1.16.13
|
|
126
|
+
"@injectivelabs/core-proto-ts": "1.16.6",
|
|
127
|
+
"@injectivelabs/exceptions": "1.16.13",
|
|
128
128
|
"@injectivelabs/grpc-web": "^0.0.1",
|
|
129
129
|
"@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
|
|
130
130
|
"@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
|
|
131
|
-
"@injectivelabs/indexer-proto-ts": "1.13.
|
|
131
|
+
"@injectivelabs/indexer-proto-ts": "1.13.18",
|
|
132
132
|
"@injectivelabs/mito-proto-ts": "1.13.2",
|
|
133
|
-
"@injectivelabs/networks": "1.16.13
|
|
133
|
+
"@injectivelabs/networks": "1.16.13",
|
|
134
134
|
"@injectivelabs/olp-proto-ts": "1.13.4",
|
|
135
|
-
"@injectivelabs/ts-types": "1.16.13
|
|
136
|
-
"@injectivelabs/utils": "1.16.13
|
|
135
|
+
"@injectivelabs/ts-types": "1.16.13",
|
|
136
|
+
"@injectivelabs/utils": "1.16.13",
|
|
137
137
|
"@noble/curves": "^1.8.1",
|
|
138
138
|
"@noble/hashes": "^1.7.1",
|
|
139
139
|
"@scure/base": "^1.2.6",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"snakecase-keys": "^5.4.1",
|
|
152
152
|
"viem": "^2.33.2"
|
|
153
153
|
},
|
|
154
|
-
"gitHead": "
|
|
154
|
+
"gitHead": "88cb6f90babafac6f5e7a777ff13bb026376841a",
|
|
155
155
|
"typedoc": {
|
|
156
156
|
"entryPoint": "./src/index.ts",
|
|
157
157
|
"readmeFile": "./README.md",
|