@carrot-protocol/boost-http-client 0.2.13-inputs-dev-b6557d8 → 0.2.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/index.js +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/types.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -170,6 +170,7 @@ class Client {
|
|
|
170
170
|
clendAccount: new anchor_1.web3.PublicKey(s.clendAccount),
|
|
171
171
|
clendAccountAuthority: new anchor_1.web3.PublicKey(s.clendAccountAuthority),
|
|
172
172
|
clendGroup: new anchor_1.web3.PublicKey(s.clendGroup),
|
|
173
|
+
action: s.action,
|
|
173
174
|
input: undefined,
|
|
174
175
|
events: [],
|
|
175
176
|
};
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -190,6 +190,7 @@ export class Client {
|
|
|
190
190
|
clendAccount: new web3.PublicKey(s.clendAccount),
|
|
191
191
|
clendAccountAuthority: new web3.PublicKey(s.clendAccountAuthority),
|
|
192
192
|
clendGroup: new web3.PublicKey(s.clendGroup),
|
|
193
|
+
action: s.action,
|
|
193
194
|
input: undefined,
|
|
194
195
|
events: [],
|
|
195
196
|
};
|
package/src/types.ts
CHANGED