-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsponsorship-policy.ts
230 lines (221 loc) · 7.53 KB
/
sponsorship-policy.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/* eslint-disable @typescript-eslint/no-inferrable-types */
import { Sequelize, DataTypes, Model } from 'sequelize';
export class SponsorshipPolicy extends Model {
public id!: number;
public walletAddress!: string;
public name!: string;
public description!: string | null;
public isPublic: boolean = false;
public isEnabled: boolean = false;
public isApplicableToAllNetworks!: boolean;
public enabledChains?: number[];
public supportedEPVersions: string[] | null = null;
public isPerpetual: boolean = false;
public startTime: Date | null = null;
public endTime: Date | null = null;
public globalMaximumApplicable: boolean = false;
public globalMaximumUsd: number | null = null;
public globalMaximumNative: number | null = null;
public globalMaximumOpCount: number | null = null;
public perUserMaximumApplicable: boolean = false;
public perUserMaximumUsd: number | null = null;
public perUserMaximumNative: number | null = null;
public perUserMaximumOpCount: number | null = null;
public perOpMaximumApplicable: boolean = false;
public perOpMaximumUsd: number | null = null;
public perOpMaximumNative: number | null = null;
public addressAllowList: string[] | null = null;
public addressBlockList: string[] | null = null;
public readonly createdAt!: Date;
public readonly updatedAt!: Date;
public get isExpired(): boolean {
if (this.isPerpetual) {
return false;
}
const currentTime = new Date();
return Boolean(this.endTime && this.endTime.getTime() <= currentTime.getTime());
}
public get isCurrent(): boolean {
const now = new Date();
if (this.isPerpetual) {
return true;
}
// If there is no start time, the policy is not current
if (!this.startTime) {
return false;
}
if (this.startTime && this.endTime) {
const currentTime = new Date();
const startTime = new Date(this.startTime + 'Z');
const endTime = new Date(this.endTime + 'Z');
if (startTime.getTime() > currentTime.getTime() || endTime.getTime() <= currentTime.getTime() || endTime.getTime() <= startTime.getTime()){
return false;
}
}
return true;
}
public get isApplicable(): boolean {
return this.isEnabled && !this.isExpired && this.isCurrent;
}
}
export function initializeSponsorshipPolicyModel(sequelize: Sequelize, schema: string) {
SponsorshipPolicy.init({
id: {
type: DataTypes.INTEGER,
autoIncrement: true,
primaryKey: true,
field: 'ID'
},
walletAddress: {
type: DataTypes.STRING,
allowNull: false,
field: 'WALLET_ADDRESS',
references: {
model: 'api_keys', // This is the table name of the model being referenced
key: 'WALLET_ADDRESS', // This is the key column in the APIKey model
},
onDelete: 'CASCADE',
onUpdate: 'CASCADE'
},
name: {
type: DataTypes.TEXT,
allowNull: false,
field: 'NAME'
},
description: {
type: DataTypes.TEXT,
allowNull: true,
field: 'DESCRIPTION'
},
isPublic: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'IS_PUBLIC'
},
isEnabled: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'IS_ENABLED'
},
isApplicableToAllNetworks: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'IS_APPLICABLE_TO_ALL_NETWORKS'
},
enabledChains: {
type: DataTypes.ARRAY(DataTypes.BIGINT),
allowNull: true,
field: 'ENABLED_CHAINS',
get() {
const value = this.getDataValue('enabledChains');
return value?.map((item: any) => +item);
}
},
supportedEPVersions: {
type: DataTypes.ARRAY(DataTypes.STRING),
allowNull: false,
field: 'SUPPORTED_EP_VERSIONS',
},
isPerpetual: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'IS_PERPETUAL'
},
startTime: {
type: DataTypes.DATE,
allowNull: true,
field: 'START_TIME'
},
endTime: {
type: DataTypes.DATE,
allowNull: true,
field: 'END_TIME'
},
globalMaximumApplicable: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'GLOBAL_MAX_APPLICABLE'
},
globalMaximumUsd: {
type: DataTypes.DECIMAL(10, 4), // max 10 digits, 4 of which can be after the decimal point
allowNull: true,
field: 'GLOBAL_MAX_USD'
},
globalMaximumNative: {
type: DataTypes.DECIMAL(22, 18), // max 22 digits, 18 of which can be after the decimal point
allowNull: true,
field: 'GLOBAL_MAX_NATIVE'
},
globalMaximumOpCount: {
type: DataTypes.INTEGER,
allowNull: true,
field: 'GLOBAL_MAX_OP_COUNT'
},
perUserMaximumApplicable: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'PER_USER_MAX_APPLICABLE'
},
perUserMaximumUsd: {
type: DataTypes.DECIMAL(10, 4), // max 10 digits, 4 of which can be after the decimal point
allowNull: true,
field: 'PER_USER_MAX_USD'
},
perUserMaximumNative: {
type: DataTypes.DECIMAL(22, 18), // max 22 digits, 18 of which can be after the decimal point
allowNull: true,
field: 'PER_USER_MAX_NATIVE'
},
perUserMaximumOpCount: {
type: DataTypes.INTEGER,
allowNull: true,
field: 'PER_USER_MAX_OP_COUNT'
},
perOpMaximumApplicable: {
type: DataTypes.BOOLEAN,
defaultValue: false,
field: 'PER_OP_MAX_APPLICABLE'
},
perOpMaximumUsd: {
type: DataTypes.DECIMAL(10, 4), // max 10 digits, 4 of which can be after the decimal point
allowNull: true,
field: 'PER_OP_MAX_USD'
},
perOpMaximumNative: {
type: DataTypes.DECIMAL(22, 18), // max 22 digits, 18 of which can be after the decimal point
allowNull: true,
field: 'PER_OP_MAX_NATIVE'
},
addressAllowList: {
type: DataTypes.ARRAY(DataTypes.STRING),
allowNull: true,
field: 'ADDRESS_ALLOW_LIST'
},
addressBlockList: {
type: DataTypes.ARRAY(DataTypes.STRING),
allowNull: true,
field: 'ADDRESS_BLOCK_LIST'
},
createdAt: {
type: DataTypes.DATE,
allowNull: false,
defaultValue: DataTypes.NOW,
field: 'CREATED_AT'
},
updatedAt: {
type: DataTypes.DATE,
allowNull: false,
defaultValue: DataTypes.NOW,
field: 'UPDATED_AT'
},
}, {
sequelize,
tableName: 'sponsorship_policies',
modelName: 'SponsorshipPolicy',
timestamps: true,
createdAt: 'createdAt',
updatedAt: 'updatedAt',
freezeTableName: true,
schema: schema,
});
}