@aurigami/sdk 1.23.1 → 1.24.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.
Files changed (123) hide show
  1. package/dist/SDK.d.ts +48 -65
  2. package/dist/SDK.js +165 -0
  3. package/dist/abis/index.d.ts +18 -18
  4. package/dist/abis/index.js +39 -0
  5. package/dist/consts/constants.d.ts +139 -139
  6. package/dist/consts/constants.js +185 -0
  7. package/dist/consts/decimals.d.ts +1 -1
  8. package/dist/consts/decimals.js +35 -0
  9. package/dist/consts/deployments.d.ts +3 -3
  10. package/dist/consts/deployments.js +9 -0
  11. package/dist/consts/dummy.d.ts +13 -13
  12. package/dist/consts/dummy.js +43 -0
  13. package/dist/consts/index.d.ts +5 -5
  14. package/dist/consts/index.js +9 -0
  15. package/dist/consts/symbols.d.ts +1 -1
  16. package/dist/consts/symbols.js +10 -0
  17. package/dist/entities/BlockchainEntity.d.ts +13 -13
  18. package/dist/entities/BlockchainEntity.js +36 -0
  19. package/dist/entities/auriEnv.d.ts +34 -40
  20. package/dist/entities/auriEnv.js +166 -0
  21. package/dist/entities/index.d.ts +4 -4
  22. package/dist/entities/index.js +8 -0
  23. package/dist/entities/token.d.ts +7 -7
  24. package/dist/entities/token.js +27 -0
  25. package/dist/entities/tokenAmount.d.ts +13 -13
  26. package/dist/entities/tokenAmount.js +52 -0
  27. package/dist/helpers/aurigami-api.d.ts +13 -13
  28. package/dist/helpers/aurigami-api.js +26 -0
  29. package/dist/helpers/aurora-api-helpers.d.ts +1 -1
  30. package/dist/helpers/aurora-api-helpers.js +15 -0
  31. package/dist/helpers/graphql-helpers.d.ts +1 -1
  32. package/dist/helpers/graphql-helpers.js +13 -0
  33. package/dist/helpers/helpers.d.ts +23 -40
  34. package/dist/helpers/helpers.js +148 -0
  35. package/dist/helpers/historicalPriceFetcher.d.ts +15 -15
  36. package/dist/helpers/historicalPriceFetcher.js +142 -0
  37. package/dist/helpers/index.d.ts +7 -7
  38. package/dist/helpers/index.js +11 -0
  39. package/dist/helpers/kyber-aggregator-api.d.ts +5 -5
  40. package/dist/helpers/kyber-aggregator-api.js +27 -0
  41. package/dist/helpers/multicall.d.ts +40 -0
  42. package/dist/helpers/multicall.js +203 -0
  43. package/dist/helpers/notification-api.d.ts +2 -2
  44. package/dist/helpers/notification-api.js +21 -0
  45. package/dist/helpers/one-inch-aggregator-api.d.ts +21 -21
  46. package/dist/helpers/one-inch-aggregator-api.js +19 -0
  47. package/dist/helpers/priceFetcher.d.ts +36 -36
  48. package/dist/helpers/priceFetcher.js +292 -0
  49. package/dist/helpers/subgraphQuery.d.ts +1 -1
  50. package/dist/helpers/subgraphQuery.js +22 -0
  51. package/dist/helpers/transfer-event-query.d.ts +17 -26
  52. package/dist/helpers/transfer-event-query.js +41 -0
  53. package/dist/index.d.ts +7 -7
  54. package/dist/index.js +17 -8
  55. package/dist/interactors/Airdrop.d.ts +17 -26
  56. package/dist/interactors/Airdrop.js +48 -0
  57. package/dist/interactors/MoneyMarket.d.ts +63 -63
  58. package/dist/interactors/MoneyMarket.js +392 -0
  59. package/dist/interactors/Multicall.d.ts +15 -18
  60. package/dist/interactors/Multicall.js +36 -0
  61. package/dist/interactors/Papermill.d.ts +27 -57
  62. package/dist/interactors/Papermill.js +125 -0
  63. package/dist/interactors/PlyGame.d.ts +30 -42
  64. package/dist/interactors/PlyGame.js +146 -0
  65. package/dist/interactors/PlyTokenLock.d.ts +16 -16
  66. package/dist/interactors/PlyTokenLock.js +44 -0
  67. package/dist/interactors/Pulp.d.ts +17 -17
  68. package/dist/interactors/Pulp.js +43 -0
  69. package/dist/interactors/Referral.d.ts +35 -78
  70. package/dist/interactors/Referral.js +158 -0
  71. package/dist/interactors/Staking.d.ts +20 -26
  72. package/dist/interactors/Staking.js +106 -0
  73. package/dist/interactors/index.d.ts +9 -9
  74. package/dist/interactors/index.js +13 -0
  75. package/dist/interactors/misc.d.ts +31 -39
  76. package/dist/interactors/misc.js +318 -0
  77. package/dist/types/index.d.ts +175 -197
  78. package/dist/types/index.js +18 -0
  79. package/package.json +4 -16
  80. package/dist/sdk.cjs.development.js +0 -6325
  81. package/dist/sdk.cjs.development.js.map +0 -1
  82. package/dist/sdk.cjs.production.min.js +0 -2
  83. package/dist/sdk.cjs.production.min.js.map +0 -1
  84. package/dist/sdk.esm.js +0 -6193
  85. package/dist/sdk.esm.js.map +0 -1
  86. package/src/SDK.ts +0 -223
  87. package/src/abis/index.ts +0 -38
  88. package/src/consts/constants.ts +0 -210
  89. package/src/consts/decimals.ts +0 -31
  90. package/src/consts/deployments.ts +0 -4
  91. package/src/consts/dummy.ts +0 -51
  92. package/src/consts/index.ts +0 -5
  93. package/src/consts/symbols.ts +0 -9
  94. package/src/entities/BlockchainEntity.ts +0 -29
  95. package/src/entities/auriEnv.ts +0 -178
  96. package/src/entities/index.ts +0 -4
  97. package/src/entities/token.ts +0 -21
  98. package/src/entities/tokenAmount.ts +0 -48
  99. package/src/helpers/aurigami-api.ts +0 -42
  100. package/src/helpers/aurora-api-helpers.ts +0 -17
  101. package/src/helpers/graphql-helpers.ts +0 -8
  102. package/src/helpers/helpers.ts +0 -212
  103. package/src/helpers/historicalPriceFetcher.ts +0 -203
  104. package/src/helpers/index.ts +0 -7
  105. package/src/helpers/kyber-aggregator-api.ts +0 -37
  106. package/src/helpers/notification-api.ts +0 -22
  107. package/src/helpers/one-inch-aggregator-api.ts +0 -45
  108. package/src/helpers/priceFetcher.ts +0 -389
  109. package/src/helpers/subgraphQuery.ts +0 -17
  110. package/src/helpers/transfer-event-query.ts +0 -68
  111. package/src/index.ts +0 -14
  112. package/src/interactors/Airdrop.ts +0 -72
  113. package/src/interactors/MoneyMarket.ts +0 -482
  114. package/src/interactors/Multicall.ts +0 -50
  115. package/src/interactors/Papermill.ts +0 -185
  116. package/src/interactors/PlyGame.ts +0 -172
  117. package/src/interactors/PlyTokenLock.ts +0 -47
  118. package/src/interactors/Pulp.ts +0 -39
  119. package/src/interactors/Referral.ts +0 -214
  120. package/src/interactors/Staking.ts +0 -152
  121. package/src/interactors/index.ts +0 -9
  122. package/src/interactors/misc.ts +0 -431
  123. package/src/types/index.ts +0 -222
