Skip to content

Commit

Permalink
feat: increased order experation
Browse files Browse the repository at this point in the history
  • Loading branch information
mikrowelt committed Dec 4, 2024
1 parent c4b22a7 commit 4b54196
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@orionprotocol/sdk",
"version": "0.22.16",
"version": "0.22.17",
"description": "Orion Protocol SDK",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/crypt/signOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import normalizeNumber from '../utils/normalizeNumber.js';
import getDomainData from './getDomainData.js';
import hashOrder from './hashOrder.js';

const DEFAULT_EXPIRATION = 29 * 24 * 60 * 60 * 1000; // 29 days
const DEFAULT_EXPIRATION = 365 * 24 * 60 * 60 * 1000; // 365 days

type SignerWithTypedDataSign = ethers.Signer & TypedDataSigner;

Expand Down

0 comments on commit 4b54196

Please sign in to comment.