@aurigami/sdk 1.19.3 → 1.19.4

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.
@@ -4789,8 +4789,10 @@ var StakingRead = /*#__PURE__*/function (_BlockchainEntityRead) {
4789
4789
  _context.next = 2;
4790
4790
  return this.env.auriFairLaunch.getPoolInfo(PLYWNEAR_POOL_ID).then(function (res) {
4791
4791
  var endedTime = res.endTime;
4792
- // If the pool has ended, return 0 reward per second
4793
- if (endedTime < Date.now() / 1000) {
4792
+ var startTime = res.startTime;
4793
+ var now = Date.now() / 1000;
4794
+ // If the pool has ended or not started, return 0 reward per second
4795
+ if (endedTime < now || startTime > now) {
4794
4796
  return {
4795
4797
  stakedLiquidity: res.totalStake,
4796
4798
  rewardPerSeconds: res.rewardPerSeconds.map(function (_) {