Skip to content

Commit

Permalink
fix: backend path for audit
Browse files Browse the repository at this point in the history
  • Loading branch information
yongenaelf authored Nov 21, 2024
1 parent 6f86035 commit d74f94f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions data/audit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ export enum AuditType {

const URL_CONFIG = {
[AuditType.DEFAULT]: {
uploadContractCode: "/api/playground/audit/uploadContractCode",
auditContractCode: "/api/playground/audit/auditContractCode",
report: "/api/playground/report",
uploadContractCode: "/api/audit/uploadContractCode",
auditContractCode: "/api/audit/auditContractCode",
report: "/api/report",
},
[AuditType.SAVE_GAS_FEE]: {
uploadContractCode: "/api/playground/adjustGasFee/uploadContractCode",
auditContractCode: "/api/playground/adjustGasFee/execute",
report: "/api/playground/adjustGasFee/report",
uploadContractCode: "/api/adjustGasFee/uploadContractCode",
auditContractCode: "/api/adjustGasFee/execute",
report: "/api/adjustGasFee/report",
},
};

Expand Down

0 comments on commit d74f94f

Please sign in to comment.