atfi 1.1.0 → 1.1.1

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
@@ -197,6 +197,8 @@ interface EventSummary {
197
197
  maxParticipants: number;
198
198
  currentParticipants: number;
199
199
  status: EventStatus;
200
+ tokenSymbol: string;
201
+ tokenDecimals: number;
200
202
  }
201
203
  interface ATFiSDKConfig {
202
204
  /** Custom factory address (optional, defaults to mainnet) */
package/dist/index.d.ts CHANGED
@@ -197,6 +197,8 @@ interface EventSummary {
197
197
  maxParticipants: number;
198
198
  currentParticipants: number;
199
199
  status: EventStatus;
200
+ tokenSymbol: string;
201
+ tokenDecimals: number;
200
202
  }
201
203
  interface ATFiSDKConfig {
202
204
  /** Custom factory address (optional, defaults to mainnet) */
package/dist/index.js CHANGED
@@ -887,7 +887,9 @@ var ATFiSDK = class _ATFiSDK {
887
887
  stakeAmount: info.stakeAmount,
888
888
  maxParticipants: info.maxParticipants,
889
889
  currentParticipants: info.currentParticipants,
890
- status
890
+ status,
891
+ tokenSymbol: info.tokenSymbol,
892
+ tokenDecimals: info.tokenDecimals
891
893
  };
892
894
  });
893
895
  }
package/dist/index.mjs CHANGED
@@ -836,7 +836,9 @@ var ATFiSDK = class _ATFiSDK {
836
836
  stakeAmount: info.stakeAmount,
837
837
  maxParticipants: info.maxParticipants,
838
838
  currentParticipants: info.currentParticipants,
839
- status
839
+ status,
840
+ tokenSymbol: info.tokenSymbol,
841
+ tokenDecimals: info.tokenDecimals
840
842
  };
841
843
  });
842
844
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atfi",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "TypeScript SDK for ATFi commitment vaults on Base",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",