@@ -1,197 +1,175 @@
1
- import { AuToken } from '@aurigami/contracts/typechain';
2
- import { TypedEvent } from '@aurigami/contracts/typechain/common';
3
- import BigNumber from 'bignumber.js';
4
- import type { providers, Signer } from 'ethers';
5
- import { BigNumber as BN } from 'ethers';
6
- import { TokenAmount } from '../entities/tokenAmount';
7
- export declare enum ComptrollerRewardType {
8
- PLY = 0,
9
- AURORA = 1
10
- }
11
- export declare type NetworkConnection = {
12
- provider: providers.Provider;
13
- signer?: Signer;
14
- };
15
- export declare type Address = string;
16
- export declare type CurrencyAmount = {
17
- currency: string;
18
- amount: string;
19
- };
20
- export declare type TokenValuation = {
21
- tokenAmount: TokenAmount;
22
- currencyAmount: CurrencyAmount;
23
- };
24
- export declare type MoneyMarketDetails = {
25
- auTokenAddress: string;
26
- totalTokenDeposited: TokenAmount;
27
- totalTokenBorrowed: TokenAmount;
28
- depositApy: number;
29
- depositPlyApy: number;
30
- borrowApy: number;
31
- borrowPlyApy: number;
32
- collateralRatio: number;
33
- depositPlyPerWeek: TokenAmount;
34
- borrowPlyPerWeek: TokenAmount;
35
- depositMETAApy: number;
36
- depositNEARApy: number;
37
- borrowNEARApy: number;
38
- staderDepositApy: number;
39
- };
40
- export declare type UserDetails = {
41
- markets: UserMarketDetails[];
42
- borrowLimit: CurrencyAmount;
43
- borrowableAmount: CurrencyAmount;
44
- };
45
- export declare type UserLockingDetails = {
46
- vestingStart: number;
47
- /** % of reward they will receive in PLY, if they claim this week */
48
- currentUnlockPortion: number;
49
- accruedPly: TokenAmount;
50
- /** Amount of PLY they will receive, if they claim this week */
51
- currentPly: TokenAmount;
52
- /** Amount of PULP they will receive, if they claim this week */
53
- currentPulp: TokenAmount;
54
- /** % of reward they will receive in PLY, if they claim next week */
55
- nextUnlockPortion: number;
56
- /**
57
- * Amount of PLY they will receive, if they claim next week.
58
- * This doesn't include the additional reward that they will earn
59
- * in the next week.
60
- */
61
- nextPly: TokenAmount;
62
- /**
63
- * Amount of PULP they will receive, if they claim next week.
64
- * This doesn't include the additional reward that they will earn
65
- * in the next week.
66
- */
67
- nextPulp: TokenAmount;
68
- };
69
- export declare type UserMarketDetails = {
70
- market: string;
71
- depositBalance: TokenAmount;
72
- borrowBalance: TokenAmount;
73
- isCollateral: boolean;
74
- maxWithdrawableAmount: TokenAmount;
75
- collateralRatio: number;
76
- underlyingPrice: string;
77
- };
78
- export declare type TokenAPY = {
79
- address: string;
80
- apy: string;
81
- };
82
- export declare type PLYWNEARPoolDetails = {
83
- totalStakedLiquidity: TokenAmount;
84
- APYs: TokenAPY[];
85
- };
86
- export declare enum MarketAction {
87
- Deposit = 0,
88
- Borrow = 1,
89
- Withdraw = 2,
90
- Repay = 3,
91
- EnableCollateral = 4,
92
- DisableCollateral = 5
93
- }
94
- export declare type HypotheticalStats = {
95
- newBorrowLimit: CurrencyAmount;
96
- newBorrowUtilization: number;
97
- };
98
- export declare type AccountAuTokenInfo = {
99
- token: string;
100
- deposit: BigNumber;
101
- borrow: BigNumber;
102
- };
103
- export declare type AccountAuTokensInfo = {
104
- address: string;
105
- tokens: AccountAuTokenInfo[];
106
- };
107
- export declare type AuTokenWithUnderlying = AuToken & {
108
- underlying: string;
109
- };
110
- export declare type ReferralReward = {
111
- campaign: string;
112
- /**
113
- * Truncated user address.
114
- */
115
- userAddr: string;
116
- /**
117
- * start timetamp of the referral round
118
- */
119
- startTime: number;
120
- /**
121
- * end timetamp of the referral round
122
- */
123
- endTime: number;
124
- /**
125
- * referrer's rewards
126
- */
127
- isReferrer: boolean;
128
- /**
129
- * reward amount
130
- */
131
- rewardTokenAmount: TokenAmount;
132
- /**
133
- * hash of the transaction on aurorascan (if no, return null)
134
- */
135
- transactionHash: string | null;
136
- refereeAddress: string | null;
137
- };
138
- export declare type PlyGameBetResult = {
139
- player: string;
140
- /**
141
- * Bet outcome result
142
- */
143
- outcome: string;
144
- /**
145
- * ply lost amount
146
- */
147
- lostAmount: TokenAmount;
148
- unlockedPulpAmount: TokenAmount;
149
- block: number;
150
- timestamp: number;
151
- /**
152
- * hash of the transaction on aurorascan (if no, return null)
153
- */
154
- transactionHash: string;
155
- };
156
- export declare type PlyGameLeaderboardItem = {
157
- player: string;
158
- gamesPlayed: number;
159
- unlockedPulpAmount: TokenAmount;
160
- };
161
- export declare type PlyBetMadeEvent = TypedEvent<[string, BN, number] & {
162
- player: string;
163
- amount: BN;
164
- outcome: number;
165
- }>;
166
- export declare type Apy = {
167
- sum: BigNumber;
168
- suppliedValue: BigNumber;
169
- borrowedValue: BigNumber;
170
- };
171
- export declare type UserNotification = {
172
- message: string;
173
- userSetting: {
174
- address: Address;
175
- mail: string;
176
- utilisation: number;
177
- liquidation: boolean;
178
- }[];
179
- };
180
- export declare type LiquidationEventEntity = {
181
- liquidator: string;
182
- borrower: string;
183
- /** bigint string */
184
- repayAmount: string;
185
- marketRepayToken: string;
186
- /** bigint string */
187
- seizeTokens: string;
188
- auTokenCollateral: string;
189
- txnHash: string;
190
- blockNumber: number;
191
- };
192
- export declare type LiquidationDetail = {
193
- liquidationTime: Timestamp;
194
- tokenAmount: TokenAmount;
195
- transactionId: string;
196
- };
197
- export declare type Timestamp = number;
1
+ import { AuToken } from '@aurigami/contracts/typechain';
2
+ import { TypedEvent } from '@aurigami/contracts/typechain/common';
3
+ import type { BlockTag } from '@ethersproject/abstract-provider';
4
+ import BigNumber from 'bignumber.js';
5
+ import type { Contract, providers, Signer } from 'ethers';
6
+ import { BigNumber as BN } from 'ethers';
7
+ import { TokenAmount } from '../entities/tokenAmount';
8
+ export declare enum ComptrollerRewardType {
9
+ PLY = 0,
10
+ AURORA = 1
11
+ }
12
+ export type NetworkConnection = {
13
+ provider: providers.Provider;
14
+ signer?: Signer;
15
+ };
16
+ export type Address = string;
17
+ export type CurrencyAmount = {
18
+ currency: string;
19
+ amount: string;
20
+ };
21
+ export type TokenValuation = {
22
+ tokenAmount: TokenAmount;
23
+ currencyAmount: CurrencyAmount;
24
+ };
25
+ export type MoneyMarketDetails = {
26
+ auTokenAddress: string;
27
+ totalTokenDeposited: TokenAmount;
28
+ totalTokenBorrowed: TokenAmount;
29
+ depositApy: number;
30
+ depositPlyApy: number;
31
+ borrowApy: number;
32
+ borrowPlyApy: number;
33
+ collateralRatio: number;
34
+ depositPlyPerWeek: TokenAmount;
35
+ borrowPlyPerWeek: TokenAmount;
36
+ depositMETAApy: number;
37
+ depositNEARApy: number;
38
+ borrowNEARApy: number;
39
+ staderDepositApy: number;
40
+ };
41
+ export type UserDetails = {
42
+ markets: UserMarketDetails[];
43
+ borrowLimit: CurrencyAmount;
44
+ borrowableAmount: CurrencyAmount;
45
+ };
46
+ export type UserLockingDetails = {
47
+ vestingStart: number;
48
+ currentUnlockPortion: number;
49
+ accruedPly: TokenAmount;
50
+ currentPly: TokenAmount;
51
+ currentPulp: TokenAmount;
52
+ nextUnlockPortion: number;
53
+ nextPly: TokenAmount;
54
+ nextPulp: TokenAmount;
55
+ };
56
+ export type UserMarketDetails = {
57
+ market: string;
58
+ depositBalance: TokenAmount;
59
+ borrowBalance: TokenAmount;
60
+ isCollateral: boolean;
61
+ maxWithdrawableAmount: TokenAmount;
62
+ collateralRatio: number;
63
+ underlyingPrice: string;
64
+ };
65
+ export type TokenAPY = {
66
+ address: string;
67
+ apy: string;
68
+ };
69
+ export type PLYWNEARPoolDetails = {
70
+ totalStakedLiquidity: TokenAmount;
71
+ APYs: TokenAPY[];
72
+ };
73
+ export type MulticallOverrides = {
74
+ blockTag?: BlockTag | Promise<BlockTag>;
75
+ };
76
+ type ConcatTuple<A extends any[], B extends any[]> = [...A, ...B];
77
+ type RemoveLastOptionalParam<Fn extends (...params: any[]) => any> = Fn extends (...params: [...infer Head, any?]) => infer R ? (...params: Head) => R : Fn;
78
+ type AddParams<Fn extends (...params: any[]) => any, P extends any[]> = Fn extends (...params: infer Params) => infer R ? (...params: ConcatTuple<Params, P>) => R : Fn;
79
+ export type MulticallStatic<T extends Contract> = {
80
+ callStatic: {
81
+ [P in keyof T['callStatic']]: AddParams<RemoveLastOptionalParam<T['callStatic'][P]>, [
82
+ multicallOverrides?: MulticallOverrides
83
+ ]>;
84
+ };
85
+ address: string;
86
+ raw: T;
87
+ };
88
+ export declare enum MarketAction {
89
+ Deposit = 0,
90
+ Borrow = 1,
91
+ Withdraw = 2,
92
+ Repay = 3,
93
+ EnableCollateral = 4,
94
+ DisableCollateral = 5
95
+ }
96
+ export type HypotheticalStats = {
97
+ newBorrowLimit: CurrencyAmount;
98
+ newBorrowUtilization: number;
99
+ };
100
+ export type AccountAuTokenInfo = {
101
+ token: string;
102
+ deposit: BigNumber;
103
+ borrow: BigNumber;
104
+ };
105
+ export type AccountAuTokensInfo = {
106
+ address: string;
107
+ tokens: AccountAuTokenInfo[];
108
+ };
109
+ export type AuTokenWithUnderlying = MulticallStatic<AuToken> & {
110
+ underlying: string;
111
+ };
112
+ export type ReferralReward = {
113
+ campaign: string;
114
+ userAddr: string;
115
+ startTime: number;
116
+ endTime: number;
117
+ isReferrer: boolean;
118
+ rewardTokenAmount: TokenAmount;
119
+ transactionHash: string | null;
120
+ refereeAddress: string | null;
121
+ };
122
+ export type PlyGameBetResult = {
123
+ player: string;
124
+ outcome: string;
125
+ lostAmount: TokenAmount;
126
+ unlockedPulpAmount: TokenAmount;
127
+ block: number;
128
+ timestamp: number;
129
+ transactionHash: string;
130
+ };
131
+ export type PlyGameLeaderboardItem = {
132
+ player: string;
133
+ gamesPlayed: number;
134
+ unlockedPulpAmount: TokenAmount;
135
+ };
136
+ export type PlyBetMadeEvent = TypedEvent<[
137
+ string,
138
+ BN,
139
+ number
140
+ ] & {
141
+ player: string;
142
+ amount: BN;
143
+ outcome: number;
144
+ }>;
145
+ export type Apy = {
146
+ sum: BigNumber;
147
+ suppliedValue: BigNumber;
148
+ borrowedValue: BigNumber;
149
+ };
150
+ export type UserNotification = {
151
+ message: string;
152
+ userSetting: {
153
+ address: Address;
154
+ mail: string;
155
+ utilisation: number;
156
+ liquidation: boolean;
157
+ }[];
158
+ };
159
+ export type LiquidationEventEntity = {
160
+ liquidator: string;
161
+ borrower: string;
162
+ repayAmount: string;
163
+ marketRepayToken: string;
164
+ seizeTokens: string;
165
+ auTokenCollateral: string;
166
+ txnHash: string;
167
+ blockNumber: number;
168
+ };
169
+ export type LiquidationDetail = {
170
+ liquidationTime: Timestamp;
171
+ tokenAmount: TokenAmount;
172
+ transactionId: string;
173
+ };
174
+ export type Timestamp = number;
175
+ export {};
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MarketAction = exports.ComptrollerRewardType = void 0;
4
+ var ComptrollerRewardType;
5
+ (function (ComptrollerRewardType) {
6
+ ComptrollerRewardType[ComptrollerRewardType["PLY"] = 0] = "PLY";
7
+ ComptrollerRewardType[ComptrollerRewardType["AURORA"] = 1] = "AURORA";
8
+ })(ComptrollerRewardType || (exports.ComptrollerRewardType = ComptrollerRewardType = {}));
9
+ var MarketAction;
10
+ (function (MarketAction) {
11
+ MarketAction[MarketAction["Deposit"] = 0] = "Deposit";
12
+ MarketAction[MarketAction["Borrow"] = 1] = "Borrow";
13
+ MarketAction[MarketAction["Withdraw"] = 2] = "Withdraw";
14
+ MarketAction[MarketAction["Repay"] = 3] = "Repay";
15
+ MarketAction[MarketAction["EnableCollateral"] = 4] = "EnableCollateral";
16
+ MarketAction[MarketAction["DisableCollateral"] = 5] = "DisableCollateral";
17
+ })(MarketAction || (exports.MarketAction = MarketAction = {}));
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBUUEsSUFBWSxxQkFHWDtBQUhELFdBQVkscUJBQXFCO0lBQy9CLCtEQUFPLENBQUE7SUFDUCxxRUFBTSxDQUFBO0FBQ1IsQ0FBQyxFQUhXLHFCQUFxQixxQ0FBckIscUJBQXFCLFFBR2hDO0FBb0hELElBQVksWUFPWDtBQVBELFdBQVksWUFBWTtJQUN0QixxREFBVyxDQUFBO0lBQ1gsbURBQU0sQ0FBQTtJQUNOLHVEQUFRLENBQUE7SUFDUixpREFBSyxDQUFBO0lBQ0wsdUVBQWdCLENBQUE7SUFDaEIseUVBQWlCLENBQUE7QUFDbkIsQ0FBQyxFQVBXLFlBQVksNEJBQVosWUFBWSxRQU92QiJ9
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
- "version": "1.23.1",
2
+ "version": "1.24.1",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
7
- "dist",
8
- "src"
7
+ "dist"
9
8
  ],
10
9
  "engines": {
11
10
  "node": ">=14"
12
11
  },
13
12
  "scripts": {
14
13
  "start": "tsdx watch",
15
- "build": "tsdx build",
14
+ "build": "tsc -p ./tsconfig.build.json ",
16
15
  "test": "tsdx test --no-cache",
17
16
  "w-hardhat": "env TS_NODE_PROJECT=\"test-hardhat/tsconfig.json\" yarn hardhat",
18
17
  "lint": "prettier --check \"{src,test,test-hardhat}/**/*.{js,ts}\"",
@@ -28,17 +27,6 @@
28
27
  },
29
28
  "name": "@aurigami/sdk",
30
29
  "author": "Aurigami Finance",
31
- "module": "dist/sdk.esm.js",
32
- "size-limit": [
33
- {
34
- "path": "dist/sdk.cjs.production.min.js",
35
- "limit": "300 KB"
36
- },
37
- {
38
- "path": "dist/sdk.esm.js",
39
- "limit": "300 KB"
40
- }
41
- ],
42
30
  "devDependencies": {
43
31
  "@nomiclabs/hardhat-ethers": "^2.0.5",
44
32
  "@nomiclabs/hardhat-etherscan": "^3.0.3",
@@ -58,7 +46,7 @@
58
46
  "ts-node": "^10.7.0",
59
47
  "tsdx": "^0.14.1",
60
48
  "tslib": "^2.3.1",
61
- "typescript": "^4.5.4"
49
+ "typescript": "^5.0.2"
62
50
  },
63
51
  "dependencies": {
64
52
  "@aurigami/contracts": "3.21.0",