Skip to content

Commit 2fa8bb6

Browse files
Merge pull request #93 from SourceXXL/revert-92-feat/history
Revert "Implement Transaction Tracking & History"
2 parents 85bae46 + 118ad41 commit 2fa8bb6

260 files changed

Lines changed: 1584 additions & 1294 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package-lock.json

Lines changed: 1 addition & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
"express": "^5.2.1",
8080
"express-mongo-sanitize": "^2.2.0",
8181
"express-rate-limit": "^8.2.1",
82-
"fast-csv": "^5.0.7",
8382
"helmet": "^8.1.0",
8483
"hpp": "^0.2.3",
8584
"ioredis": "^5.9.3",
@@ -123,7 +122,7 @@
123122
"@types/uuid": "^9.0.7",
124123
"@typescript-eslint/eslint-plugin": "^6.17.0",
125124
"@typescript-eslint/parser": "^6.17.0",
126-
"eslint": "^8.57.1",
125+
"eslint": "^8.56.0",
127126
"eslint-config-prettier": "^9.1.0",
128127
"eslint-plugin-import": "^2.32.0",
129128
"eslint-plugin-prettier": "^5.1.2",

src/app.controller.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,6 @@ export class AppController {
120120
};
121121
}
122122
}
123+
124+
125+

src/app.service.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ export class AppService {
2929
};
3030
}
3131
}
32+
33+
34+

src/blockchain/oracle/dto/create-payload.dto.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ export class CreatePayloadDto {
3636
@IsOptional()
3737
metadata?: Record<string, any>;
3838
}
39+
40+
41+

src/blockchain/oracle/dto/payload-response.dto.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ export class PayloadResponseDto {
2424
submittedAt: Date | null;
2525
confirmedAt: Date | null;
2626
}
27+
28+
29+

src/blockchain/oracle/dto/sign-payload.dto.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ export class SignPayloadDto {
1515
})
1616
privateKey: string;
1717
}
18+
19+
20+

src/blockchain/oracle/dto/submit-payload.dto.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ export class SubmitPayloadDto {
1414
@IsNotEmpty()
1515
payloadId: string;
1616
}
17+
18+
19+

src/blockchain/oracle/dto/verify-signature.dto.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ export class VerifySignatureDto {
2222
})
2323
expectedSigner: string;
2424
}
25+
26+
27+

src/blockchain/oracle/entities/signed-payload.entity.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,6 @@ export class SignedPayload {
141141
@Column({ type: "timestamp", nullable: true })
142142
confirmedAt: Date | null;
143143
}
144+
145+
146+

0 commit comments

Comments
 (0)