anymal-protocol 1.0.95 → 1.0.96

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.d.mts CHANGED
@@ -309,6 +309,7 @@ declare const convertToMultipleActionDefinitions: (frs: ActionDefinition[]) => A
309
309
  * Base fields sent with every action
310
310
  */
311
311
  interface BaseActionPayload {
312
+ anymalTxId: string;
312
313
  multiplier?: number;
313
314
  campaign_id?: string;
314
315
  actionId: string;
package/dist/index.d.ts CHANGED
@@ -309,6 +309,7 @@ declare const convertToMultipleActionDefinitions: (frs: ActionDefinition[]) => A
309
309
  * Base fields sent with every action
310
310
  */
311
311
  interface BaseActionPayload {
312
+ anymalTxId: string;
312
313
  multiplier?: number;
313
314
  campaign_id?: string;
314
315
  actionId: string;
package/dist/index.js CHANGED
@@ -2476,6 +2476,7 @@ function useSubmitContractAction() {
2476
2476
  if (!idToken || !pid || !source || !endpoint || !payload) return;
2477
2477
  let sourceTypePayload = {};
2478
2478
  const basisType = {
2479
+ anymalTxId: payload.anymalTxId,
2479
2480
  campaign_id: payload.campaign_id,
2480
2481
  multiplier: payload.multiplier,
2481
2482
  actionId: payload.actionId,
package/dist/index.mjs CHANGED
@@ -2333,6 +2333,7 @@ function useSubmitContractAction() {
2333
2333
  if (!idToken || !pid || !source || !endpoint || !payload) return;
2334
2334
  let sourceTypePayload = {};
2335
2335
  const basisType = {
2336
+ anymalTxId: payload.anymalTxId,
2336
2337
  campaign_id: payload.campaign_id,
2337
2338
  multiplier: payload.multiplier,
2338
2339
  actionId: payload.actionId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anymal-protocol",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "A React/TypeScript-based utility library for reusable functions and hooks inside of the Anymal Ecosystem.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {