Last active
January 8, 2024 08:20
-
-
Save lptai/76f8b74dbaf1c34b1708caee031b0747 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
This gist exceeds the recommended number of files (~10).
To access all files, please clone this gist.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-trace-base": "^1.18.1", | |
"@opentelemetry/sdk-trace-node": "^1.18.1", | |
"@opentelemetry/semantic-conventions": "^1.18.1", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^8.16.2", | |
"pino-pretty": "^10.2.3" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.1.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^7.11.0", | |
"pino-pretty": "^7.6.1" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.1.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.6", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^7.11.0", | |
"pino-pretty": "^7.6.1" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/samples-typescript/interceptors-opentelemetry/package.json","entries":[{"id":"fhwS.json","timestamp":1700202079437},{"id":"lnGA.json","timestamp":1700203170330},{"id":"9OJ6.json","timestamp":1700207592989},{"id":"b9PC.json","timestamp":1700208490115},{"id":"6IlU.json","timestamp":1700293812109},{"id":"tB6O.json","timestamp":1700355576176},{"id":"oFz0.json","timestamp":1700355598482},{"id":"Obos.json","timestamp":1700355623046},{"id":"MXb6.json","timestamp":1700355633173},{"id":"XKOT.json","timestamp":1700375557958},{"id":"tyyG.json","timestamp":1700375590782}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/resources": "^1.8.0", | |
"@opentelemetry/sdk-node": "^0.33.0", | |
"@opentelemetry/sdk-trace-base": "^1.8.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^7.11.0" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.1.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^7.11.0" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.45.1", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-node": "^0.45.1", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^8.16.2", | |
"pino-pretty": "^10.2.3" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.45.1", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-node": "^0.45.1", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.18.1", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^8.16.2", | |
"pino-pretty": "^10.2.3" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.45.1", | |
"@opentelemetry/instrumentation-pino": "^0.34.3", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-node": "^0.45.1", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.18.1", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^8.16.2", | |
"pino-pretty": "^10.2.3" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.45.1", | |
"@opentelemetry/instrumentation-pino": "^0.34.3", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-node": "^0.45.1", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.18.1", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^8.16.2", | |
"pino-pretty": "^10.2.3" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-node": "^0.45.1", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^7.11.0", | |
"pino-cloudwatch": "^0.7.0", | |
"pino-multi-stream": "^6.0.0", | |
"pino-pretty": "^7.6.1" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "interceptors-opentelemetry-sample", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"build": "tsc --build", | |
"build.watch": "tsc --build --watch", | |
"lint": "eslint .", | |
"start": "ts-node src/worker.ts", | |
"start.watch": "nodemon src/worker.ts", | |
"workflow": "ts-node src/client.ts" | |
}, | |
"nodemonConfig": { | |
"execMap": { | |
"ts": "ts-node" | |
}, | |
"ext": "ts", | |
"watch": [ | |
"src" | |
] | |
}, | |
"dependencies": { | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/core": "^1.8.0", | |
"@opentelemetry/exporter-collector": "^0.25.0", | |
"@opentelemetry/resources": "^1.18.1", | |
"@opentelemetry/sdk-node": "^0.45.1", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@temporalio/activity": "^1.8.4", | |
"@temporalio/client": "^1.8.4", | |
"@temporalio/interceptors-opentelemetry": "^1.8.4", | |
"@temporalio/worker": "^1.8.4", | |
"@temporalio/workflow": "^1.8.4", | |
"pino": "^8.16.2", | |
"pino-pretty": "^10.2.3" | |
}, | |
"devDependencies": { | |
"@tsconfig/node16": "^1.0.0", | |
"@types/node": "^16.11.43", | |
"@typescript-eslint/eslint-plugin": "^5.0.0", | |
"@typescript-eslint/parser": "^5.0.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^8.3.0", | |
"eslint-plugin-deprecation": "^1.2.1", | |
"nodemon": "^2.0.12", | |
"prettier": "^2.8.8", | |
"ts-node": "^10.2.1", | |
"typescript": "^4.2.2" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/db/sqitch.qc.plan","entries":[{"id":"yBoi.plan","timestamp":1696297037970},{"id":"VuJ6.plan","timestamp":1697424886512},{"id":"bOaT.plan","timestamp":1697425221271},{"id":"eA17.plan","timestamp":1702454795551},{"id":"Tu35.plan","timestamp":1703034881818},{"id":"U2bH.plan","timestamp":1703146764374}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/ruleEngines/validator/transactionRuleValidator.ts","entries":[{"id":"NSdK.ts","timestamp":1697686827724},{"id":"37Xi.ts","source":"Workspace Edit","timestamp":1697686860171},{"id":"1v1I.ts","timestamp":1697687015950},{"id":"IUsh.ts","timestamp":1697687116026},{"id":"WFmJ.ts","timestamp":1697687210347},{"id":"uWx9.ts","timestamp":1697687295334},{"id":"iXYd.ts","timestamp":1697687307227},{"id":"g4Oj.ts","timestamp":1697687327275},{"id":"KEPr.ts","timestamp":1697687351896},{"id":"CtOP.ts","timestamp":1697687377511},{"id":"g9kT.ts","timestamp":1697687413414},{"id":"Llik.ts","timestamp":1697687437457},{"id":"x3Tu.ts","timestamp":1697687468166},{"id":"crdH.ts","timestamp":1697687527831},{"id":"woMH.ts","timestamp":1697687554242},{"id":"vBtt.ts","timestamp":1697688682145},{"id":"Tg8L.ts","timestamp":1697688905125},{"id":"uE0H.ts","timestamp":1697689100270},{"id":"0CMz.ts","timestamp":1697689132997},{"id":"rvJn.ts","source":"undoRedo.source","timestamp":1697689138924},{"id":"M7t8.ts","timestamp":1697689790428},{"id":"iPzq.ts","timestamp":1697690006006},{"id":"R3sb.ts","timestamp":1697690519187},{"id":"upxI.ts","timestamp":1697691028193},{"id":"LGuc.ts","timestamp":1697691362547},{"id":"SaYl.ts","timestamp":1697691450870},{"id":"k1jW.ts","source":"Renaming ranges to sortedRanges","timestamp":1697691489443},{"id":"tLQB.ts","timestamp":1697691673328},{"id":"DkFo.ts","timestamp":1697691869346}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/TemporalClient.ts","entries":[{"id":"fiXy.ts","timestamp":1694084125867},{"id":"8OzA.ts","timestamp":1694084249638},{"id":"COK1.ts","timestamp":1694084547737},{"id":"ednk.ts","timestamp":1694084577744},{"id":"jLbn.ts","source":"Workspace Edit","timestamp":1694084615689},{"id":"i5iF.ts","timestamp":1694084715992},{"id":"exbx.ts","source":"Workspace Edit","timestamp":1694139651345},{"id":"VL6o.ts","timestamp":1694139657957},{"id":"2SMy.ts","timestamp":1694140072703},{"id":"vfBB.ts","timestamp":1694140092804},{"id":"jNKM.ts","timestamp":1694140124958},{"id":"0bo9.ts","source":"undoRedo.source","timestamp":1694140174947},{"id":"GMKl.ts","timestamp":1694140201627},{"id":"bk0H.ts","timestamp":1694140216010},{"id":"7b4x.ts","timestamp":1694140422389},{"id":"74ct.ts","timestamp":1694140456008},{"id":"HOiu.ts","timestamp":1694140594928},{"id":"mwwz.ts","timestamp":1694140622875},{"id":"QH9v.ts","source":"Workspace Edit","timestamp":1694140889686},{"id":"Y5GR.ts","timestamp":1694140891981},{"id":"O5r0.ts","timestamp":1694140918375},{"id":"Sndv.ts","timestamp":1694140977972},{"id":"Isjs.ts","timestamp":1697166677104},{"id":"EEyA.ts","source":"Workspace Edit","timestamp":1697166679414}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/interfaces/portfolio.ts","entries":[{"id":"XWDR.ts","timestamp":1692262348486},{"id":"uUxx.ts","timestamp":1692262369768}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/shared/evm-based/base.ts","entries":[{"id":"Im97.ts","timestamp":1700709680526},{"id":"yUAm.ts","timestamp":1700709695050},{"id":"WPcP.ts","timestamp":1700711384406},{"id":"JqTF.ts","timestamp":1700711400313},{"id":"6zwS.ts","timestamp":1700711656125},{"id":"I3OV.ts","timestamp":1700711755015},{"id":"mU26.ts","timestamp":1700723483305},{"id":"Noxs.ts","timestamp":1700723520404},{"id":"2hhb.ts","timestamp":1700723675056},{"id":"V2jf.ts","source":"Workspace Edit","timestamp":1700723735182},{"id":"kwXr.ts","source":"searchReplace.source","timestamp":1700727913997},{"id":"P7Jf.ts","timestamp":1700728940776},{"id":"qdQD.ts","timestamp":1700728960110},{"id":"nwPW.ts","timestamp":1700729287767},{"id":"3dIV.ts","source":"Workspace Edit","timestamp":1700729314699},{"id":"57mn.ts","timestamp":1700729320458},{"id":"upJM.ts","timestamp":1700729345548},{"id":"BQP5.ts","source":"Workspace Edit","timestamp":1700729351658},{"id":"f3gQ.ts","timestamp":1700730650176},{"id":"4pke.ts","source":"Workspace Edit","timestamp":1700730679229},{"id":"9fRc.ts","timestamp":1700730732392},{"id":"0q8Y.ts","timestamp":1700730821837},{"id":"JyrW.ts","source":"Workspace Edit","timestamp":1700730884588},{"id":"kaTt.ts","timestamp":1700730891450},{"id":"dWKG.ts","timestamp":1700730902472},{"id":"0MZQ.ts","source":"Workspace Edit","timestamp":1700732007942},{"id":"CSsd.ts","timestamp":1700742573392},{"id":"Wluy.ts","timestamp":1700742687580},{"id":"Xkqb.ts","timestamp":1700742718171},{"id":"YqkP.ts","timestamp":1701227979826},{"id":"ADGD.ts","timestamp":1701228004072},{"id":"7nIP.ts","timestamp":1701230354109},{"id":"gVGp.ts","timestamp":1701231922471},{"id":"bUTC.ts","timestamp":1703059427082},{"id":"rUh4.ts","timestamp":1703059523142},{"id":"h6zy.ts","timestamp":1703059550071},{"id":"ICC0.ts","timestamp":1704255820319},{"id":"3AJg.ts","timestamp":1704256772187},{"id":"drnq.ts","timestamp":1704256804599},{"id":"2Y53.ts","timestamp":1704256835803},{"id":"saAI.ts","source":"Workspace Edit","timestamp":1704256842298},{"id":"MRaS.ts","timestamp":1704257921217},{"id":"gzNS.ts","timestamp":1704257954335},{"id":"JkIi.ts","source":"Workspace Edit","timestamp":1704258240787},{"id":"e9sz.ts","timestamp":1704258249204},{"id":"xaYE.ts","timestamp":1704258271089},{"id":"T8NL.ts","timestamp":1704258307313},{"id":"iTtv.ts","source":"Workspace Edit","timestamp":1704258312735},{"id":"ITU1.ts","timestamp":1704259040646},{"id":"qgvs.ts","timestamp":1704259078465}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/db/deploy/add-xrp.sql","entries":[{"id":"Gk7K.sql","timestamp":1695780462017}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-staging/venus-codepipeline/route53.tf","entries":[{"id":"h7EI.tf","timestamp":1694573285553},{"id":"WJ8q.tf","timestamp":1694573995724},{"id":"w0Sp.tf","source":"undoRedo.source","timestamp":1694574017269}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/shared/evm-based/interfaces.ts","entries":[{"id":"JCv9.ts","source":"Renaming getTransactionCount to getNonce","timestamp":1698390407773},{"id":"A2hb.ts","timestamp":1699939756425},{"id":"cgzK.ts","timestamp":1703059442195}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/athena-codepipeline/data.tf","entries":[{"id":"x8cY.tf","source":"searchReplace.source","timestamp":1696893797699}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/loadtest/data/load-test-deposits-29-11-2023_08-14.json","entries":[{"id":"vb0S.json","source":"undoRedo.source","timestamp":1701220573419},{"id":"GRyL.json","timestamp":1701220577424}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"depositAddress":{"id":"ac231664-0587-4817-9361-72ec65b62e84","address":"0x592Bc309C373026637e4F8377Eb8F4653F141cC4"},"amount":"0.01","txHash":"0xe749f363c51cfe663faf3cb91fe7d8ce88640aa97e5805ad9a4d35b495451ae7","nonce":11240,"symbol":"USDT"},{"depositAddress":{"id":"ac231664-0587-4817-9361-72ec65b62e84","address":"0x592Bc309C373026637e4F8377Eb8F4653F141cC4"},"amount":"0.003","txHash":"0x5a68628f4301bcf365f6941e4acb1d457e579b0a784e0f7e6c3778a0c1842e2f","nonce":11241,"symbol":"ETH"},{"depositAddress":{"id":"e16cf62c-d315-48b1-9e27-c3350b651942","address":"0xC7762173e888e8A3393438d6b3fd7aC852200Ac8"},"amount":"0.01","txHash":"0x28c107a29be1fc881c83b6c42eb88d3ddf574a6a31925a9b9b21293bc30fab31","nonce":11242,"symbol":"USDT"},{"depositAddress":{"id":"e16cf62c-d315-48b1-9e27-c3350b651942","address":"0xC7762173e888e8A3393438d6b3fd7aC852200Ac8"},"amount":"0.003","txHash":"0x80435654329dd2c18545bbf9a4bac3d484693f9f7f23c881ce5f8521d071ef88","nonce":11243,"symbol":"ETH"},{"depositAddress":{"id":"637bc199-1ea9-4a77-bf6f-32e757ac01ab","address":"0x1f1f72dE6Def356554a71dbCEd2EAB0293eAdEaf"},"amount":"0.01","txHash":"0xe5d2f99f5d927423d3da38fd873078608077518ed4aa71affbaf8cbcdd93c440","nonce":11244,"symbol":"USDT"},{"depositAddress":{"id":"637bc199-1ea9-4a77-bf6f-32e757ac01ab","address":"0x1f1f72dE6Def356554a71dbCEd2EAB0293eAdEaf"},"amount":"0.003","txHash":"0x036e7e5d214fcf9c52c79da7c367d7db648bb7b14c08d82fda7c22997ea80e5b","nonce":11245,"symbol":"ETH"},{"depositAddress":{"id":"4ee73158-eb5d-4011-845b-ca7c0c666d49","address":"0xc3841DB8a92C09c1cCC17B9Eb1c6f6204b83Cb48"},"amount":"0.01","txHash":"0xb2014dcf4f08618e79ce7b55320872534f3a045dd7d3d1a9d116a4ab45fb374f","nonce":11246,"symbol":"USDT"},{"depositAddress":{"id":"4ee73158-eb5d-4011-845b-ca7c0c666d49","address":"0xc3841DB8a92C09c1cCC17B9Eb1c6f6204b83Cb48"},"amount":"0.003","txHash":"0xceb1d5bf6d4e63174e97b14ea1b73de5111364ce9195f02df8529b68b2e3226b","nonce":11247,"symbol":"ETH"},{"depositAddress":{"id":"345e4931-bd08-4294-818b-57e14a46a632","address":"0x421133EFEeA6e59eA2eeF3910DE10d2bC86D5bF7"},"amount":"0.01","txHash":"0x57d10152561f60d7673775fa95a5676f5883616332e06a9042b40905bde10188","nonce":11248,"symbol":"USDT"},{"depositAddress":{"id":"345e4931-bd08-4294-818b-57e14a46a632","address":"0x421133EFEeA6e59eA2eeF3910DE10d2bC86D5bF7"},"amount":"0.003","txHash":"0x52a13d72db7d9fe08adf62fe27c6825fc5c7e4ad2af87cccb20c6c9a897d5752","nonce":11249,"symbol":"ETH"},{"depositAddress":{"id":"cb462e4b-5142-4e91-8582-369c66a95d95","address":"0xF2022744C770D35e6628dB410320c7338c93Ba51"},"amount":"0.01","txHash":"0x837f109b20788a6fa523501967095dd496d00dba583980b76cf40bbfd390ba75","nonce":11250,"symbol":"USDT"},{"depositAddress":{"id":"cb462e4b-5142-4e91-8582-369c66a95d95","address":"0xF2022744C770D35e6628dB410320c7338c93Ba51"},"amount":"0.003","txHash":"0x0e34c1bd450f967e6da5dcecfefb7597471a281de043dd6009681951fd2bc376","nonce":11251,"symbol":"ETH"}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"depositAddress":{"id":"ac231664-0587-4817-9361-72ec65b62e84","address":"0x592Bc309C373026637e4F8377Eb8F4653F141cC4"},"amount":"0.01","txHash":"0xe749f363c51cfe663faf3cb91fe7d8ce88640aa97e5805ad9a4d35b495451ae7","nonce":11240,"symbol":"USDT"},{"depositAddress":{"id":"ac231664-0587-4817-9361-72ec65b62e84","address":"0x592Bc309C373026637e4F8377Eb8F4653F141cC4"},"amount":"0.003","txHash":"0x5a68628f4301bcf365f6941e4acb1d457e579b0a784e0f7e6c3778a0c1842e2f","nonce":11241,"symbol":"ETH"},{"depositAddress":{"id":"e16cf62c-d315-48b1-9e27-c3350b651942","address":"0xC7762173e888e8A3393438d6b3fd7aC852200Ac8"},"amount":"0.01","txHash":"0x28c107a29be1fc881c83b6c42eb88d3ddf574a6a31925a9b9b21293bc30fab31","nonce":11242,"symbol":"USDT"},{"depositAddress":{"id":"e16cf62c-d315-48b1-9e27-c3350b651942","address":"0xC7762173e888e8A3393438d6b3fd7aC852200Ac8"},"amount":"0.003","txHash":"0x80435654329dd2c18545bbf9a4bac3d484693f9f7f23c881ce5f8521d071ef88","nonce":11243,"symbol":"ETH"},{"depositAddress":{"id":"637bc199-1ea9-4a77-bf6f-32e757ac01ab","address":"0x1f1f72dE6Def356554a71dbCEd2EAB0293eAdEaf"},"amount":"0.01","txHash":"0xe5d2f99f5d927423d3da38fd873078608077518ed4aa71affbaf8cbcdd93c440","nonce":11244,"symbol":"USDT"},{"depositAddress":{"id":"637bc199-1ea9-4a77-bf6f-32e757ac01ab","address":"0x1f1f72dE6Def356554a71dbCEd2EAB0293eAdEaf"},"amount":"0.003","txHash":"0x036e7e5d214fcf9c52c79da7c367d7db648bb7b14c08d82fda7c22997ea80e5b","nonce":11245,"symbol":"ETH"},{"depositAddress":{"id":"4ee73158-eb5d-4011-845b-ca7c0c666d49","address":"0xc3841DB8a92C09c1cCC17B9Eb1c6f6204b83Cb48"},"amount":"0.01","txHash":"0xb2014dcf4f08618e79ce7b55320872534f3a045dd7d3d1a9d116a4ab45fb374f","nonce":11246,"symbol":"USDT"},{"depositAddress":{"id":"4ee73158-eb5d-4011-845b-ca7c0c666d49","address":"0xc3841DB8a92C09c1cCC17B9Eb1c6f6204b83Cb48"},"amount":"0.003","txHash":"0xceb1d5bf6d4e63174e97b14ea1b73de5111364ce9195f02df8529b68b2e3226b","nonce":11247,"symbol":"ETH"},{"depositAddress":{"id":"345e4931-bd08-4294-818b-57e14a46a632","address":"0x421133EFEeA6e59eA2eeF3910DE10d2bC86D5bF7"},"amount":"0.01","txHash":"0x57d10152561f60d7673775fa95a5676f5883616332e06a9042b40905bde10188","nonce":11248,"symbol":"USDT"},{"depositAddress":{"id":"345e4931-bd08-4294-818b-57e14a46a632","address":"0x421133EFEeA6e59eA2eeF3910DE10d2bC86D5bF7"},"amount":"0.003","txHash":"0x52a13d72db7d9fe08adf62fe27c6825fc5c7e4ad2af87cccb20c6c9a897d5752","nonce":11249,"symbol":"ETH"},{"depositAddress":{"id":"cb462e4b-5142-4e91-8582-369c66a95d95","address":"0xF2022744C770D35e6628dB410320c7338c93Ba51"},"amount":"0.01","txHash":"0x837f109b20788a6fa523501967095dd496d00dba583980b76cf40bbfd390ba75","nonce":11250,"symbol":"USDT"},{"depositAddress":{"id":"cb462e4b-5142-4e91-8582-369c66a95d95","address":"0xF2022744C770D35e6628dB410320c7338c93Ba51"},"amount":"0.003","txHash":"0x0e34c1bd450f967e6da5dcecfefb7597471a281de043dd6009681951fd2bc376","nonce":11251,"symbol":"ETH"},{}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/verifyWithdrawals.ts","entries":[{"id":"KCB1.ts","source":"Rename verifyWithdrawal.ts to verifyWithdrawals.ts","timestamp":1701229019257},{"id":"I3xY.ts","timestamp":1701229028922},{"id":"5pue.ts","timestamp":1701229293499},{"id":"Ini5.ts","timestamp":1701229434057},{"id":"rxfR.ts","timestamp":1701229479193},{"id":"g8IS.ts","timestamp":1701229604982},{"id":"gya9.ts","timestamp":1701229617128},{"id":"gMNF.ts","timestamp":1701229685160},{"id":"SPmu.ts","timestamp":1701229819707},{"id":"WXxX.ts","timestamp":1701229946618},{"id":"WcKB.ts","timestamp":1701230185173},{"id":"0Pyc.ts","timestamp":1701230213997},{"id":"uxfl.ts","timestamp":1701230263747},{"id":"q0rv.ts","source":"Workspace Edit","timestamp":1701230291836},{"id":"mqZZ.ts","timestamp":1701230443618},{"id":"VvmV.ts","timestamp":1701230466318},{"id":"RJyx.ts","timestamp":1701230554478},{"id":"fo9Q.ts","timestamp":1701230579950},{"id":"IIdw.ts","timestamp":1701230597542},{"id":"JlK5.ts","timestamp":1701230614992},{"id":"iomN.ts","timestamp":1701230651473},{"id":"ENi9.ts","timestamp":1701230671294},{"id":"iB3f.ts","timestamp":1701797801002},{"id":"JuaO.ts","timestamp":1701798086932},{"id":"CwQS.ts","timestamp":1702605260770},{"id":"GaF3.ts","timestamp":1702605285082},{"id":"4RpT.ts","timestamp":1702822689996},{"id":"cOIr.ts","timestamp":1702822726902},{"id":"noom.ts","timestamp":1702885170724}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/litecoin/__test__/index.test.ts","entries":[{"id":"kgbr.ts","timestamp":1696395734077},{"id":"zC1H.ts","timestamp":1696395754146},{"id":"MQkm.ts","timestamp":1696395808442},{"id":"pPoe.ts","timestamp":1696402175203},{"id":"zNSJ.ts","timestamp":1696402258418},{"id":"Z6AC.ts","timestamp":1696402319628},{"id":"BcGT.ts","source":"Renaming sender to from","timestamp":1696402326547},{"id":"hT2P.ts","timestamp":1696402389144},{"id":"quuZ.ts","timestamp":1696402411170},{"id":"Ptyp.ts","timestamp":1696402422557},{"id":"P5tL.ts","timestamp":1696402478739},{"id":"aHKt.ts","timestamp":1696402500021},{"id":"Qvjv.ts","timestamp":1696402670687},{"id":"Ig2S.ts","timestamp":1696402707810},{"id":"KeyW.ts","timestamp":1696403643485},{"id":"TtUd.ts","timestamp":1696405978151},{"id":"E4Ds.ts","timestamp":1696406137293},{"id":"zj05.ts","timestamp":1696407466338},{"id":"BoRw.ts","timestamp":1696407699543},{"id":"iZ1U.ts","timestamp":1696407878806},{"id":"FkqG.ts","timestamp":1696408082160},{"id":"wO3r.ts","timestamp":1696408111004},{"id":"fieY.ts","timestamp":1696408157664},{"id":"5UVz.ts","timestamp":1696408185795},{"id":"ys0g.ts","timestamp":1696408202502},{"id":"TjeE.ts","timestamp":1696408222671},{"id":"PMHY.ts","timestamp":1696408270689},{"id":"792B.ts","timestamp":1696408365187},{"id":"acxQ.ts","timestamp":1696408407059},{"id":"B5kZ.ts","timestamp":1696408451327},{"id":"0Ptn.ts","timestamp":1696408533284},{"id":"wFlO.ts","timestamp":1696408555155},{"id":"0HZl.ts","timestamp":1696408606500},{"id":"jFHE.ts","timestamp":1696408649924},{"id":"Xydq.ts","timestamp":1696408676749},{"id":"hvxI.ts","timestamp":1696408693528},{"id":"joKJ.ts","source":"undoRedo.source","timestamp":1696408718732},{"id":"wb79.ts","timestamp":1696408728248},{"id":"n2NP.ts","timestamp":1696426608005},{"id":"5byv.ts","timestamp":1696426667147},{"id":"Z5EE.ts","timestamp":1696426687084},{"id":"GA9v.ts","timestamp":1696426771964},{"id":"ns7T.ts","timestamp":1696467598970},{"id":"rcTn.ts","timestamp":1696467702525},{"id":"rPol.ts","timestamp":1697528864644},{"id":"EVqw.ts","timestamp":1700726570332},{"id":"fgDH.ts","timestamp":1700728083687},{"id":"qcuV.ts","timestamp":1700728105578},{"id":"Q1Zv.ts","timestamp":1702890387598},{"id":"krVn.ts","timestamp":1702890474326}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/UnlockAccountInstructions.hbs","entries":[{"id":"lVXt.hbs","timestamp":1694666501511},{"id":"aR7V.hbs","timestamp":1698999090654},{"id":"XZlr.hbs","timestamp":1698999131632}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/NftDeposit.hbs","entries":[{"id":"vjYf.hbs","source":"renamed.source","timestamp":1694663888095},{"id":"yaCr.hbs","timestamp":1694664806461},{"id":"Cf28.hbs","source":"searchReplace.source","timestamp":1694665298734},{"id":"5yws.hbs","source":"searchReplace.source","timestamp":1694665331419},{"id":"yvLG.hbs","source":"searchReplace.source","timestamp":1694710068458},{"id":"q78j.hbs","source":"searchReplace.source","timestamp":1694710085380}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "NFTDeposit", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html> | |
<html | |
lang=\"en\" | |
xmlns=\"http://www.w3.org/1999/xhtml\" | |
xmlns:v=\"urn:schemas-microsoft-com:vml\" | |
xmlns:o=\"urn:schemas-microsoft-com:office:office\" | |
style=\" | |
margin: 0; | |
mso-line-height-rule: exactly; | |
background-color: #f2f2f2; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
\" | |
> | |
<head> | |
<meta charset=\"utf-8\" /> | |
<!-- utf-8 works for most cases --> | |
<meta name=\"viewport\" content=\"width=device-width\" /> | |
<!-- Forcing initial-scale shouldn't be necessary --> | |
<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> | |
<!-- Use the latest (edge) version of IE rendering engine --> | |
<meta name=\"x-apple-disable-message-reformatting\" /> | |
<!-- Disable auto-scale in iOS 10 Mail entirely --> | |
<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" /> | |
<title>Propine</title> | |
<!-- The title tag shows in email notifications, like Android 4.4. --> | |
</head> | |
<body> | |
<div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\"> | |
<header | |
style=\" | |
background-color: #2c2d6b; | |
display: flex; | |
justify-content: space-between; | |
padding: 25px 60px; | |
align-items: center; | |
\" | |
> | |
<img | |
alt=\"logo-propine-left\" | |
height=\"40\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" | |
/> | |
<img | |
alt=\"logo-propine-right\" | |
height=\"75\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" | |
/> | |
</header> | |
<div style=\"font-size: 20px\"> | |
<div style=\"padding: 20px 60px\"> | |
<div style=\"border: 1px solid #d5d5d5; padding: 20px\"> | |
<p>Dear {{ account_name }},</p> <p> {{request_body}} </p> | |
<div style=\"padding: 5px 8px 0 8px;\"> | |
<p style=\"font-weight: bold; color: #808080; font-size: 1.2em;\">DEPOSIT DETAILS</p> | |
</div> | |
<div> | |
<p><b>Customer Account:</b> {{ account_name }}</p> | |
<p><b>Customer ID:</b> {{ account_id }}</p> | |
<p><b>Type of Request:</b> Incoming NFT Deposit </p> | |
<p><b>Deposited By:</b> {{ deposited_by }}</p> | |
<p><b>Date Received:</b> {{ date_received }}</p> | |
</div> | |
<div style=\"padding-top: 15px;\"> | |
<p> Please click on the link below to view the deposit details.</p> | |
<p><span><b>Request ID:</b></span> <a href=\"{{ crypto_deposit_url }}\" style=\"color: #0000ff;\">{{ request_id }}</a></p> | |
</div> | |
</div> | |
<div style=\"margin-top: 60px; margin-bottom: 180px\"> | |
<div | |
style=\"text-align: right; font-size: 20px; margin-bottom: 10px\" | |
> | |
Regards | |
</div> | |
<div style=\"text-align: right; font-size: 24px; font-weight: 400\"> | |
Propine Team | |
</div> | |
</div> | |
</div> | |
<div style=\"border-top: 1px solid #d5d5d5; padding: 24px 60px\"> | |
For any questions/concerns reach us at | |
<a style=\"color: #4376ff\" href=\"mailto:[email protected]\" | |
>[email protected]</a | |
> | |
</div> | |
</div> | |
<footer> | |
<div | |
style=\" | |
background-color: #2c2d6b; | |
color: white; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 20px 60px; | |
font-size: 24px; | |
\" | |
> | |
<span>© 2022 Propine. All Rights Reserved</span> | |
<span | |
><a | |
href=\"https://propine.com/\" | |
style=\"color: #ffffff; text-decoration: none\" | |
>www.propine.com</a | |
></span | |
> | |
<span | |
style=\" | |
display: inline-block; | |
display: flex; | |
justify-content: space-around; | |
min-width: 200px; | |
\" | |
> | |
<a href=\"https://www.linkedin.com/company/propine/mycompany/\"> | |
<img | |
alt=\"linkedIn\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" | |
/> | |
</a> | |
<a href=\"https://twitter.com/PropineGlobal\"> | |
<img | |
alt=\"twitter\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" | |
/> | |
</a> | |
<a href=\"https://medium.com/propineglobal\"> | |
<img | |
alt=\"medium\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" | |
/> | |
</a> | |
</span> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html>", | |
"TextPart": "" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "NFTDeposit", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html> | |
<html | |
lang="en" | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:v="urn:schemas-microsoft-com:vml" | |
xmlns:o="urn:schemas-microsoft-com:office:office" | |
style=" | |
margin: 0; | |
mso-line-height-rule: exactly; | |
background-color: #f2f2f2; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
" | |
> | |
<head> | |
<meta charset="utf-8" /> | |
<!-- utf-8 works for most cases --> | |
<meta name="viewport" content="width=device-width" /> | |
<!-- Forcing initial-scale shouldn't be necessary --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<!-- Use the latest (edge) version of IE rendering engine --> | |
<meta name="x-apple-disable-message-reformatting" /> | |
<!-- Disable auto-scale in iOS 10 Mail entirely --> | |
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" /> | |
<title>Propine</title> | |
<!-- The title tag shows in email notifications, like Android 4.4. --> | |
</head> | |
<body> | |
<div style="border: 1px solid #d5d5d5; background-color: #ffffff"> | |
<header | |
style=" | |
background-color: #2c2d6b; | |
display: flex; | |
justify-content: space-between; | |
padding: 25px 60px; | |
align-items: center; | |
" | |
> | |
<img | |
alt="logo-propine-left" | |
height="40" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png" | |
/> | |
<img | |
alt="logo-propine-right" | |
height="75" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png" | |
/> | |
</header> | |
<div style="font-size: 20px"> | |
<div style="padding: 20px 60px"> | |
<div style="border: 1px solid #d5d5d5; padding: 20px"> | |
<p>Dear {{ account_name }},</p> <p> {{request_body}} </p> | |
<div style="padding: 5px 8px 0 8px;"> | |
<p style="font-weight: bold; color: #808080; font-size: 1.2em;">DEPOSIT DETAILS</p> | |
</div> | |
<div> | |
<p><b>Customer Account:</b> {{ account_name }}</p> | |
<p><b>Customer ID:</b> {{ account_id }}</p> | |
<p><b>Type of Request:</b> Incoming NFT Deposit </p> | |
<p><b>Deposited By:</b> {{ deposited_by }}</p> | |
<p><b>Date Received:</b> {{ date_received }}</p> | |
</div> | |
<div style="padding-top: 15px;"> | |
<p> Please click on the link below to view the deposit details.</p> | |
<p><span><b>Request ID:</b></span> <a href="{{ crypto_deposit_url }}" style="color: #0000ff;">{{ request_id }}</a></p> | |
</div> | |
</div> | |
<div style="margin-top: 60px; margin-bottom: 180px"> | |
<div | |
style="text-align: right; font-size: 20px; margin-bottom: 10px" | |
> | |
Regards | |
</div> | |
<div style="text-align: right; font-size: 24px; font-weight: 400"> | |
Propine Team | |
</div> | |
</div> | |
</div> | |
<div style="border-top: 1px solid #d5d5d5; padding: 24px 60px"> | |
For any questions/concerns reach us at | |
<a style="color: #4376ff" href="mailto:[email protected]" | |
>[email protected]</a | |
> | |
</div> | |
</div> | |
<footer> | |
<div | |
style=" | |
background-color: #2c2d6b; | |
color: white; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 20px 60px; | |
font-size: 24px; | |
" | |
> | |
<span>© 2022 Propine. All Rights Reserved</span> | |
<span | |
><a | |
href="https://propine.com/" | |
style="color: #ffffff; text-decoration: none" | |
>www.propine.com</a | |
></span | |
> | |
<span | |
style=" | |
display: inline-block; | |
display: flex; | |
justify-content: space-around; | |
min-width: 200px; | |
" | |
> | |
<a href="https://www.linkedin.com/company/propine/mycompany/"> | |
<img | |
alt="linkedIn" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png" | |
/> | |
</a> | |
<a href="https://twitter.com/PropineGlobal"> | |
<img | |
alt="twitter" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png" | |
/> | |
</a> | |
<a href="https://medium.com/propineglobal"> | |
<img | |
alt="medium" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png" | |
/> | |
</a> | |
</span> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html>", | |
"TextPart": "" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/configurations/institutions/interface.ts","entries":[{"id":"QUD8.ts","timestamp":1700018699488},{"id":"OzLO.ts","timestamp":1700018904556},{"id":"8jgC.ts","timestamp":1700018915464},{"id":"Ul0M.ts","timestamp":1703139358442}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/portfolios/validators.ts","entries":[{"id":"XlCD.ts","timestamp":1693285966704},{"id":"3FWk.ts","timestamp":1693286022973},{"id":"mwEi.ts","timestamp":1695702756523},{"id":"2EkD.ts","timestamp":1695702841121},{"id":"A0WZ.ts","timestamp":1695702851292},{"id":"F1ml.ts","timestamp":1695792338412},{"id":"kteQ.ts","timestamp":1695792399410},{"id":"A1Fz.ts","timestamp":1695792667268},{"id":"AGch.ts","timestamp":1695792740757},{"id":"fZwJ.ts","timestamp":1695792860948},{"id":"3T5c.ts","timestamp":1695801569321},{"id":"LDqm.ts","timestamp":1697682224049},{"id":"tYZh.ts","timestamp":1697682286660},{"id":"LhaD.ts","source":"undoRedo.source","timestamp":1697682303599},{"id":"DLEs.ts","source":"undoRedo.source","timestamp":1697682956366},{"id":"IpTP.ts","timestamp":1699001037306},{"id":"pLhT.ts","timestamp":1702523487043},{"id":"8xfl.ts","timestamp":1702523527831}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hestia/.env","entries":[{"id":"xodF","timestamp":1692152141242}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/cleanDepositAddresses.ts","entries":[{"id":"jsWB.ts","timestamp":1701230778005},{"id":"XeHD.ts","timestamp":1701231008606},{"id":"OYxX.ts","timestamp":1701231059406},{"id":"W9x8.ts","timestamp":1701231164980},{"id":"Ct1g.ts","timestamp":1701231488094},{"id":"yUWC.ts","timestamp":1701231603107},{"id":"jMVc.ts","timestamp":1701232196098},{"id":"Krz2.ts","timestamp":1701232212827},{"id":"p4dR.ts","timestamp":1701232389313},{"id":"2LwP.ts","timestamp":1701232572443},{"id":"9l2P.ts","source":"Workspace Edit","timestamp":1701232806722},{"id":"Nrt9.ts","timestamp":1701232860669},{"id":"P28r.ts","timestamp":1701232968320},{"id":"MUTC.ts","timestamp":1701233269204},{"id":"sMco.ts","timestamp":1701233328137},{"id":"Ds0J.ts","timestamp":1701233348740},{"id":"jreN.ts","timestamp":1701233455292},{"id":"9qcM.ts","timestamp":1701233474948},{"id":"MOEr.ts","timestamp":1701233508366},{"id":"rYBU.ts","timestamp":1701233531168},{"id":"jmd0.ts","timestamp":1701233556317},{"id":"KOMX.ts","timestamp":1701233576369},{"id":"bV4U.ts","timestamp":1701233621633},{"id":"N8Fe.ts","timestamp":1701239246598},{"id":"oJlG.ts","timestamp":1701239276960},{"id":"glgo.ts","timestamp":1701239310557},{"id":"6iM7.ts","timestamp":1701239366400},{"id":"ASeR.ts","timestamp":1701239376998},{"id":"9XJd.ts","timestamp":1701239428315},{"id":"ig5w.ts","timestamp":1701239452018},{"id":"UznW.ts","timestamp":1701239465139},{"id":"Vlbi.ts","timestamp":1701239681338},{"id":"qo0d.ts","timestamp":1701239715977},{"id":"U4I1.ts","timestamp":1701239854677},{"id":"8tB2.ts","timestamp":1701239870206},{"id":"3RmW.ts","timestamp":1701240155819},{"id":"HyL8.ts","timestamp":1701240271411},{"id":"U8LR.ts","timestamp":1701404220207},{"id":"iA5y.ts","timestamp":1702940181921},{"id":"z5EM.ts","source":"Workspace Edit","timestamp":1702940185959}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/http-rest-client/http/asset_transfer/withdraw.http","entries":[{"id":"pMFO.http","timestamp":1698204801129},{"id":"ZdG0.http","timestamp":1698204934870},{"id":"SuHX.http","timestamp":1698204974539},{"id":"N6ru.http","timestamp":1698205210092}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/common/sequelize.ts","entries":[{"id":"x3uk.ts","timestamp":1695788873012},{"id":"PvbI.ts","timestamp":1695800032106},{"id":"4tnT.ts","timestamp":1696601707371},{"id":"FGqT.ts","timestamp":1697681751523},{"id":"Q4Es.ts","timestamp":1697707896065},{"id":"DFtg.ts","timestamp":1697707936610},{"id":"aNZU.ts","timestamp":1699416640881},{"id":"ckXh.ts","timestamp":1699416655478}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/env/cryptocore_production-env","entries":[{"id":"2nHP","timestamp":1697082011953},{"id":"j7nM","timestamp":1697082023446},{"id":"ZbKN","timestamp":1697082036516},{"id":"P2CF","timestamp":1697082209120}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/CustomerOnboarded.hbs","entries":[{"id":"rqqZ.hbs","timestamp":1694659345677},{"id":"boGA.hbs","timestamp":1694659363270},{"id":"njvh.hbs","source":"searchReplace.source","timestamp":1694710068607}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"failedMonitoringMetric": [ | |
{ | |
"id": "59b980f4-9877-43f6-84fd-4f0215c42b8c", | |
"hash": "0x6240af7649b15c25b3f64faf9d0e430ea5d6f894810892ca16812ed3cadd3c7b", | |
"confirmedAt": "Wed, 29 Nov 2023 02:33:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:46 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:42:49 GMT", | |
"monitoringTime": 8.968633333333333, | |
"reconciliationTime": 0.050416666666666665, | |
"totalTime": 9.01905 | |
}, | |
{ | |
"id": "f1c1ecbe-7248-4357-aa23-8ab725ab8301", | |
"hash": "0x2d6cc89319d1cb861baf799906dfeeed5fd444b2c67d659184785bf9e2bcb17b", | |
"confirmedAt": "Wed, 29 Nov 2023 02:33:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:52:49 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:52:50 GMT", | |
"monitoringTime": 19.029133333333334, | |
"reconciliationTime": 0.005366666666666666, | |
"totalTime": 19.0345 | |
}, | |
{ | |
"id": "9a1ebdff-6b07-4942-84b1-30ec05f4de22", | |
"hash": "0xa00b6717b07d3f06dbd6686d9b76a22bb4478ceab4051d39b26b43e66e719b37", | |
"confirmedAt": "Wed, 29 Nov 2023 02:33:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:43:26 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:43:28 GMT", | |
"monitoringTime": 9.645816666666667, | |
"reconciliationTime": 0.031966666666666664, | |
"totalTime": 9.677783333333334 | |
}, | |
{ | |
"id": "3245539a-5df0-4230-a48e-bf015471a373", | |
"hash": "0x069bca489c8d4ea307adeabc043872dd9717a494f2b99e0c6eb568bdd23e7023", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:31 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:42:33 GMT", | |
"monitoringTime": 8.518483333333334, | |
"reconciliationTime": 0.03161666666666667, | |
"totalTime": 8.5501 | |
}, | |
{ | |
"id": "b00bc059-4541-449f-bff7-a32b2e97056c", | |
"hash": "0x208ecb53f38fe2d49e63c7148b83f9022be507cc05ea8e2030afb4c5f70b47d5", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:43 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:54 GMT", | |
"monitoringTime": 8.721633333333333, | |
"reconciliationTime": 3.1837833333333334, | |
"totalTime": 11.905416666666667 | |
}, | |
{ | |
"id": "fbff8309-df0b-4cf2-bfe2-b2dd7ca50c4a", | |
"hash": "0x1463303e3d1569b546331f71f4383268d50731daf7ab2cd85f43f1b6fc4dc007", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:52:58 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:52:58 GMT", | |
"monitoringTime": 18.975216666666668, | |
"reconciliationTime": 0.002916666666666667, | |
"totalTime": 18.978133333333332 | |
}, | |
{ | |
"id": "6468dbbf-5bb6-4603-a27f-52a6d7a56da8", | |
"hash": "0x94581f98c955a20199c3784f8179e9d136c992980242439b7a8324e99484cdd2", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:24 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:43:41 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:43:43 GMT", | |
"monitoringTime": 9.2875, | |
"reconciliationTime": 0.02935, | |
"totalTime": 9.31685 | |
}, | |
{ | |
"id": "c045e486-5c42-4994-a770-57627aa74538", | |
"hash": "0xf9502285b13a72d014b8ef131a39e1f3563dd3d55328ee1d54cc435305c1f5a2", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:53:03 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:53:04 GMT", | |
"monitoringTime": 18.463183333333333, | |
"reconciliationTime": 0.0036, | |
"totalTime": 18.466783333333332 | |
}, | |
{ | |
"id": "d7e451e6-5a66-4f85-979d-93a1e4472bc3", | |
"hash": "0xf5d38f315a6d20d49404a4fb457fb8d386655d931dd02293ff041ce19ab52293", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:50 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:02 GMT", | |
"monitoringTime": 8.24995, | |
"reconciliationTime": 3.1931166666666666, | |
"totalTime": 11.443066666666667 | |
}, | |
{ | |
"id": "17c636eb-5f73-4f64-baad-c40596d7ed75", | |
"hash": "0x5c82084aa4ded4bf5743d18f41b1be561077c1f8e4a8e55e2ff7c76df9941b63", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:24 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:44:27 GMT", | |
"monitoringTime": 9.816466666666667, | |
"reconciliationTime": 0.0338, | |
"totalTime": 9.850266666666666 | |
}, | |
{ | |
"id": "e339e7fb-091d-4dbb-9096-9c5ddf882777", | |
"hash": "0xf1c5350bda5d2e636a2b707d578a39caa14d2eb6c73d9a5af3ef093bb445a6da", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:21 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:44:23 GMT", | |
"monitoringTime": 9.76235, | |
"reconciliationTime": 0.031733333333333336, | |
"totalTime": 9.794083333333333 | |
}, | |
{ | |
"id": "e332f0fa-eab3-469c-b21f-f1e432cea6e4", | |
"hash": "0xd55934181b89789a6651e4efeec698a2395725fb0ea232be8aeeb158b86de45b", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:46 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:42:50 GMT", | |
"monitoringTime": 8.178816666666666, | |
"reconciliationTime": 0.0558, | |
"totalTime": 8.234616666666666 | |
}, | |
{ | |
"id": "87f41070-0ef0-4816-9629-da21d80a67f4", | |
"hash": "0xdadfaaeb7f51bc29a59dac181ee7abe4e2517fe8712d1fc71bbd2426731f1a99", | |
"confirmedAt": "Wed, 29 Nov 2023 02:34:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:25 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:44:27 GMT", | |
"monitoringTime": 9.832516666666667, | |
"reconciliationTime": 0.031133333333333332, | |
"totalTime": 9.86365 | |
}, | |
{ | |
"id": "b6ffaaa5-5cbd-4dd1-8296-417603f3611f", | |
"hash": "0xecd3ae2648f39f56dd6c0bfad47591b57989c4bf32fb03860d532d3ef967ebd4", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:43:49 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:43:51 GMT", | |
"monitoringTime": 8.219, | |
"reconciliationTime": 0.041683333333333336, | |
"totalTime": 8.260683333333333 | |
}, | |
{ | |
"id": "9e110188-15e5-4677-bc9b-74bf30adbcf5", | |
"hash": "0x9931bf15949c33665a0ad8114d9c33d488da19dc77ae509463428d889200449d", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:37 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:39 GMT", | |
"monitoringTime": 10.029666666666667, | |
"reconciliationTime": 0.031966666666666664, | |
"totalTime": 10.061633333333333 | |
}, | |
{ | |
"id": "16ac893c-e9f1-4e3e-93a0-479e0d901428", | |
"hash": "0x135373ddf65ab5d0d2cf4fa02be7e10cfc720d362020de887188ea0c624f2ecf", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:30 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:44:32 GMT", | |
"monitoringTime": 8.7, | |
"reconciliationTime": 0.034916666666666665, | |
"totalTime": 8.734916666666667 | |
}, | |
{ | |
"id": "f0c3d18f-5caa-4a8d-a85d-432ed276ff06", | |
"hash": "0xa2d5d134a9c5e081f50c93596cd3ef771b540eefa319466feede36533d682d5e", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:35 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:37 GMT", | |
"monitoringTime": 9.7875, | |
"reconciliationTime": 0.034383333333333335, | |
"totalTime": 9.821883333333334 | |
}, | |
{ | |
"id": "4988238e-0960-4513-b694-f13ce8a4160c", | |
"hash": "0xf09a6ac7fb1cf1f2fbd9b6011af0e292537b9899062a30ed65a61feae18d827a", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:33 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:45 GMT", | |
"monitoringTime": 8.758516666666667, | |
"reconciliationTime": 3.1987666666666668, | |
"totalTime": 11.957283333333333 | |
}, | |
{ | |
"id": "f1b9a893-78d4-404f-95eb-534c4c3ccaf5", | |
"hash": "0x7d79f765a1f205d28fab5f0202ae3664cac97b40142eac2fc8d39fa6297bbbbc", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:38 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:40 GMT", | |
"monitoringTime": 9.84105, | |
"reconciliationTime": 0.031166666666666665, | |
"totalTime": 9.872216666666667 | |
}, | |
{ | |
"id": "6e43a58b-d49d-430c-b208-fb97473b9350", | |
"hash": "0xc6f6d2028a83d75f14059d1ccc0b7ed27fbbe9f1b06daf6b4a8e124992bc92a6", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:53:59 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:54:00 GMT", | |
"monitoringTime": 18.198216666666667, | |
"reconciliationTime": 0.005216666666666666, | |
"totalTime": 18.203433333333333 | |
}, | |
{ | |
"id": "d999923d-4d5a-460f-af1b-61255c3d1304", | |
"hash": "0x83e844cd47748251991f34f46e899e968623a14c631a89cdf248752d76edcbfa", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:34 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:36 GMT", | |
"monitoringTime": 9.774166666666666, | |
"reconciliationTime": 0.036366666666666665, | |
"totalTime": 9.810533333333334 | |
}, | |
{ | |
"id": "cf43bea6-7bee-478a-8081-2408f62ee00e", | |
"hash": "0xed2b9fe305cfd3ec949501aef6ed75e4e95eda9a82e79b3b605fc64fb4534563", | |
"confirmedAt": "Wed, 29 Nov 2023 02:35:48 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:53:52 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:53:52 GMT", | |
"monitoringTime": 18.078, | |
"reconciliationTime": 0.0038833333333333333, | |
"totalTime": 18.081883333333334 | |
}, | |
{ | |
"id": "8c631bee-5070-47cf-8aba-5c4b2f285455", | |
"hash": "0x3a297638b35e5546003ea94e0aa78cccf2f159d0712201fa1f6a6d3dc5b5c6a9", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:43 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:53 GMT", | |
"monitoringTime": 8.7168, | |
"reconciliationTime": 3.1826166666666666, | |
"totalTime": 11.899416666666667 | |
}, | |
{ | |
"id": "ec580aaa-cd87-4e09-964b-9e9713785518", | |
"hash": "0xc8b77b4827de2c4390382e145247c5f334d44d64dd01fc97f6cfc1decf38afd9", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:40 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:42 GMT", | |
"monitoringTime": 9.672466666666667, | |
"reconciliationTime": 0.03105, | |
"totalTime": 9.703516666666667 | |
}, | |
{ | |
"id": "ca76809c-27bb-4617-9520-aae9599ec2e9", | |
"hash": "0xb2ce31267a1991a6968ce87cb8d223329d422249e55eb436b5f12a09ddc8f67b", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:35 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:37 GMT", | |
"monitoringTime": 9.5942, | |
"reconciliationTime": 0.038566666666666666, | |
"totalTime": 9.632766666666667 | |
}, | |
{ | |
"id": "8dbf0ddd-cf15-4c28-b091-0944c21e2e14", | |
"hash": "0xc107b52e4b7290f90caea2626fcec92d152170ca3c4f41a9ab328b75f92c710e", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:55:14 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:55:14 GMT", | |
"monitoringTime": 19.246916666666667, | |
"reconciliationTime": 0.00255, | |
"totalTime": 19.249466666666667 | |
}, | |
{ | |
"id": "a559e36d-372c-4f41-8399-08e4d5d80785", | |
"hash": "0x6c568a274e3e1786367aa5ae86ebe236268e09771d4644c06a2d257b289a32a0", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:37 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:39 GMT", | |
"monitoringTime": 9.620916666666666, | |
"reconciliationTime": 0.032683333333333335, | |
"totalTime": 9.6536 | |
}, | |
{ | |
"id": "d0555026-e7ab-4752-89e7-f5c5a5cdb8d5", | |
"hash": "0xed523a9064473de512547312a6c2c230e377849502a532e04d59742c3a28a669", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:24 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:52 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:44:54 GMT", | |
"monitoringTime": 8.4741, | |
"reconciliationTime": 0.03671666666666667, | |
"totalTime": 8.510816666666667 | |
}, | |
{ | |
"id": "7a35986f-8f63-4f9c-9097-83f27b785108", | |
"hash": "0x56906211425411da23d98fe51bb7ceb23cfc019f03d68f8d8b74186973e5524a", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:24 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:56 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:58 GMT", | |
"monitoringTime": 9.5335, | |
"reconciliationTime": 0.0399, | |
"totalTime": 9.5734 | |
}, | |
{ | |
"id": "e1a268e6-d3f5-46a2-8818-1eae4b9fd377", | |
"hash": "0xadbfb16dd247bbbae2b574188498011e17f6a247ed587f6bc76590bf7d757a9a", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:24 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:54:47 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:54:48 GMT", | |
"monitoringTime": 18.399866666666668, | |
"reconciliationTime": 0.0045, | |
"totalTime": 18.404366666666668 | |
}, | |
{ | |
"id": "3d1193a6-00c3-454c-afb2-4ca20c41ca75", | |
"hash": "0x25b91161c0ea821f863df5b140be2882bc21601c7dd70ed124d2ed1a12faba07", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:24 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:44:40 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:44:42 GMT", | |
"monitoringTime": 8.273316666666666, | |
"reconciliationTime": 0.0334, | |
"totalTime": 8.306716666666667 | |
}, | |
{ | |
"id": "c3930203-8662-4484-afae-8e219353e3a1", | |
"hash": "0xd6770b4e936c822f4f82a289db47ca17800693dea328343a76616eb06fbe8ef1", | |
"confirmedAt": "Wed, 29 Nov 2023 02:36:24 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:57 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:01 GMT", | |
"monitoringTime": 9.56515, | |
"reconciliationTime": 0.05803333333333333, | |
"totalTime": 9.623183333333333 | |
}, | |
{ | |
"id": "7fe498fa-8074-40c3-8c53-2fb4db6b9dd5", | |
"hash": "0xb818940b833947d8bba742f2e4436d3529931593ba16cfd3bfb2caa92249f73f", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:46:42 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:44 GMT", | |
"monitoringTime": 9.704883333333333, | |
"reconciliationTime": 0.030016666666666667, | |
"totalTime": 9.7349 | |
}, | |
{ | |
"id": "d63a249d-1217-4cd8-aee4-31511d94d64b", | |
"hash": "0x95e57e2b2a5938fce6a19f7e9515e536ca5d26cf18d844e8b1ceaa65d2c11d16", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:46:42 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:44 GMT", | |
"monitoringTime": 9.715633333333333, | |
"reconciliationTime": 0.033166666666666664, | |
"totalTime": 9.7488 | |
}, | |
{ | |
"id": "69644724-d677-4693-a642-afa8a38c4ab8", | |
"hash": "0x5d46521885b9f339c31a196f8ace4f38130d5fed173e02efacd92ea938618851", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:46:24 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:25 GMT", | |
"monitoringTime": 9.400716666666666, | |
"reconciliationTime": 0.029216666666666665, | |
"totalTime": 9.429933333333333 | |
}, | |
{ | |
"id": "8cf3c78b-4bf9-482f-a3cc-0e67110d0deb", | |
"hash": "0xd9ec42b8f037aa928d317e06ba61e3d3cd5f834ad8a72fba118e8591de00f9c9", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:46:38 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:40 GMT", | |
"monitoringTime": 9.643683333333334, | |
"reconciliationTime": 0.030583333333333334, | |
"totalTime": 9.674266666666666 | |
}, | |
{ | |
"id": "null", | |
"hash": "0x855da7ff5e60e9ddc28c457f29ea174125dab7512a489dbcfa907d805fbac221", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:00 GMT", | |
"foundAt": "0", | |
"reconciledAt": "0", | |
"monitoringTime": 999999, | |
"reconciliationTime": 999999, | |
"totalTime": 999999 | |
}, | |
{ | |
"id": "c911c7fa-21a2-4e82-a532-ffb371130676", | |
"hash": "0xeb50be1908cdb068af4710f4b91e1cb7abb185450ddd3151aa17fcd666e3c778", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:45:59 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:46:01 GMT", | |
"monitoringTime": 8.383466666666667, | |
"reconciliationTime": 0.043416666666666666, | |
"totalTime": 8.426883333333333 | |
}, | |
{ | |
"id": "null", | |
"hash": "0x919a263bb3faea550b07ac91eaa5bfb1eb8470e03493a9c428e683daaba50611", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "0", | |
"reconciledAt": "0", | |
"monitoringTime": 999999, | |
"reconciliationTime": 999999, | |
"totalTime": 999999 | |
}, | |
{ | |
"id": "88b73800-6ec4-486e-a289-60349034b263", | |
"hash": "0x3eed24b9197939469fd4e376a0ee0fe81e3cf2dd18eba070a39f29d61a37dbea", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:41 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:52 GMT", | |
"monitoringTime": 5.087983333333334, | |
"reconciliationTime": 3.1849166666666666, | |
"totalTime": 8.2729 | |
}, | |
{ | |
"id": "42cf027b-0b6e-4f26-b52e-3030159d9cb4", | |
"hash": "0x9856f1a5d4f17b8f8833dd4faa3496a26d31e833e9edcfed681d60d055da2b91", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:47:30 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:32 GMT", | |
"monitoringTime": 9.915383333333333, | |
"reconciliationTime": 0.031066666666666666, | |
"totalTime": 9.94645 | |
}, | |
{ | |
"id": "34b18890-9bc3-4113-810e-e121ca2c7186", | |
"hash": "0x08185ea8924c320a2092cd1292d080ece58051e81e5c18504541e8ec20e92f56", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:39 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:45:49 GMT", | |
"monitoringTime": 5.052883333333333, | |
"reconciliationTime": 3.1776333333333335, | |
"totalTime": 8.230516666666666 | |
}, | |
{ | |
"id": "5a465716-21d0-4e78-a481-7898986b520f", | |
"hash": "0x0fd1235418f598a8f64982d87651efdf37767d14e9a6da3f1d832ccb7fb2c127", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:47:43 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:45 GMT", | |
"monitoringTime": 10.117583333333334, | |
"reconciliationTime": 0.03241666666666667, | |
"totalTime": 10.15 | |
}, | |
{ | |
"id": "null", | |
"hash": "0xf6d7b9eee549ad3f4c89c32b38ce528089ca9f8321875e5f7128a6aefc2ac0be", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "0", | |
"reconciledAt": "0", | |
"monitoringTime": 999999, | |
"reconciliationTime": 999999, | |
"totalTime": 999999 | |
}, | |
{ | |
"id": "10d11977-1c4c-47c1-b0f3-1992b8b52673", | |
"hash": "0xf78a19d749fa7ccb91032468e2bf0c24ee5ade3abdd07fae46bec865a8d70c33", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:42:40 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:42:42 GMT", | |
"monitoringTime": 5.066883333333333, | |
"reconciliationTime": 0.0364, | |
"totalTime": 5.103283333333334 | |
}, | |
{ | |
"id": "41e0ec4e-660b-46d8-8b68-51de3ec01644", | |
"hash": "0x5a3d13d3c624df909f490ef2f0feafb35cb39e6fa2faced1ca11a2c6a0e471d6", | |
"confirmedAt": "Wed, 29 Nov 2023 02:38:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:46:22 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:51:34 GMT", | |
"monitoringTime": 8.38015, | |
"reconciliationTime": 5.1955, | |
"totalTime": 13.57565 | |
}, | |
{ | |
"id": "db2c19af-ada7-4003-be06-e40936d08633", | |
"hash": "0x738c165d0928300f704f429d9717b9feca181d88626068f40ca966306a8ccee5", | |
"confirmedAt": "Wed, 29 Nov 2023 02:38:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:47:37 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:39 GMT", | |
"monitoringTime": 9.632633333333333, | |
"reconciliationTime": 0.0297, | |
"totalTime": 9.662333333333333 | |
}, | |
{ | |
"id": "a2103e81-8abe-4bd7-b83d-d0215284d6ae", | |
"hash": "0x49303c88376d6ef7ba55bd9e3cb531a2c99c79f3afe368f977030948103ab22a", | |
"confirmedAt": "Wed, 29 Nov 2023 02:38:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:47:39 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:41 GMT", | |
"monitoringTime": 9.664433333333333, | |
"reconciliationTime": 0.034833333333333334, | |
"totalTime": 9.699266666666666 | |
}, | |
{ | |
"id": "82eacfbf-98e9-446c-b05a-472f0ac28721", | |
"hash": "0xae191c42948936f9c6985559c4faa2d34677823592ec0a08fe4aa599924fc2cc", | |
"confirmedAt": "Wed, 29 Nov 2023 02:38:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:47:29 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:32 GMT", | |
"monitoringTime": 9.4986, | |
"reconciliationTime": 0.042133333333333335, | |
"totalTime": 9.540733333333334 | |
}, | |
{ | |
"id": "605a3d18-89cb-414b-ad0c-67cc0024cebb", | |
"hash": "0xc06fb729a966398245416eb8e5f5d2e764f970ba020dc0a3cee8a92ddcc4af3c", | |
"confirmedAt": "Wed, 29 Nov 2023 02:38:00 GMT", | |
"foundAt": "Wed, 29 Nov 2023 02:47:38 GMT", | |
"reconciledAt": "Wed, 29 Nov 2023 02:47:40 GMT", | |
"monitoringTime": 9.647916666666667, | |
"reconciliationTime": 0.03175, | |
"totalTime": 9.679666666666666 | |
} | |
], | |
"failedReconciliationMetric": [ | |
{ | |
"id": "null", | |
"hash": "0x855da7ff5e60e9ddc28c457f29ea174125dab7512a489dbcfa907d805fbac221", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:00 GMT", | |
"foundAt": "0", | |
"reconciledAt": "0", | |
"monitoringTime": 999999, | |
"reconciliationTime": 999999, | |
"totalTime": 999999 | |
}, | |
{ | |
"id": "null", | |
"hash": "0x919a263bb3faea550b07ac91eaa5bfb1eb8470e03493a9c428e683daaba50611", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "0", | |
"reconciledAt": "0", | |
"monitoringTime": 999999, | |
"reconciliationTime": 999999, | |
"totalTime": 999999 | |
}, | |
{ | |
"id": "null", | |
"hash": "0xf6d7b9eee549ad3f4c89c32b38ce528089ca9f8321875e5f7128a6aefc2ac0be", | |
"confirmedAt": "Wed, 29 Nov 2023 02:37:36 GMT", | |
"foundAt": "0", | |
"reconciledAt": "0", | |
"monitoringTime": 999999, | |
"reconciliationTime": 999999, | |
"totalTime": 999999 | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/data/deposits-load-test-29-11-2023_09-33-failedData.json","entries":[{"id":"7aUx.json","timestamp":1701226746461}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/activities/testing.ts","entries":[{"id":"SRtT.ts","timestamp":1700365862662},{"id":"5cLg.ts","source":"Workspace Edit","timestamp":1700379724805},{"id":"jWPt.ts","timestamp":1700453057823}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/litecoin/common/hermesClient.ts","entries":[{"id":"Bzjk.ts","source":"Workspace Edit","timestamp":1696045802425},{"id":"nqLW.ts","timestamp":1696046034287},{"id":"McEH.ts","timestamp":1696046138509},{"id":"GWyX.ts","timestamp":1696046271550}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/ProcessSuspendedDepositsText.hbs","entries":[{"id":"s1hI.hbs","source":"searchReplace.source","timestamp":1694664209223},{"id":"8dEr.hbs","source":"undoRedo.source","timestamp":1694664272556},{"id":"IZtP.hbs","source":"searchReplace.source","timestamp":1694664297565},{"id":"jzgj.hbs","source":"searchReplace.source","timestamp":1694664350016},{"id":"IG28.hbs","timestamp":1694664486409},{"id":"ItBx.hbs","source":"undoRedo.source","timestamp":1694664487940},{"id":"cpfg.hbs","source":"searchReplace.source","timestamp":1694710068457}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/routeConstant.ts","entries":[{"id":"idDV.ts","timestamp":1702527851880}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/balance.ts","entries":[{"id":"odN2.ts","timestamp":1696305557342}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/nonce/redisNonceTracker.ts","entries":[{"id":"VKwn.ts","timestamp":1698390340146},{"id":"8LK8.ts","timestamp":1699589105251},{"id":"mUh0.ts","timestamp":1699589131332},{"id":"pAnO.ts","timestamp":1703059403449},{"id":"ErlJ.ts","timestamp":1703059594715},{"id":"U8U0.ts","timestamp":1703059612514}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/fortrisLoadTest-1.ts","entries":[{"id":"3fSx.ts","timestamp":1701478102737},{"id":"ewhF.ts","timestamp":1701478164814}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/featureFlags/index.ts","entries":[{"id":"NeqG.ts","timestamp":1693465053674}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/welcomeEmailText.hbs","entries":[{"id":"jowz.hbs","timestamp":1694654837232}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/AutoTopUpGasFeeFailure.hbs","entries":[{"id":"x8mw.hbs","timestamp":1694659434842},{"id":"6GuY.hbs","timestamp":1694659448975},{"id":"95tH.hbs","timestamp":1694659475074},{"id":"gmsJ.hbs","timestamp":1694666041742},{"id":"gRWz.hbs","source":"searchReplace.source","timestamp":1694710068607},{"id":"BFHQ.hbs","source":"searchReplace.source","timestamp":1694710085444}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/LowInternalAssetBalance.hbs","entries":[{"id":"DuNa.hbs","timestamp":1695006248820},{"id":"5RMz.hbs","timestamp":1695006288144},{"id":"apko.hbs","timestamp":1695006328464},{"id":"6Efu.hbs","timestamp":1695006350718},{"id":"axIg.hbs","timestamp":1698998588715}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/hermes-codepipeline/route53.tf","entries":[{"id":"Rvf6.tf","timestamp":1697099941610}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/litecoin/createAddress.ts","entries":[{"id":"4ux1.ts","timestamp":1695102458581},{"id":"qg5b.ts","timestamp":1695102503285},{"id":"d5KJ.ts","timestamp":1695103265217},{"id":"rOhG.ts","timestamp":1695103276396},{"id":"kRCQ.ts","timestamp":1695634319251},{"id":"N3p4.ts","timestamp":1695634774295},{"id":"ZLdh.ts","source":"Workspace Edit","timestamp":1695634793245},{"id":"YBMt.ts","timestamp":1695635087930},{"id":"JkNe.ts","timestamp":1695680837550},{"id":"NbGX.ts","timestamp":1695681960797},{"id":"86IY.ts","timestamp":1695681979667},{"id":"54tr.ts","timestamp":1695682007862},{"id":"zo6F.ts","timestamp":1695682020065},{"id":"iKWX.ts","timestamp":1695682121812},{"id":"K58N.ts","timestamp":1695682211860},{"id":"69rj.ts","timestamp":1695682304895},{"id":"24q6.ts","timestamp":1695682317519},{"id":"OF9H.ts","timestamp":1695683771206},{"id":"qcio.ts","timestamp":1695684839969},{"id":"VRFY.ts","timestamp":1695693518816},{"id":"Xb8r.ts","timestamp":1695704930737},{"id":"Svcg.ts","timestamp":1695705398502},{"id":"idjN.ts","timestamp":1695705425219},{"id":"b2YJ.ts","timestamp":1695705443803},{"id":"AbPD.ts","timestamp":1695705457831},{"id":"G1tB.ts","timestamp":1695705470645},{"id":"r0dm.ts","timestamp":1695716560655},{"id":"Vkns.ts","timestamp":1695716575158},{"id":"clgl.ts","timestamp":1695716819816},{"id":"PN6f.ts","timestamp":1695716857312},{"id":"yrps.ts","source":"Workspace Edit","timestamp":1695716875386},{"id":"xcR0.ts","timestamp":1695717380135},{"id":"f21d.ts","timestamp":1695717395145},{"id":"efdG.ts","source":"undoRedo.source","timestamp":1695717401509},{"id":"gQ7Y.ts","timestamp":1695717409405},{"id":"bxNR.ts","timestamp":1695803074309},{"id":"LXbh.ts","timestamp":1695803135146},{"id":"UaWn.ts","timestamp":1695819372195},{"id":"2zZn.ts","timestamp":1695849324624},{"id":"L1Co.ts","timestamp":1695849341137},{"id":"70lV.ts","timestamp":1695850151781},{"id":"chRX.ts","timestamp":1695853800941},{"id":"J9Iu.ts","timestamp":1695854511379},{"id":"CPfz.ts","timestamp":1695870092966},{"id":"QSuO.ts","timestamp":1695870177069},{"id":"dX4k.ts","timestamp":1695870337898},{"id":"iFu1.ts","source":"Workspace Edit","timestamp":1695870371443},{"id":"4N5O.ts","timestamp":1695873285445},{"id":"RHlx.ts","source":"Workspace Edit","timestamp":1695873289202},{"id":"PDbk.ts","source":"Workspace Edit","timestamp":1696045893646}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/pages/customer/portfolios/new/RequestErrorModal.tsx","entries":[{"id":"JkDA.tsx","timestamp":1693227389288},{"id":"cuJm.tsx","timestamp":1693227542807},{"id":"J1FJ.tsx","source":"Workspace Edit","timestamp":1693227577723},{"id":"6tA7.tsx","timestamp":1693227583075},{"id":"8uDZ.tsx","timestamp":1693228042447},{"id":"iH28.tsx","timestamp":1693228098227},{"id":"r68X.tsx","source":"Workspace Edit","timestamp":1693228103464},{"id":"FHh6.tsx","timestamp":1693228142920},{"id":"zS1X.tsx","timestamp":1693228179311},{"id":"0zZD.tsx","timestamp":1693228383046},{"id":"oxqi.tsx","timestamp":1693228409851},{"id":"yxy3.tsx","source":"Workspace Edit","timestamp":1693228432511},{"id":"cNzr.tsx","timestamp":1693228455100},{"id":"3GmA.tsx","timestamp":1693228468857},{"id":"crRF.tsx","timestamp":1693228495735},{"id":"NJ28.tsx","timestamp":1693228523623},{"id":"Jn8g.tsx","source":"Workspace Edit","timestamp":1693228528497}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/s3/cryptocore-production/data.tf","entries":[{"id":"coUY.tf","timestamp":1696838710314}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/api/v1/cardano/controller.ts","entries":[{"id":"dgJ7.ts","timestamp":1700712485333},{"id":"tyRi.ts","timestamp":1700715301956},{"id":"ioAc.ts","source":"Workspace Edit","timestamp":1700727901251},{"id":"KEht.ts","source":"searchReplace.source","timestamp":1700727914048}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/README.md","entries":[{"id":"GUW2.md","timestamp":1701233942881},{"id":"J72B.md","timestamp":1701235013743}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/nonce/__test__/redisNonceTracker.test.ts","entries":[{"id":"vRtw.ts","timestamp":1703059410539},{"id":"23Lz.ts","timestamp":1703059599689}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/themes/custom/tungstenTheme.ts","entries":[{"id":"28Qc.ts","source":"Workspace Edit","timestamp":1693992822768}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/Outputs%3A.js","entries":[{"id":"l3tN.js","source":"textFileCreate.source","timestamp":1697517967882}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/CryptoAccountRequestResult.hbs","entries":[{"id":"qcaU.hbs","timestamp":1694661629705},{"id":"7goA.hbs","timestamp":1694661649493},{"id":"IpHs.hbs","timestamp":1694661665566},{"id":"T9p5.hbs","source":"searchReplace.source","timestamp":1694710068458},{"id":"BF55.hbs","source":"searchReplace.source","timestamp":1694710085381}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/configurations/institutions/fortris.config.ts","entries":[{"id":"MkoH.ts","timestamp":1697430249675},{"id":"apMP.ts","source":"Workspace Edit","timestamp":1697431399726},{"id":"tSg3.ts","timestamp":1697431847653},{"id":"aUsg.ts","timestamp":1697440357165},{"id":"Kb6L.ts","timestamp":1697440381579},{"id":"Com9.ts","timestamp":1697440397619},{"id":"NWKG.ts","timestamp":1697440422933},{"id":"0vMC.ts","timestamp":1697442429107},{"id":"nz6O.ts","timestamp":1698915379020},{"id":"p37a.ts","timestamp":1699002847695},{"id":"fcSq.ts","timestamp":1699002870380},{"id":"Pl6a.ts","timestamp":1699364062211},{"id":"PFNz.ts","timestamp":1699505670259},{"id":"p0BK.ts","timestamp":1699505748562},{"id":"Qg4y.ts","timestamp":1699506739739},{"id":"lHHi.ts","timestamp":1699506930841},{"id":"RSPt.ts","timestamp":1699507287309},{"id":"dvS6.ts","timestamp":1699518018086},{"id":"sIuE.ts","timestamp":1699518862964},{"id":"Oy0x.ts","timestamp":1699520038114},{"id":"LCNQ.ts","timestamp":1699520132227},{"id":"kuRj.ts","timestamp":1702529908211},{"id":"oUWm.ts","timestamp":1703140512713}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/ecr/cryptocore_production/main.tf","entries":[{"id":"KUV0.tf","timestamp":1696826664686}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/zeus-codepipeline/data.tf","entries":[{"id":"daRO.tf","source":"searchReplace.source","timestamp":1696893797780}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/webportal-codepipeline/backend.tf","entries":[{"id":"dMOV.tf","source":"searchReplace.source","timestamp":1696893797784}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/di/controllers/bindings.ts","entries":[{"id":"ZEPf.ts","timestamp":1702965287824}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/featureFlags/featureFlagService.ts","entries":[{"id":"w5km.ts","timestamp":1693464489927},{"id":"j088.ts","timestamp":1693464508369},{"id":"k34w.ts","timestamp":1693464639923},{"id":"kwdg.ts","timestamp":1693464653002},{"id":"nav4.ts","timestamp":1693464760407},{"id":"L06K.ts","source":"Workspace Edit","timestamp":1693464789909},{"id":"C80C.ts","timestamp":1693464827499},{"id":"f2YZ.ts","timestamp":1693464899421},{"id":"SqVa.ts","timestamp":1693465001566},{"id":"T0XR.ts","timestamp":1693465015698},{"id":"V0k9.ts","timestamp":1693465440829},{"id":"ouKi.ts","timestamp":1693465467705},{"id":"plsl.ts","timestamp":1693465540319},{"id":"0KyT.ts","timestamp":1693465586967},{"id":"NKvv.ts","timestamp":1693465617788},{"id":"mTnm.ts","timestamp":1693465628576},{"id":"QKGQ.ts","timestamp":1693471355663},{"id":"NP4F.ts","timestamp":1694759957659},{"id":"kEVz.ts","timestamp":1694760401285},{"id":"j4as.ts","timestamp":1694760448097},{"id":"YA3e.ts","timestamp":1694760466040},{"id":"vXd5.ts","timestamp":1694760518098},{"id":"Ptxb.ts","source":"Workspace Edit","timestamp":1694760616407},{"id":"yEDa.ts","timestamp":1695781980101},{"id":"4VZR.ts","timestamp":1695782351100}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"server": { | |
"port": 5020, | |
"authorizationPolicyPrivateKey": "", | |
"transactionPolicyPrivateKey": "", | |
"corporateActionPolicyPrivateKey": "" | |
}, | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "poseidon", | |
"password": "", | |
"defaultVhost": "cryptocore", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.450939.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/cryptocore_production/poseidon", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/poseidon/src/configurations/config.cryptocore_production.json","entries":[{"id":"RUgo.json","timestamp":1697096756293},{"id":"07Co.json","timestamp":1697096775317},{"id":"KQOj.json","source":"renamed.source","timestamp":1697096791345}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"server": { | |
"port": 5020, | |
"authorizationPolicyPrivateKey": "", | |
"transactionPolicyPrivateKey": "", | |
"corporateActionPolicyPrivateKey": "" | |
}, | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "poseidon", | |
"password": "", | |
"defaultVhost": "cryptocore", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.450939.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/cryptocore_production/poseidon", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"server": { | |
"port": 5020, | |
"authorizationPolicyPrivateKey": "", | |
"transactionPolicyPrivateKey": "", | |
"corporateActionPolicyPrivateKey": "" | |
}, | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "poseidon", | |
"password": "", | |
"defaultVhost": "cryptocore", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.multicoin.dev.01123581.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/cryptocore_staging/poseidon", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/litecoin/hermesClient.ts","entries":[{"id":"qefO.ts","timestamp":1695716849596},{"id":"yjO1.ts","timestamp":1695716866075},{"id":"fvHM.ts","timestamp":1695716922146},{"id":"6R9K.ts","timestamp":1695850361811},{"id":"ikKz.ts","timestamp":1695850378905},{"id":"T4CI.ts","timestamp":1695850397065},{"id":"TCP5.ts","timestamp":1695851287297},{"id":"WJ3N.ts","timestamp":1695851309889},{"id":"1fJS.ts","timestamp":1695851403651},{"id":"dd1h.ts","timestamp":1695851425140},{"id":"huyF.ts","timestamp":1695851476299},{"id":"fRvK.ts","timestamp":1695852080298},{"id":"W2Tb.ts","timestamp":1695852487598},{"id":"Kv9n.ts","timestamp":1695852918927},{"id":"wUWk.ts","timestamp":1695852934361},{"id":"tHqd.ts","timestamp":1695852973646},{"id":"cn3B.ts","timestamp":1695852994754},{"id":"v3SI.ts","source":"undoRedo.source","timestamp":1695853020941},{"id":"a4lk.ts","timestamp":1695853108804},{"id":"T4a5.ts","source":"undoRedo.source","timestamp":1695853197840},{"id":"GEeb.ts","timestamp":1695853224859},{"id":"UE0V.ts","source":"undoRedo.source","timestamp":1695853309572},{"id":"YR9m.ts","timestamp":1695854476114},{"id":"j1Hd.ts","timestamp":1695860430566},{"id":"1e2L.ts","timestamp":1695870055952},{"id":"QDBJ.ts","timestamp":1695872440802},{"id":"8NN1.ts","source":"undoRedo.source","timestamp":1695873296021},{"id":"xo4Q.ts","timestamp":1695873313366},{"id":"DquD.ts","timestamp":1695875147499},{"id":"QDz3.ts","source":"Workspace Edit","timestamp":1695875198168},{"id":"vJwi.ts","timestamp":1695875218030}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/WelcomeToNewOrg.hbs","entries":[{"id":"Uv80.hbs","timestamp":1694654492016},{"id":"WZQ4.hbs","timestamp":1694654655289},{"id":"l1as.hbs","source":"searchReplace.source","timestamp":1694710068458},{"id":"z7G6.hbs","source":"searchReplace.source","timestamp":1694710085448}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/workflows/monitorDeployingTransactions.ts","entries":[{"id":"o5mb.ts","timestamp":1692147427347},{"id":"ts8Y.ts","timestamp":1692147439129},{"id":"j0Qe.ts","timestamp":1692147627711},{"id":"6jaz.ts","timestamp":1692147641455},{"id":"dTyI.ts","timestamp":1692147684422},{"id":"pcEh.ts","timestamp":1692148540496},{"id":"ctdd.ts","timestamp":1692148846846},{"id":"z0RK.ts","timestamp":1692148921417},{"id":"0Bhb.ts","timestamp":1692148944804},{"id":"LTjQ.ts","timestamp":1692149066986},{"id":"mSrN.ts","timestamp":1692149096550},{"id":"MvFc.ts","timestamp":1692154320498},{"id":"rCEJ.ts","timestamp":1692155120625},{"id":"9g79.ts","timestamp":1692155168327},{"id":"MQT0.ts","timestamp":1692155181898},{"id":"bVPr.ts","source":"Renaming childWorkflow to withdrawalWorkflow","timestamp":1692155408653},{"id":"OiIN.ts","timestamp":1692155424109},{"id":"CW2i.ts","timestamp":1692155469453},{"id":"tJU6.ts","timestamp":1692155607090},{"id":"lasI.ts","timestamp":1692160511541},{"id":"Ri8y.ts","source":"Workspace Edit","timestamp":1692161020667},{"id":"muu8.ts","timestamp":1692161021456},{"id":"W4X8.ts","timestamp":1692161721609},{"id":"MNLd.ts","timestamp":1692162086830},{"id":"kRSv.ts","timestamp":1692162252006},{"id":"Gmrf.ts","timestamp":1692164569641},{"id":"sbIt.ts","timestamp":1692164582899},{"id":"8We6.ts","timestamp":1692164601171},{"id":"xhyb.ts","timestamp":1692164769461},{"id":"aAtE.ts","timestamp":1692165125801},{"id":"rFt0.ts","timestamp":1692172726779},{"id":"EcGh.ts","timestamp":1692173064899},{"id":"tUJL.ts","timestamp":1692173731958},{"id":"M25V.ts","timestamp":1692173881087},{"id":"AZVU.ts","timestamp":1692173902262},{"id":"Jv6v.ts","timestamp":1692174102465},{"id":"XMgC.ts","timestamp":1692174128741},{"id":"HQMD.ts","timestamp":1692176214658},{"id":"R6TP.ts","timestamp":1692187036103},{"id":"TAoZ.ts","timestamp":1692187055986},{"id":"flCN.ts","timestamp":1692189084071},{"id":"WZcf.ts","timestamp":1692191098951},{"id":"v7Ff.ts","timestamp":1692193548014},{"id":"J6f4.ts","timestamp":1693297648754},{"id":"xMU4.ts","timestamp":1693297667428},{"id":"c3Mp.ts","timestamp":1693299008010},{"id":"ttao.ts","timestamp":1693379408231},{"id":"9KT4.ts","timestamp":1695113804264},{"id":"neNQ.ts","timestamp":1695113865523},{"id":"UOcr.ts","source":"renamed.source","timestamp":1695258033317}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/db/revert/add-trigger-to-prevent-balance-mismatch.sql","entries":[{"id":"YFSf.sql","timestamp":1703034863439}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/Sidebar/MidOfficerSidebar.tsx","entries":[{"id":"MJdN.tsx","source":"undoRedo.source","timestamp":1702970715587},{"id":"2jys.tsx","timestamp":1702970978962},{"id":"fg3h.tsx","source":"undoRedo.source","timestamp":1702973855056},{"id":"yuJR.tsx","timestamp":1702973879693},{"id":"fdAV.tsx","timestamp":1702974091336},{"id":"nIrh.tsx","timestamp":1702974180227},{"id":"a3zo.tsx","timestamp":1702974204917},{"id":"VeL0.tsx","timestamp":1702974404172},{"id":"Fjk8.tsx","timestamp":1702974433011}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/activities/__test__/CryptoExchangeRates.test.ts","entries":[{"id":"p3CT.ts","source":"Rename cryptoExchangeRate.test.ts to cryptoExchangeRates.test.ts","timestamp":1693452215785},{"id":"EqKm.ts","timestamp":1693452277096},{"id":"IEai.ts","timestamp":1693452306328},{"id":"FQae.ts","timestamp":1693452443960},{"id":"tbR7.ts","timestamp":1693472385388},{"id":"l9qU.ts","timestamp":1693473307183},{"id":"oJ9p.ts","source":"Workspace Edit","timestamp":1693473843869},{"id":"oLoC.ts","timestamp":1693473958612},{"id":"xlEt.ts","timestamp":1693473999205},{"id":"0uia.ts","timestamp":1693474571957},{"id":"ZnWW.ts","timestamp":1693474587319},{"id":"GSrj.ts","timestamp":1693474630451},{"id":"hNSS.ts","timestamp":1693474654743},{"id":"eheX.ts","timestamp":1693474759688},{"id":"kRgZ.ts","timestamp":1693474790021},{"id":"asse.ts","timestamp":1693474807858},{"id":"TL2t.ts","timestamp":1693474877848},{"id":"WrYD.ts","timestamp":1693474974270},{"id":"EDVc.ts","source":"Workspace Edit","timestamp":1693475183108},{"id":"LldU.ts","timestamp":1693475190449},{"id":"6i0e.ts","timestamp":1693475479132},{"id":"tZgX.ts","timestamp":1693475503780},{"id":"dj4r.ts","timestamp":1693475668867},{"id":"wIHC.ts","timestamp":1693475793367},{"id":"M61N.ts","source":"Workspace Edit","timestamp":1693475839229},{"id":"o8Or.ts","timestamp":1693475866137},{"id":"5P4S.ts","timestamp":1693475877377},{"id":"x5Fl.ts","timestamp":1693475960665},{"id":"9Tr7.ts","timestamp":1693475983100},{"id":"RlXG.ts","timestamp":1693476010239},{"id":"ZEyG.ts","source":"Workspace Edit","timestamp":1694077107409},{"id":"Odm9.ts","source":"Renaming CryptoExchangeRateService to CryptoExchangeRatesService","timestamp":1694084972645},{"id":"Jjd6.ts","source":"renamed.source","timestamp":1694139553672}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/casper/__test__/index.test.ts","entries":[{"id":"FJWB.ts","timestamp":1697791470858},{"id":"6FKC.ts","timestamp":1697791534100},{"id":"kXOw.ts","timestamp":1697791544742},{"id":"2e2m.ts","timestamp":1697791647723},{"id":"tQfz.ts","timestamp":1697791681359}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/datadog/cryptocore-production/locals.tf","entries":[{"id":"BrJu.tf","source":"searchReplace.source","timestamp":1696923624127}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v1/internal/crypto/transactions/controller.ts","entries":[{"id":"cAg2.ts","timestamp":1703043167802},{"id":"Xsza.ts","timestamp":1703043416610},{"id":"1aas.ts","timestamp":1703043610529},{"id":"4RKg.ts","timestamp":1703043623442},{"id":"ym7u.ts","timestamp":1703043638574},{"id":"Gl4V.ts","timestamp":1703043656712},{"id":"cSdh.ts","timestamp":1703043673791},{"id":"wq6y.ts","timestamp":1703043844576},{"id":"s9ko.ts","timestamp":1703043865962},{"id":"SrHA.ts","timestamp":1703043880000},{"id":"vZIj.ts","timestamp":1703043894384},{"id":"faw0.ts","timestamp":1703043912685},{"id":"d4r2.ts","timestamp":1703043925571},{"id":"dy35.ts","timestamp":1703043943217},{"id":"O4at.ts","timestamp":1703043964237},{"id":"aXB9.ts","timestamp":1703043985055},{"id":"IP9J.ts","timestamp":1703044109007},{"id":"1y9U.ts","timestamp":1703044139423},{"id":"9CAz.ts","timestamp":1703044160807},{"id":"Ndm1.ts","timestamp":1703044306777}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/athena-codepipeline/route53.tf","entries":[{"id":"eG99.tf","timestamp":1697099955273}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/mq/cryptocore-staging/main.tf","entries":[{"id":"o5bn.tf","timestamp":1697063807348},{"id":"dzrS.tf","timestamp":1697063827662},{"id":"Fuyh.tf","timestamp":1697064631449}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/users/interface.ts","entries":[{"id":"jRax.ts","source":"Delete interface.ts","timestamp":1692879381065},{"id":"mtSW.ts","timestamp":1692879386528},{"id":"BA3Q.ts","timestamp":1693286756309}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/tatum/tatumClient.ts","entries":[{"id":"xwVe.ts","timestamp":1695979499218},{"id":"MBQb.ts","timestamp":1696911231452},{"id":"CLwR.ts","timestamp":1696911268444},{"id":"igCf.ts","source":"Workspace Edit","timestamp":1696911272438},{"id":"MYTD.ts","timestamp":1696911323364},{"id":"gh53.ts","timestamp":1696911334896},{"id":"M882.ts","source":"Workspace Edit","timestamp":1696911374528},{"id":"WUBx.ts","timestamp":1696913024304},{"id":"jaju.ts","source":"Workspace Edit","timestamp":1696913032023},{"id":"bWEk.ts","timestamp":1696916435492},{"id":"0FW0.ts","source":"Workspace Edit","timestamp":1696916444777},{"id":"Qcoz.ts","timestamp":1697505487600},{"id":"VBhj.ts","timestamp":1698314352052}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/AUCReportVisualize/AUCReportVisualize.tsx","entries":[{"id":"3KgL.tsx","timestamp":1696919988707}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/baseTheme/tungsten/base.hbs","entries":[{"id":"PGqQ.hbs","timestamp":1694169792387},{"id":"o4gg.hbs","source":"moved.source","timestamp":1694169861292}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/web_portal/app/javascript/themes/fortris.js","entries":[{"id":"6hCR.js","timestamp":1694576258429}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/http-rest-client/http/blockCypher.http","entries":[{"id":"YheI.http","timestamp":1695977001422},{"id":"LPxj.http","timestamp":1695977378901},{"id":"c3m9.http","timestamp":1695977409207},{"id":"RwiN.http","timestamp":1695977421785},{"id":"h2MR.http","timestamp":1695977438246},{"id":"qxy4.http","timestamp":1695977689469},{"id":"1ImN.http","timestamp":1695978342095},{"id":"PLH8.http","timestamp":1695978379947},{"id":"ZV9i.http","timestamp":1695978472018},{"id":"O9wg.http","timestamp":1696049403955},{"id":"91ne.http","timestamp":1696049836861},{"id":"VuBX.http","timestamp":1696049847076},{"id":"eTId.http","timestamp":1696211546375},{"id":"Porg.http","timestamp":1696211570246},{"id":"1oBH.http","timestamp":1696307641870},{"id":"ZgdQ.http","timestamp":1696307685371},{"id":"4iQA.http","timestamp":1696307739697},{"id":"2Xgw.http","timestamp":1696311239034},{"id":"NGZ6.http","timestamp":1696311274066},{"id":"j3pO.http","source":"undoRedo.source","timestamp":1696311278000},{"id":"78Sy.http","timestamp":1696311475105},{"id":"PKnH.http","timestamp":1696313446011},{"id":"susj.http","timestamp":1696313524668},{"id":"iEgP.http","timestamp":1696314187729},{"id":"iYon.http","timestamp":1696320483611},{"id":"ODEj.http","timestamp":1696320545517},{"id":"g9uw.http","timestamp":1696320704338},{"id":"5pPA.http","timestamp":1696320728782},{"id":"tGyu.http","timestamp":1696336103085},{"id":"MFRK.http","timestamp":1696337251858},{"id":"uYmK.http","timestamp":1696395039944},{"id":"mwtR.http","timestamp":1696395151254},{"id":"Fc3L.http","timestamp":1696395167579},{"id":"npSd.http","timestamp":1696407320385},{"id":"jgI3.http","timestamp":1696411020387},{"id":"IWas.http","timestamp":1696411169849},{"id":"vN9v.http","timestamp":1696469129817},{"id":"vMqh.http","timestamp":1696495101994},{"id":"4DiK.http","timestamp":1698314596332},{"id":"8Bz5.http","timestamp":1699257990041},{"id":"lVI2.http","timestamp":1700000972457},{"id":"T7Dj.http","timestamp":1700000986767},{"id":"FUks.http","timestamp":1700001000805},{"id":"diXG.http","timestamp":1700001117531},{"id":"XqSa.http","timestamp":1700001128056},{"id":"j2PV.http","timestamp":1700001156398},{"id":"RNsx.http","timestamp":1700001166690},{"id":"xA8w.http","timestamp":1700004198850},{"id":"8Tkl.http","timestamp":1700007581642},{"id":"Veo6.http","timestamp":1701235008116}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeEmailRegeneratedCode", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n style=\"margin: 0;mso-line-height-rule: exactly;background-color: #f2f2f2;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n\n<head>\n <meta charset=\"utf-8\" /> <!-- utf-8 works for most cases -->\n <meta name=\"viewport\" content=\"width=device-width\" /> <!-- Forcing initial-scale shouldn't be necessary -->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <!-- Use the latest (edge) version of IE rendering engine -->\n <meta name=\"x-apple-disable-message-reformatting\" /> <!-- Disable auto-scale in iOS 10 Mail entirely -->\n <meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" />\n <title>Propine</title> <!-- The title tag shows in email notifications, like Android 4.4. -->\n</head>\n\n<body>\n <div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\">\n <header\n style=\"background-color: #2c2d6b;display: flex;justify-content: space-between;padding: 25px 60px;align-items: center;\">\n <img alt=\"logo-propine-left\" height=\"40\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" /> <img alt=\"logo-propine-right\"\n height=\"75\" src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" />\n </header>\n <div style=\"font-size: 20px\">\n <div style=\"padding: 20px 60px\">\n <div style=\"border: 1px solid #d5d5d5; padding: 20px\">\n <p style=\"text-align: center; font-size: 28px; font-weight: bold\"> Hello from Propine! </p>\n <p style=\"color: red\"> A New Welcome Code has been generated for your user account </p> <p>Now it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. </p> <div>\n <table style=\"margin: 0 auto; min-width: 500px\">\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 1 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Go to <a href=\"{{login_url}}\" target=\"_blank\">Crypto custody web portal login page</a> </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 2 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Select \"First time login\" in the options </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 3 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;white-space: nowrap;\">\n Enter your email address <b>{{email}}</b> as the user id </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;background: #f2f2f2;text-align: center;line-height: 76px;\">\n 4 </div>\n </td>\n <td>\n <div style=\"background: #f2f2f2; padding: 15px 20px\"> Enter \"<b>{{welcome_code}}</b>\" as the welcome\n code. </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 5 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Set up your password to access the portal </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 6 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 30px;\">\n Set up 2-factor authentication. You will need to use an authentication app such as Google\n Authenticator or Authy. </div>\n </td>\n </tr>\n </table>\n <p>*Please note this regenerated welcome code will expire in <span style=\"color: red\">24 Hours</span> (i.e. {{expired_date}}). </p> <p>Please use the '<a style=\"color: #4376ff\" href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a>' link on the First Time Login page to regenerate a welcome code after this date.</p> </div>\n <div\n style=\"width: 380px;height: 40px;background: #f2f2f2;line-height: 40px;text-align: center;border: solid 1px black;margin: 40px auto;\">\n <a href=\"{{login_url}}\" target=\"_blank\" style=\"text-decoration: none; color: black\">Setup Your Web Portal\n Account</a>\n </div>\n <p> Once you set up your login details, your account will be active, and you will be able to access the\n portal. </p>\n <p> You can find the role which you have been assigned to under Web portal > User roles. Please contact your\n administrator for any modifications to your role. </p>\n <p>For any questions/concerns reach us at <a style=\"color: #4376ff\" href=\"mailto:[email protected]\">[email protected]</a> We are delighted to welcome you to the portal.</p>\n </div>\n <div style=\"margin-top: 60px; margin-bottom: 180px\">\n <div style=\"text-align: right; font-size: 20px; margin-bottom: 10px\"> See you online </div>\n <div style=\"text-align: right; font-size: 24px; font-weight: 400\"> Propine Team </div>\n </div>\n </div> <footer>\n <div\n style=\"background-color: #2c2d6b;color: white;display: flex;justify-content: space-between;align-items: center;padding: 20px 60px;font-size: 24px;\">\n <span>© 2022 Propine. All Rights Reserved</span> <span><a href=\"https://propine.com/\"\n style=\"color: #ffffff; text-decoration: none\">www.propine.com</a></span> <span\n style=\"display: inline-block;display: flex;justify-content: space-around;min-width: 200px;\">\n <a href=\"https://www.linkedin.com/company/propine/mycompany/\"> <img alt=\"linkedIn\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" /> </a> <a\n href=\"https://twitter.com/PropineGlobal\"> <img alt=\"twitter\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" /> </a> <a\n href=\"https://medium.com/propineglobal\"> <img alt=\"medium\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" /> </a> </span>\n </div>\n </footer>\n </div>\n</body>\n\n</html>", | |
"TextPart": "Hello from Propine!\nA new Welcome Code has been generated for your user account.\nNow it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. \n1. Go to {{login_url}} \n2. Select \"First time login\" in the options \n3. Enter your email address {{email}} as the user id \n4. Enter \"{{welcome_code}}\" as the welcome code.\n5. Set up your password to access the portal \n6. Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy. \n*Please note this regenerated welcome code will expire in 24 Hours (i.e. {{expired_date}}).\nPlease use the {{welcome_code_url}} link on the First Time Login page to regenerate a welcome code after this date.\nOnce you set up your login details, your account will be active, and you will be able to access the portal.\nYou can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.\nFor any questions/concerns reach us at [email protected] We are delighted to welcome you to the portal." | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeEmailRegeneratedCode", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n style=\"margin: 0;mso-line-height-rule: exactly;background-color: #f2f2f2;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n\n<head>\n <meta charset=\"utf-8\" /> <!-- utf-8 works for most cases -->\n <meta name=\"viewport\" content=\"width=device-width\" /> <!-- Forcing initial-scale shouldn't be necessary -->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <!-- Use the latest (edge) version of IE rendering engine -->\n <meta name=\"x-apple-disable-message-reformatting\" /> <!-- Disable auto-scale in iOS 10 Mail entirely -->\n <meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" />\n <title>Propine</title> <!-- The title tag shows in email notifications, like Android 4.4. -->\n</head>\n\n<body>\n <div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\">\n <header\n style=\"background-color: #2c2d6b;display: flex;justify-content: space-between;padding: 25px 60px;align-items: center;\">\n <img alt=\"logo-propine-left\" height=\"40\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" /> <img alt=\"logo-propine-right\"\n height=\"75\" src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" />\n </header>\n <div style=\"font-size: 20px\">\n <div style=\"padding: 20px 60px\">\n <div style=\"border: 1px solid #d5d5d5; padding: 20px\">\n <p style=\"text-align: center; font-size: 28px; font-weight: bold\"> Hello from Propine! </p>\n <p style=\"color: red\"> A New Welcome Code has been generated for your user account </p> <p>Now it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. </p> <div>\n <table style=\"margin: 0 auto; min-width: 500px\">\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 1 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Go to <a href=\"{{login_url}}\" target=\"_blank\">Crypto custody web portal login page</a> </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 2 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Select \"First time login\" in the options </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 3 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;white-space: nowrap;\">\n Enter your email address <b>{{email}}</b> as the user id </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;background: #f2f2f2;text-align: center;line-height: 76px;\">\n 4 </div>\n </td>\n <td>\n <div style=\"background: #f2f2f2; padding: 15px 20px\"> Enter \"<b>{{welcome_code}}</b>\" as the welcome\n code. </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 5 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Set up your password to access the portal </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 6 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 30px;\">\n Set up 2-factor authentication. You will need to use an authentication app such as Google\n Authenticator or Authy. </div>\n </td>\n </tr>\n </table>\n <p>*Please note this regenerated welcome code will expire in <span style=\"color: red\">24 Hours</span> (i.e. {{expired_date}}). </p> <p>Please use the '<a style=\"color: #4376ff\" href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a>' link on the First Time Login page to regenerate a welcome code after this date.</p> </div>\n <div\n style=\"width: 380px;height: 40px;background: #f2f2f2;line-height: 40px;text-align: center;border: solid 1px black;margin: 40px auto;\">\n <a href=\"{{login_url}}\" target=\"_blank\" style=\"text-decoration: none; color: black\">Setup Your Web Portal\n Account</a>\n </div>\n <p> Once you set up your login details, your account will be active, and you will be able to access the\n portal. </p>\n <p> You can find the role which you have been assigned to under Web portal > User roles. Please contact your\n administrator for any modifications to your role. </p>\n <p>For any questions/concerns reach us at <a style=\"color: #4376ff\" href=\"mailto:[email protected]\">[email protected]</a> We are delighted to welcome you to the portal.</p>\n </div>\n <div style=\"margin-top: 60px; margin-bottom: 180px\">\n <div style=\"text-align: right; font-size: 20px; margin-bottom: 10px\"> See you online </div>\n <div style=\"text-align: right; font-size: 24px; font-weight: 400\"> Propine Team </div>\n </div>\n </div> <footer>\n <div\n style=\"background-color: #2c2d6b;color: white;display: flex;justify-content: space-between;align-items: center;padding: 20px 60px;font-size: 24px;\">\n <span>© 2022 Propine. All Rights Reserved</span> <span><a href=\"https://propine.com/\"\n style=\"color: #ffffff; text-decoration: none\">www.propine.com</a></span> <span\n style=\"display: inline-block;display: flex;justify-content: space-around;min-width: 200px;\">\n <a href=\"https://www.linkedin.com/company/propine/mycompany/\"> <img alt=\"linkedIn\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" /> </a> <a\n href=\"https://twitter.com/PropineGlobal\"> <img alt=\"twitter\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" /> </a> <a\n href=\"https://medium.com/propineglobal\"> <img alt=\"medium\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" /> </a> </span>\n </div>\n </footer>\n </div>\n</body>\n\n</html>", | |
"TextPart": "Hello from Propine!\nA new Welcome Code has been generated for your user account.\nNow it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. \n1. Go to {{login_url}} \n2. Select \"First time login\" in the options \n3. Enter your email address {{email}} as the user id \n4. Enter \"{{welcome_code}}\" as the welcome code.\n5. Set up your password to access the portal \n6. Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy. \n*Please note this regenerated welcome code will expire in 24 Hours (i.e. {{expired_date}}).\nPlease use the {{welcome_code_url}} link on the First Time Login page to regenerate a welcome code after this date.\nOnce you set up your login details, your account will be active, and you will be able to access the portal.\nYou can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.\nFor any questions/concerns reach us at [email protected] We are delighted to welcome you to the portal." | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/templates/welcomeEmailRegeneratedCode.json","entries":[{"id":"Nsj4.json","timestamp":1691991239474},{"id":"Z0VA.json","timestamp":1691992537752},{"id":"5dXG.json","timestamp":1691996331833},{"id":"8ukP.json","timestamp":1691996437371},{"id":"NcT7.json","timestamp":1692244070431}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeEmailRegeneratedCode", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n style=\"margin: 0;mso-line-height-rule: exactly;background-color: #f2f2f2;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n\n<head>\n <meta charset=\"utf-8\" /> <!-- utf-8 works for most cases -->\n <meta name=\"viewport\" content=\"width=device-width\" /> <!-- Forcing initial-scale shouldn't be necessary -->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <!-- Use the latest (edge) version of IE rendering engine -->\n <meta name=\"x-apple-disable-message-reformatting\" /> <!-- Disable auto-scale in iOS 10 Mail entirely -->\n <meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" />\n <title>Propine</title> <!-- The title tag shows in email notifications, like Android 4.4. -->\n</head>\n\n<body>\n <div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\">\n <header\n style=\"background-color: #2c2d6b;display: flex;justify-content: space-between;padding: 25px 60px;align-items: center;\">\n <img alt=\"logo-propine-left\" height=\"40\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" /> <img alt=\"logo-propine-right\"\n height=\"75\" src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" />\n </header>\n <div style=\"font-size: 20px\">\n <div style=\"padding: 20px 60px\">\n <div style=\"border: 1px solid #d5d5d5; padding: 20px\">\n <p style=\"text-align: center; font-size: 28px; font-weight: bold\"> Hello from Propine! </p>\n <p style=\"color: red\"> A New Welcome Code has been generated for your user account {{user_name}}</p> <p>Now it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. </p> <div>\n <table style=\"margin: 0 auto; min-width: 500px\">\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 1 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Go to <a href=\"{{login_url}}\" target=\"_blank\">Crypto custody web portal login page</a> </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 2 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Select \"First time login\" in the options </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 3 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;white-space: nowrap;\">\n Enter your email address <b>{{email}}</b> as the user id </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;background: #f2f2f2;text-align: center;line-height: 76px;\">\n 4 </div>\n </td>\n <td>\n <div style=\"background: #f2f2f2; padding: 15px 20px\"> Enter \"<b>{{welcome_code}}</b>\" as the welcome\n code. </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 5 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Set up your password to access the portal </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 6 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 30px;\">\n Set up 2-factor authentication. You will need to use an authentication app such as Google\n Authenticator or Authy. </div>\n </td>\n </tr>\n </table>\n <p>*Please note this regenerated welcome code will expire in <span style=\"color: red\">24 Hours</span> (i.e. {{expired_date}}). </p> <p>Please use the ‘<a style=\"color: #4376ff\" href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a>’ link on the First Time Login page to regenerate a welcome code after this date.</p> </div>\n <div\n style=\"width: 380px;height: 40px;background: #f2f2f2;line-height: 40px;text-align: center;border: solid 1px black;margin: 40px auto;\">\n <a href=\"{{login_url}}\" target=\"_blank\" style=\"text-decoration: none; color: black\">Setup Your Web Portal\n Account</a>\n </div>\n <p> Once you set up your login details, your account will be active, and you will be able to access the\n portal. </p>\n <p> You can find the role which you have been assigned to under Web portal > User roles. Please contact your\n administrator for any modifications to your role. </p>\n <p>For any questions/concerns reach us at <a style=\"color: #4376ff\" href=\"mailto:[email protected]\">[email protected]</a> We are delighted to welcome you to the portal.</p>\n </div>\n <div style=\"margin-top: 60px; margin-bottom: 180px\">\n <div style=\"text-align: right; font-size: 20px; margin-bottom: 10px\"> See you online </div>\n <div style=\"text-align: right; font-size: 24px; font-weight: 400\"> Propine Team </div>\n </div>\n </div> <footer>\n <div\n style=\"background-color: #2c2d6b;color: white;display: flex;justify-content: space-between;align-items: center;padding: 20px 60px;font-size: 24px;\">\n <span>© 2022 Propine. All Rights Reserved</span> <span><a href=\"https://propine.com/\"\n style=\"color: #ffffff; text-decoration: none\">www.propine.com</a></span> <span\n style=\"display: inline-block;display: flex;justify-content: space-around;min-width: 200px;\">\n <a href=\"https://www.linkedin.com/company/propine/mycompany/\"> <img alt=\"linkedIn\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" /> </a> <a\n href=\"https://twitter.com/PropineGlobal\"> <img alt=\"twitter\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" /> </a> <a\n href=\"https://medium.com/propineglobal\"> <img alt=\"medium\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" /> </a> </span>\n </div>\n </footer>\n </div>\n</body>\n\n</html>", | |
"TextPart": "Hello from Propine!\nA new Welcome Code has been generated for your user account.\nNow it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. \n1. Go to {{login_url}} \n2. Select \"First time login\" in the options \n3. Enter your email address {{email}} as the user id \n4. Enter \"{{welcome_code}}\" as the welcome code.\n5. Set up your password to access the portal \n6. Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy. \n*Please note this regenerated welcome code will expire in 24 Hours (i.e. {{expired_date}}).\nPlease use the {{welcome_code_url}} link on the First Time Login page to regenerate a welcome code after this date.\nOnce you set up your login details, your account will be active, and you will be able to access the portal.\nYou can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.\nFor any questions/concerns reach us at [email protected] We are delighted to welcome you to the portal." | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeEmailRegeneratedCode", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n style=\"margin: 0;mso-line-height-rule: exactly;background-color: #f2f2f2;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n\n<head>\n <meta charset=\"utf-8\" /> <!-- utf-8 works for most cases -->\n <meta name=\"viewport\" content=\"width=device-width\" /> <!-- Forcing initial-scale shouldn't be necessary -->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <!-- Use the latest (edge) version of IE rendering engine -->\n <meta name=\"x-apple-disable-message-reformatting\" /> <!-- Disable auto-scale in iOS 10 Mail entirely -->\n <meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" />\n <title>Propine</title> <!-- The title tag shows in email notifications, like Android 4.4. -->\n</head>\n\n<body>\n <div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\">\n <header\n style=\"background-color: #2c2d6b;display: flex;justify-content: space-between;padding: 25px 60px;align-items: center;\">\n <img alt=\"logo-propine-left\" height=\"40\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" /> <img alt=\"logo-propine-right\"\n height=\"75\" src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" />\n </header>\n <div style=\"font-size: 20px\">\n <div style=\"padding: 20px 60px\">\n <div style=\"border: 1px solid #d5d5d5; padding: 20px\">\n <p style=\"text-align: center; font-size: 28px; font-weight: bold\"> Hello from Propine! </p>\n <p style=\"color: red\"> A New Welcome Code has been generated for your user account </p> <p>Now it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. </p> <div>\n <table style=\"margin: 0 auto; min-width: 500px\">\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 1 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Go to <a href=\"{{login_url}}\" target=\"_blank\">Crypto custody web portal login page</a> </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 2 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Select \"First time login\" in the options </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 3 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;white-space: nowrap;\">\n Enter your email address <b>{{email}}</b> as the user id </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;background: #f2f2f2;text-align: center;line-height: 76px;\">\n 4 </div>\n </td>\n <td>\n <div style=\"background: #f2f2f2; padding: 15px 20px\"> Enter \"<b>{{welcome_code}}</b>\" as the welcome\n code. </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 5 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Set up your password to access the portal </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 6 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 30px;\">\n Set up 2-factor authentication. You will need to use an authentication app such as Google\n Authenticator or Authy. </div>\n </td>\n </tr>\n </table>\n <p>*Please note this regenerated welcome code will expire in <span style=\"color: red\">24 Hours</span> (i.e. {{expired_date}}). </p> <p>Please use the ‘<a style=\"color: #4376ff\" href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a>’ link on the First Time Login page to regenerate a welcome code after this date.</p> </div>\n <div\n style=\"width: 380px;height: 40px;background: #f2f2f2;line-height: 40px;text-align: center;border: solid 1px black;margin: 40px auto;\">\n <a href=\"{{login_url}}\" target=\"_blank\" style=\"text-decoration: none; color: black\">Setup Your Web Portal\n Account</a>\n </div>\n <p> Once you set up your login details, your account will be active, and you will be able to access the\n portal. </p>\n <p> You can find the role which you have been assigned to under Web portal > User roles. Please contact your\n administrator for any modifications to your role. </p>\n <p>For any questions/concerns reach us at <a style=\"color: #4376ff\" href=\"mailto:[email protected]\">[email protected]</a> We are delighted to welcome you to the portal.</p>\n </div>\n <div style=\"margin-top: 60px; margin-bottom: 180px\">\n <div style=\"text-align: right; font-size: 20px; margin-bottom: 10px\"> See you online </div>\n <div style=\"text-align: right; font-size: 24px; font-weight: 400\"> Propine Team </div>\n </div>\n </div> <footer>\n <div\n style=\"background-color: #2c2d6b;color: white;display: flex;justify-content: space-between;align-items: center;padding: 20px 60px;font-size: 24px;\">\n <span>© 2022 Propine. All Rights Reserved</span> <span><a href=\"https://propine.com/\"\n style=\"color: #ffffff; text-decoration: none\">www.propine.com</a></span> <span\n style=\"display: inline-block;display: flex;justify-content: space-around;min-width: 200px;\">\n <a href=\"https://www.linkedin.com/company/propine/mycompany/\"> <img alt=\"linkedIn\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" /> </a> <a\n href=\"https://twitter.com/PropineGlobal\"> <img alt=\"twitter\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" /> </a> <a\n href=\"https://medium.com/propineglobal\"> <img alt=\"medium\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" /> </a> </span>\n </div>\n </footer>\n </div>\n</body>\n\n</html>", | |
"TextPart": "Hello from Propine!\nA new Welcome Code has been generated for your user account.\nNow it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. \n1. Go to {{login_url}} \n2. Select \"First time login\" in the options \n3. Enter your email address {{email}} as the user id \n4. Enter \"{{welcome_code}}\" as the welcome code.\n5. Set up your password to access the portal \n6. Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy. \n*Please note this regenerated welcome code will expire in 24 Hours (i.e. {{expired_date}}).\nPlease use the {{welcome_code_url}} link on the First Time Login page to regenerate a welcome code after this date.\nOnce you set up your login details, your account will be active, and you will be able to access the portal.\nYou can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.\nFor any questions/concerns reach us at [email protected] We are delighted to welcome you to the portal." | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeEmailRegeneratedCode", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n style=\"margin: 0;mso-line-height-rule: exactly;background-color: #f2f2f2;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n\n<head>\n <meta charset=\"utf-8\" /> <!-- utf-8 works for most cases -->\n <meta name=\"viewport\" content=\"width=device-width\" /> <!-- Forcing initial-scale shouldn't be necessary -->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <!-- Use the latest (edge) version of IE rendering engine -->\n <meta name=\"x-apple-disable-message-reformatting\" /> <!-- Disable auto-scale in iOS 10 Mail entirely -->\n <meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" />\n <title>Propine</title> <!-- The title tag shows in email notifications, like Android 4.4. -->\n</head>\n\n<body>\n <div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\">\n <header\n style=\"background-color: #2c2d6b;display: flex;justify-content: space-between;padding: 25px 60px;align-items: center;\">\n <img alt=\"logo-propine-left\" height=\"40\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" /> <img alt=\"logo-propine-right\"\n height=\"75\" src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" />\n </header>\n <div style=\"font-size: 20px\">\n <div style=\"padding: 20px 60px\">\n <div style=\"border: 1px solid #d5d5d5; padding: 20px\">\n <p style=\"text-align: center; font-size: 28px; font-weight: bold\"> Hello from Propine! </p>\n <p style=\"color: red\"> A New Welcome Code has been generated for your user account </p> <p>Now it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. </p> <div>\n <table style=\"margin: 0 auto; min-width: 500px\">\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 1 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Go to <a href=\"{{login_url}}\" target=\"_blank\">Crypto custody web portal login page</a> </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 2 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Select \"First time login\" in the options </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 3 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;white-space: nowrap;\">\n Enter your email address <b>{{email}}</b> as the user id </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;background: #f2f2f2;text-align: center;line-height: 76px;\">\n 4 </div>\n </td>\n <td>\n <div style=\"background: #f2f2f2; padding: 15px 20px\"> Enter \"<b>{{welcome_code}}</b>\" as the welcome\n code. </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 5 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 60px;\">\n Set up your password to access the portal </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px;height: 60px;background: #f2f2f2;text-align: center;line-height: 60px;\">\n 6 </div>\n </td>\n <td>\n <div style=\"height: 60px;background: #f2f2f2;padding: 0 20px;line-height: 30px;\">\n Set up 2-factor authentication. You will need to use an authentication app such as Google\n Authenticator or Authy. </div>\n </td>\n </tr>\n </table>\n <p>*Please note this regenerated welcome code will expire in <span style=\"color: red\">24 Hours</span> (i.e. {{expired_date}}). </p> <p>Please use the ‘<a style=\"color: #4376ff\" href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a>’ link on the First Time Login page to regenerate a welcome code after this date.</p> </div>\n <div\n style=\"width: 380px;height: 40px;background: #f2f2f2;line-height: 40px;text-align: center;border: solid 1px black;margin: 40px auto;\">\n <a href=\"{{login_url}}\" target=\"_blank\" style=\"text-decoration: none; color: black\">Setup Your Web Portal\n Account</a>\n </div>\n <p> Once you set up your login details, your account will be active, and you will be able to access the\n portal. </p>\n <p> You can find the role which you have been assigned to under Web portal > User roles. Please contact your\n administrator for any modifications to your role. </p>\n <p>For any questions/concerns reach us at <a style=\"color: #4376ff\" href=\"mailto:[email protected]\">[email protected]</a> We are delighted to welcome you to the portal.</p>\n </div>\n <div style=\"margin-top: 60px; margin-bottom: 180px\">\n <div style=\"text-align: right; font-size: 20px; margin-bottom: 10px\"> See you online </div>\n <div style=\"text-align: right; font-size: 24px; font-weight: 400\"> Propine Team </div>\n </div>\n </div> <footer>\n <div\n style=\"background-color: #2c2d6b;color: white;display: flex;justify-content: space-between;align-items: center;padding: 20px 60px;font-size: 24px;\">\n <span>© 2022 Propine. All Rights Reserved</span> <span><a href=\"https://propine.com/\"\n style=\"color: #ffffff; text-decoration: none\">www.propine.com</a></span> <span\n style=\"display: inline-block;display: flex;justify-content: space-around;min-width: 200px;\">\n <a href=\"https://www.linkedin.com/company/propine/mycompany/\"> <img alt=\"linkedIn\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" /> </a> <a\n href=\"https://twitter.com/PropineGlobal\"> <img alt=\"twitter\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" /> </a> <a\n href=\"https://medium.com/propineglobal\"> <img alt=\"medium\"\n src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" /> </a> </span>\n </div>\n </footer>\n </div>\n</body>\n\n</html>", | |
"TextPart": "Hello from Propine!\nA new Welcome Code has been generated for your user account.\nNow it is time to set up your passwords and 2-factor authentication for accessing the Propine Web Portal. \n1. Go to {{login_url}} \n2. Select \"First time login\" in the options \n3. Enter your email address {{email}} as the user id \n4. Enter \"{{welcome_code}}\" as the welcome code.\n5. Set up your password to access the portal \n6. Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy. \n*Please note this regenerated welcome code will expire in 24 Hours (i.e. {{expired_date}}).\nPlease use the {{welcome_code_url}} link on the First Time Login page to regenerate a welcome code after this date.\nOnce you set up your login details, your account will be active, and you will be able to access the portal.\nYou can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.\nFor any questions/concerns reach us at [email protected] We are delighted to welcome you to the portal." | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/loadtest/fortrisLoadtest.ts","entries":[{"id":"8FC7.ts","timestamp":1698277808392},{"id":"pBIB.ts","timestamp":1698277819587},{"id":"DSx0.ts","timestamp":1698277840742},{"id":"iSFq.ts","timestamp":1698277956477},{"id":"tViO.ts","timestamp":1698279273775},{"id":"SdRW.ts","timestamp":1698279333307},{"id":"kqTN.ts","timestamp":1698279348121},{"id":"gHLb.ts","timestamp":1698279377552},{"id":"H2ju.ts","timestamp":1698279404447},{"id":"hxHO.ts","timestamp":1698279460563},{"id":"A2X1.ts","timestamp":1698287459332},{"id":"lbqw.ts","timestamp":1698289354639},{"id":"tN3o.ts","timestamp":1698289370097},{"id":"3Xw6.ts","timestamp":1698289380697},{"id":"E9iX.ts","timestamp":1698289395239},{"id":"ip9C.ts","timestamp":1698289409248},{"id":"pMpt.ts","timestamp":1698289525331},{"id":"R8B2.ts","timestamp":1698291173972},{"id":"pCdm.ts","timestamp":1698291287126},{"id":"pym6.ts","timestamp":1698291405726},{"id":"2wYC.ts","timestamp":1698291615811},{"id":"NwsW.ts","timestamp":1698291660864},{"id":"Tmor.ts","timestamp":1698291674448},{"id":"zlsR.ts","timestamp":1698291701675},{"id":"Rigt.ts","timestamp":1698291764191},{"id":"rQnH.ts","timestamp":1698291794324},{"id":"9iH7.ts","timestamp":1698291841732},{"id":"XAdY.ts","timestamp":1698291898149},{"id":"Zndt.ts","timestamp":1698291988750},{"id":"xDBv.ts","timestamp":1698292212950},{"id":"8Qbs.ts","timestamp":1698292230010},{"id":"OAPN.ts","timestamp":1698292252022},{"id":"PsSQ.ts","source":"Workspace Edit","timestamp":1698292273199},{"id":"br0e.ts","timestamp":1698292292836},{"id":"yb8r.ts","timestamp":1698292339438},{"id":"pgwV.ts","timestamp":1698292387128},{"id":"T3Ze.ts","timestamp":1698292443064},{"id":"w36I.ts","timestamp":1698292459138},{"id":"0ngd.ts","timestamp":1698292522430},{"id":"hEA4.ts","timestamp":1698292597305},{"id":"7Fic.ts","timestamp":1698292615261},{"id":"rQWX.ts","timestamp":1698292765424},{"id":"oUeE.ts","timestamp":1698292784446},{"id":"N9JC.ts","timestamp":1698292915769},{"id":"udZ7.ts","timestamp":1698293273228},{"id":"3Asv.ts","timestamp":1698293293949},{"id":"8D1g.ts","timestamp":1698293309957},{"id":"icR5.ts","timestamp":1698297335632},{"id":"J3eE.ts","source":"moved.source","timestamp":1698309552742},{"id":"jN2r.ts","source":"renamed.source","timestamp":1698309618411}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/Downloads/hashingHelper.ts","entries":[{"id":"x6G7.ts","timestamp":1694415614462},{"id":"lrM1.ts","timestamp":1694415642337},{"id":"7V6u.ts","timestamp":1694415801126},{"id":"0r40.ts","timestamp":1694422631780},{"id":"FAez.ts","timestamp":1694578309512},{"id":"LhS9.ts","timestamp":1694578326143},{"id":"JbxH.ts","timestamp":1694583200634},{"id":"5XFh.ts","timestamp":1695949358280},{"id":"joiK.ts","timestamp":1697016101005},{"id":"IxZw.ts","timestamp":1697016123797},{"id":"hq9x.ts","timestamp":1697016178482},{"id":"zYzm.ts","timestamp":1697016274492},{"id":"MeLC.ts","source":"undoRedo.source","timestamp":1697016296422},{"id":"sOcf.ts","timestamp":1698219573237},{"id":"HH7S.ts","timestamp":1698219591330},{"id":"6hdI.ts","timestamp":1698286300520},{"id":"H8S2.ts","timestamp":1698721376590},{"id":"BUsD.ts","timestamp":1698722051671},{"id":"3mL5.ts","timestamp":1698722076684},{"id":"1CYf.ts","timestamp":1698722225592},{"id":"vJuu.ts","timestamp":1698722238337},{"id":"UuyG.ts","timestamp":1698722736665},{"id":"Zl2I.ts","timestamp":1698978474792},{"id":"bhMk.ts","timestamp":1698978495830},{"id":"Blit.ts","timestamp":1698978512733},{"id":"QX1Z.ts","timestamp":1702379977065},{"id":"7wI1.ts","timestamp":1702468652112},{"id":"3A5G.ts","timestamp":1702468908242},{"id":"7Qq3.ts","timestamp":1702469079373},{"id":"AYUJ.ts","timestamp":1702469092050},{"id":"EH1V.ts","timestamp":1702519453129},{"id":"cHeO.ts","timestamp":1702520063577},{"id":"G0QA.ts","timestamp":1702526775443},{"id":"Lxql.ts","timestamp":1702526793634},{"id":"oUxP.ts","timestamp":1702526805306},{"id":"Kgr7.ts","timestamp":1702526823575},{"id":"GfEH.ts","timestamp":1702526839621},{"id":"w6KC.ts","timestamp":1702564931307},{"id":"GIdO.ts","timestamp":1702565138904},{"id":"133Y.ts","timestamp":1702565656059}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/validators.ts","entries":[{"id":"W3IW.ts","timestamp":1692761376605}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/ecr/cryptocore_production/backend.tf","entries":[{"id":"ImUr.tf","timestamp":1696826654666}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/monitoring/messageHandler.ts","entries":[{"id":"JRoU.ts","timestamp":1703170858692},{"id":"1HZd.ts","timestamp":1703170884286},{"id":"wl0y.ts","source":"renamed.source","timestamp":1703199591728},{"id":"SVJw.ts","source":"Workspace Edit","timestamp":1703199607349},{"id":"b6Hj.ts","timestamp":1704449429617}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/modules/ecs-codepipeline/taskdef.json.tftpl","entries":[{"id":"tISd.tftpl","timestamp":1694510934339},{"id":"jIsZ.tftpl","timestamp":1698790500701},{"id":"2uQV.tftpl","timestamp":1698790526283},{"id":"XHxn.tftpl","timestamp":1698790989268},{"id":"IBtw.tftpl","timestamp":1698791887426}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/http-rest-client/http/whitelist_account.http","entries":[{"id":"rqNG.http","timestamp":1697004978317},{"id":"RDgH.http","timestamp":1697005130352},{"id":"eyGH.http","timestamp":1697005147172},{"id":"yBkT.http","timestamp":1697005252044},{"id":"HkvG.http","timestamp":1697005531450}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/crypto/transaction/service.ts","entries":[{"id":"6OLD.ts","timestamp":1692794290437},{"id":"NJy0.ts","timestamp":1692794443987},{"id":"pbO0.ts","timestamp":1692794481228},{"id":"bqKP.ts","timestamp":1692794545425},{"id":"BB7h.ts","timestamp":1692794662148},{"id":"mEu7.ts","timestamp":1692794748596},{"id":"gEDy.ts","timestamp":1692794886118},{"id":"xCRI.ts","timestamp":1692795513069},{"id":"mfHy.ts","source":"Workspace Edit","timestamp":1692795517177},{"id":"uwAp.ts","timestamp":1692795681283},{"id":"AWqf.ts","timestamp":1692795774213},{"id":"1rlz.ts","timestamp":1692795993302},{"id":"8WHO.ts","timestamp":1692865006939},{"id":"A5TR.ts","timestamp":1694681544567}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/themes/custom/propineTheme.ts","entries":[{"id":"xCUt.ts","source":"Workspace Edit","timestamp":1693992821385}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/fortris-vpn/fortris_prod.ovpn","entries":[{"id":"WJak.ovpn","timestamp":1697011356707}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/bin/monitorDeployingTransaction.ts","entries":[{"id":"eilt.ts","timestamp":1697506132608},{"id":"NgjH.ts","timestamp":1697518142347},{"id":"SlnI.ts","timestamp":1697520155500},{"id":"vEid.ts","timestamp":1697520166534},{"id":"oHDK.ts","timestamp":1697520711578},{"id":"lkDl.ts","timestamp":1697520750871},{"id":"xFiX.ts","timestamp":1697521820777},{"id":"LgiR.ts","timestamp":1697525205318},{"id":"Dfc8.ts","timestamp":1697525227290},{"id":"IdRA.ts","timestamp":1697525265446},{"id":"4YkX.ts","timestamp":1697525392581},{"id":"rQG2.ts","timestamp":1697527692875},{"id":"Vz7A.ts","timestamp":1697527772758},{"id":"3MLf.ts","timestamp":1697529244065},{"id":"vpq0.ts","timestamp":1698305439298},{"id":"5aZD.ts","timestamp":1699244519251},{"id":"3xe5.ts","timestamp":1702826123840},{"id":"dTUy.ts","timestamp":1702826259833},{"id":"nFbw.ts","timestamp":1703124082526}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/deposit_addresses/unusedDepositAddressDeactivator.ts","entries":[{"id":"hjGk.ts","timestamp":1698306441463},{"id":"SaPY.ts","source":"searchReplace.source","timestamp":1700727914045},{"id":"YDCC.ts","source":"Workspace Edit","timestamp":1700728232469},{"id":"njff.ts","timestamp":1702965544395},{"id":"5cKl.ts","timestamp":1702965561717}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/azure-pipelines.yml","entries":[{"id":"PQlR.yml","timestamp":1694554644903},{"id":"xQ3J.yml","timestamp":1696912755038},{"id":"r5cu.yml","timestamp":1696912789333},{"id":"VhWf.yml","timestamp":1696915420485},{"id":"pmb7.yml","timestamp":1696926641549},{"id":"g31F.yml","timestamp":1696926887894},{"id":"HtCK.yml","timestamp":1697075429468},{"id":"xTwa.yml","timestamp":1697075442994},{"id":"sj7j.yml","timestamp":1697075465678}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/loadtest/midApprove.ts","entries":[{"id":"e6jg.ts","timestamp":1698356744485},{"id":"E3g2.ts","timestamp":1698356958206},{"id":"8HnG.ts","timestamp":1698357005569},{"id":"xodh.ts","timestamp":1698357099411},{"id":"czZI.ts","timestamp":1698357184046},{"id":"Yju6.ts","timestamp":1698357201160},{"id":"O957.ts","timestamp":1698357220393},{"id":"a3NJ.ts","timestamp":1698357237727},{"id":"2LlA.ts","timestamp":1698357288678},{"id":"JLOL.ts","timestamp":1698357316177},{"id":"xAYy.ts","timestamp":1698357336458},{"id":"AW4k.ts","timestamp":1698357357424},{"id":"TNLS.ts","timestamp":1698357380088},{"id":"R2OO.ts","timestamp":1698357398308},{"id":"04wN.ts","timestamp":1698357413851}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/pages/customer/transactions/internal-transfer/steps/Confirmation.tsx","entries":[{"id":"PFgS.tsx","timestamp":1694154687676},{"id":"2JX1.tsx","source":"undoRedo.source","timestamp":1694154750195},{"id":"289q.tsx","timestamp":1694154767232}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/UnlockAccountInstructionsText.hbs","entries":[{"id":"Tx55.hbs","source":"renamed.source","timestamp":1694657120168},{"id":"01uU.hbs","source":"renamed.source","timestamp":1694657123204}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Welcome {{email}}, | |
Your account has been locked due to an excessive number of unsuccessful sign in attempts. | |
Click the link below to unlock your account: {{unlockUrl}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/resourceService.ts","entries":[{"id":"oE1X.ts","timestamp":1694595461136},{"id":"rdJJ.ts","timestamp":1694596063193},{"id":"Rk08.ts","timestamp":1694596088459},{"id":"2WXK.ts","timestamp":1694596113703},{"id":"KR59.ts","timestamp":1694597401599},{"id":"m4th.ts","timestamp":1694597492092},{"id":"0Ryw.ts","timestamp":1694597925510},{"id":"Jeve.ts","timestamp":1694597951820},{"id":"mdwy.ts","timestamp":1694597965001},{"id":"rtqR.ts","timestamp":1694597976496},{"id":"1BAP.ts","timestamp":1694598014320},{"id":"XytJ.ts","timestamp":1694598056126},{"id":"O1sy.ts","timestamp":1694598971354},{"id":"SYMI.ts","timestamp":1694599078851},{"id":"Be1L.ts","timestamp":1694599120053},{"id":"M2G3.ts","timestamp":1694599160905},{"id":"Qjbx.ts","timestamp":1694599235301},{"id":"ACmn.ts","timestamp":1694599251852},{"id":"mOdf.ts","timestamp":1694613207396},{"id":"q6TC.ts","timestamp":1694613318609},{"id":"iA3r.ts","timestamp":1694613356368},{"id":"0mXa.ts","source":"undoRedo.source","timestamp":1694613387956},{"id":"9mFb.ts","timestamp":1694613442403},{"id":"z4Cg.ts","source":"Workspace Edit","timestamp":1694613451776},{"id":"5W8R.ts","timestamp":1694613456827},{"id":"AHUL.ts","timestamp":1694613486085},{"id":"wJZd.ts","source":"undoRedo.source","timestamp":1694613490356},{"id":"ACeO.ts","timestamp":1694613888279},{"id":"ZfR1.ts","timestamp":1694613916483},{"id":"JLpk.ts","source":"Renaming generateContentTemplate to getContentTemplate","timestamp":1694613968001},{"id":"VIzH.ts","source":"Renaming generateHtmlTemplate to getHtmlContentTemplate","timestamp":1694613985874},{"id":"1IbR.ts","timestamp":1694614098198},{"id":"lAqN.ts","source":"undoRedo.source","timestamp":1694614125602},{"id":"VMVE.ts","timestamp":1694614211954},{"id":"GGCt.ts","timestamp":1694614371443},{"id":"glmj.ts","source":"undoRedo.source","timestamp":1694615028676},{"id":"U49l.ts","timestamp":1694615057469},{"id":"WLEY.ts","source":"undoRedo.source","timestamp":1694615155188},{"id":"0Huz.ts","timestamp":1694653835042},{"id":"MUeY.ts","timestamp":1694654237396},{"id":"n75i.ts","timestamp":1694654252290},{"id":"VDzt.ts","timestamp":1694705758418},{"id":"I1VK.ts","source":"undoRedo.source","timestamp":1694705815373},{"id":"dzBc.ts","source":"Renaming generateContentTemplate to getRawTemplate","timestamp":1694705936026},{"id":"XaL0.ts","timestamp":1694705965129},{"id":"8xMZ.ts","timestamp":1694708651958},{"id":"jzEI.ts","timestamp":1694710265555},{"id":"J3sb.ts","timestamp":1694750337406},{"id":"U1Uh.ts","timestamp":1694750509368},{"id":"Kr6o.ts","timestamp":1694750548677}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/AssetTransferRequestText.hbs","entries":[{"id":"Lx3s.hbs","timestamp":1694658967415},{"id":"jf5n.hbs","source":"searchReplace.source","timestamp":1694710068424}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/poseidon-codepipeline/backend.tf","entries":[{"id":"FTx8.tf","source":"searchReplace.source","timestamp":1696893797722}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/portfolios/protocols/portfolioProtocolsServiceGenerator.ts","entries":[{"id":"zZ4r.ts","timestamp":1697439673858}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hermes/src/database.ts","entries":[{"id":"paVz.ts","timestamp":1695851820373},{"id":"Ce6j.ts","timestamp":1698351975038},{"id":"p0x4.ts","timestamp":1698351993071}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/modules/vpc/main.tf","entries":[{"id":"7stf.tf","timestamp":1694572481288},{"id":"Ag2r.tf","source":"undoRedo.source","timestamp":1694572507071}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/polkadot/index.ts","entries":[{"id":"VWCH.ts","timestamp":1696836839733},{"id":"O0Gg.ts","timestamp":1696836925745},{"id":"qycD.ts","timestamp":1696841274381},{"id":"qfOE.ts","source":"undoRedo.source","timestamp":1696841293729},{"id":"dvAO.ts","timestamp":1696841456253},{"id":"zQzN.ts","timestamp":1696841808755},{"id":"U8I8.ts","timestamp":1700723473853},{"id":"XNyM.ts","source":"Workspace Edit","timestamp":1700724293118},{"id":"jXnH.ts","source":"searchReplace.source","timestamp":1700727913963}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/contexts/FeatureServiceContext.tsx","entries":[{"id":"mTDE.tsx","timestamp":1694008423785},{"id":"znNK.tsx","source":"Workspace Edit","timestamp":1694008436430},{"id":"T2VB.tsx","source":"Workspace Edit","timestamp":1694008447893},{"id":"tWeA.tsx","timestamp":1694008465541},{"id":"QK6M.tsx","timestamp":1694145772571},{"id":"TzUR.tsx","timestamp":1694145835534},{"id":"Bh2H.tsx","source":"undoRedo.source","timestamp":1694145863769},{"id":"sclZ.tsx","timestamp":1694145898955},{"id":"WCnr.tsx","timestamp":1694145938232},{"id":"nyaQ.tsx","timestamp":1695729660290},{"id":"7MoB.tsx","timestamp":1695729832691},{"id":"KFBl.tsx","timestamp":1695729878733},{"id":"azTc.tsx","timestamp":1695729892497},{"id":"HkYQ.tsx","timestamp":1695729993792},{"id":"yDGU.tsx","timestamp":1698982383701},{"id":"UvyE.tsx","timestamp":1698986320282}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/bin/emails/processors/nftDepositProcessing.ts","entries":[{"id":"3kl6.ts","timestamp":1696478307273}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-staging/athena-codepipeline/main.tf","entries":[{"id":"zu5S.tf","timestamp":1694497656706},{"id":"QIRq.tf","source":"searchReplace.source","timestamp":1694498513751},{"id":"kNnD.tf","timestamp":1694559168868},{"id":"e4b0.tf","source":"undoRedo.source","timestamp":1694560104464}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/pages/user/welcome-code/index.page.tsx","entries":[{"id":"kvDd.tsx","timestamp":1691988455102},{"id":"w9Wh.tsx","timestamp":1692005347463},{"id":"Tl50.tsx","timestamp":1692005401922},{"id":"JAXs.tsx","timestamp":1692014288132},{"id":"BRZo.tsx","timestamp":1692014324252},{"id":"KrpQ.tsx","timestamp":1692014357491},{"id":"n8M9.tsx","timestamp":1692014385731},{"id":"yeDh.tsx","timestamp":1692014421822},{"id":"x15v.tsx","timestamp":1692014450345},{"id":"4R6F.tsx","timestamp":1692014502647},{"id":"5ciy.tsx","timestamp":1692014529215},{"id":"uGu7.tsx","timestamp":1692014578878},{"id":"MXW9.tsx","timestamp":1692014594327},{"id":"R8pQ.tsx","source":"Workspace Edit","timestamp":1692014601349},{"id":"toHH.tsx","timestamp":1692016022985}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/baseTheme/fortris/header.hbs","entries":[{"id":"cvak.hbs","timestamp":1695008843652},{"id":"vcIs.hbs","timestamp":1695024197898},{"id":"OQEu.hbs","timestamp":1695026139377},{"id":"IJBZ.hbs","timestamp":1695026168917},{"id":"ewGd.hbs","timestamp":1695026266268},{"id":"VjSL.hbs","timestamp":1695028281302},{"id":"LQrl.hbs","timestamp":1695028749128},{"id":"IzEk.hbs","timestamp":1695028895295},{"id":"Psj7.hbs","timestamp":1698199004049}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/LowInternalAssetBalanceText.hbs","entries":[{"id":"If8l.hbs","timestamp":1695006208257}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/IssuerCreationCompletedText.hbs","entries":[{"id":"saCw.hbs","source":"searchReplace.source","timestamp":1694663604328},{"id":"HHjW.hbs","source":"searchReplace.source","timestamp":1694663614982},{"id":"9fBW.hbs","source":"searchReplace.source","timestamp":1694664350016},{"id":"0TdU.hbs","timestamp":1694664393482}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/deposits/reconciliation/states/__test__/sweepReadyState.test.ts","entries":[{"id":"iMrN.ts","timestamp":1700088394188}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/TopUpFailureNotificationText.hbs","entries":[{"id":"SL0E.hbs","source":"searchReplace.source","timestamp":1694664209223},{"id":"Z9x1.hbs","source":"undoRedo.source","timestamp":1694664264521},{"id":"mObf.hbs","source":"searchReplace.source","timestamp":1694664297575},{"id":"yilJ.hbs","source":"searchReplace.source","timestamp":1694664350016},{"id":"zfdz.hbs","timestamp":1694664511499},{"id":"hh9F.hbs","source":"searchReplace.source","timestamp":1694710068458}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/configurations/index.ts","entries":[{"id":"tfmB.ts","timestamp":1692000616560},{"id":"yczF.ts","timestamp":1692011896589},{"id":"IHNh.ts","timestamp":1692240893373},{"id":"OlJB.ts","timestamp":1692240983595},{"id":"DTZN.ts","timestamp":1692352128022},{"id":"2soc.ts","timestamp":1692352146246},{"id":"RVHo.ts","timestamp":1692777201401},{"id":"HWtx.ts","timestamp":1692795073696},{"id":"rlYV.ts","timestamp":1692795098773},{"id":"1HHN.ts","timestamp":1692939739069},{"id":"kv5f.ts","timestamp":1695782233261},{"id":"dv0v.ts","timestamp":1695782328556},{"id":"f8jZ.ts","timestamp":1697428691036},{"id":"S2ge.ts","timestamp":1697429645394},{"id":"fLvm.ts","timestamp":1697429785984},{"id":"mSjy.ts","timestamp":1697429805022},{"id":"w81b.ts","timestamp":1697429911963},{"id":"iTof.ts","timestamp":1697429938149},{"id":"WVuD.ts","source":"undoRedo.source","timestamp":1697429943096},{"id":"lMgI.ts","timestamp":1697429960016},{"id":"0Xma.ts","timestamp":1697431352382},{"id":"cc9A.ts","source":"Workspace Edit","timestamp":1697438214894},{"id":"z6gO.ts","timestamp":1697438302408},{"id":"58Jr.ts","timestamp":1697439723719},{"id":"enkq.ts","timestamp":1699947823893},{"id":"2TwX.ts","timestamp":1702530058048},{"id":"2rP5.ts","timestamp":1702534759793},{"id":"684O.ts","timestamp":1702534835532},{"id":"qeh5.ts","timestamp":1703059922526}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hermes/Dockerfile","entries":[{"id":"hgsI","timestamp":1694494828448},{"id":"v66O","timestamp":1694494863930},{"id":"vcgX","timestamp":1694502868605},{"id":"YIdv","timestamp":1694506153421},{"id":"WANN","timestamp":1694506167179},{"id":"GiAv","timestamp":1694744971711}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/http-rest-client/http/portfolio.http","entries":[{"id":"WiIG.http","timestamp":1692327583536},{"id":"v3U4.http","timestamp":1692327616387},{"id":"WK78.http","timestamp":1692327741985},{"id":"vZ09.http","timestamp":1692327757122},{"id":"Xeys.http","timestamp":1692328473068},{"id":"WJEa.http","timestamp":1692329624293},{"id":"iDES.http","timestamp":1692329844432},{"id":"in1U.http","timestamp":1692331916483},{"id":"cUZX.http","timestamp":1692331956390},{"id":"8Is6.http","timestamp":1692332130256},{"id":"zMSz.http","timestamp":1692332217184},{"id":"Jt0X.http","timestamp":1692332282479}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/profile/__test__/mockCustomer.mock.ts","entries":[{"id":"WqGK.ts","timestamp":1698916666253}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/config-on-secret/cryptocore-production/zeus/main.tf","entries":[{"id":"YiqY.tf","source":"searchReplace.source","timestamp":1696922430884}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/assetTransferRequests/fiatTransferRequestService.ts","entries":[{"id":"U15B.ts","timestamp":1693462711274},{"id":"9YVg.ts","timestamp":1693462763611}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/deposit_addresses/__test__/unusedDepositAddressDeactivator.test.ts","entries":[{"id":"0XMu.ts","timestamp":1702967417427},{"id":"QOuq.ts","timestamp":1702967954634}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/venus-codepipeline/route53.tf","entries":[{"id":"uT8q.tf","timestamp":1697099925628}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform/ecs/modules/apollo-fargate/iam-fargate.tf","entries":[{"id":"yDwi.tf","timestamp":1694481919051},{"id":"pvHv.tf","source":"undoRedo.source","timestamp":1694481932638}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/loadtest/fortris-loadtest.ts","entries":[{"id":"xKwB.ts","timestamp":1701162698421},{"id":"aSAd.ts","timestamp":1701162917445},{"id":"dSxy.ts","timestamp":1701162993092},{"id":"BN1c.ts","timestamp":1701163036023},{"id":"7JFO.ts","timestamp":1701163127260},{"id":"Rn92.ts","timestamp":1701163358324},{"id":"NMoM.ts","timestamp":1701163423649},{"id":"62AX.ts","source":"undoRedo.source","timestamp":1701163490533},{"id":"NL2T.ts","timestamp":1701163511446},{"id":"op1B.ts","timestamp":1701164182468},{"id":"a0qd.ts","timestamp":1701164210917},{"id":"3q1V.ts","timestamp":1701164225175},{"id":"VWgc.ts","timestamp":1701164283583},{"id":"Dosw.ts","timestamp":1701164301838},{"id":"8vqd.ts","timestamp":1701164312809},{"id":"6pnv.ts","timestamp":1701164345376},{"id":"BL6A.ts","timestamp":1701164481824},{"id":"vy3B.ts","source":"Workspace Edit","timestamp":1701196207433},{"id":"3SvB.ts","timestamp":1701198078234},{"id":"irZk.ts","source":"Workspace Edit","timestamp":1701198098357},{"id":"tFWz.ts","timestamp":1701198146674},{"id":"50UF.ts","timestamp":1701198222763},{"id":"WtIJ.ts","timestamp":1701202554008},{"id":"YR5d.ts","timestamp":1701202812817},{"id":"TyE1.ts","timestamp":1701203002394},{"id":"yUn9.ts","timestamp":1701203036095},{"id":"99U8.ts","timestamp":1701203061425},{"id":"QUfK.ts","timestamp":1701203084063},{"id":"71U4.ts","timestamp":1701203096430},{"id":"CsKA.ts","timestamp":1701205254183},{"id":"UBIl.ts","timestamp":1701205599819},{"id":"J712.ts","timestamp":1701206210255},{"id":"9jtl.ts","timestamp":1701206316890},{"id":"GQfe.ts","timestamp":1701206555195},{"id":"G0OM.ts","timestamp":1701220000766},{"id":"f7t3.ts","timestamp":1701220317025},{"id":"EYRq.ts","timestamp":1701220385462},{"id":"oWa4.ts","timestamp":1701220397955},{"id":"GsC0.ts","timestamp":1701220466381},{"id":"2FDM.ts","timestamp":1701220482898},{"id":"OsNM.ts","timestamp":1701220656363},{"id":"RIRE.ts","timestamp":1701220668083},{"id":"I0Fj.ts","timestamp":1701220721294},{"id":"Xa8P.ts","timestamp":1701220757632},{"id":"nDtN.ts","timestamp":1701220789456},{"id":"J6t1.ts","timestamp":1701220799846},{"id":"KbXd.ts","timestamp":1701220918302},{"id":"Hv2k.ts","timestamp":1701220963488},{"id":"rxta.ts","timestamp":1701221123761},{"id":"VMNg.ts","timestamp":1701221225136}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/DetailSections/FileInputDetailSection.tsx","entries":[{"id":"rSAe.tsx","timestamp":1699511231272},{"id":"J2Kz.tsx","source":"undoRedo.source","timestamp":1699511232761}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/portfolios/users/validators.ts","entries":[{"id":"hVhh.ts","timestamp":1692697307870},{"id":"3YVc.ts","timestamp":1692779266927},{"id":"KPiy.ts","timestamp":1692779323786},{"id":"ARWW.ts","timestamp":1692779394572},{"id":"lsp1.ts","timestamp":1692779448482},{"id":"WcNE.ts","timestamp":1692779490543},{"id":"LHYs.ts","timestamp":1692870097346},{"id":"iB3s.ts","timestamp":1692870131755},{"id":"u2G5.ts","timestamp":1692870153834},{"id":"N3JJ.ts","timestamp":1692932187807},{"id":"6qvv.ts","source":"Workspace Edit","timestamp":1692932198738},{"id":"MjPJ.ts","timestamp":1693277006273},{"id":"HjZS.ts","timestamp":1693277112238},{"id":"wM6l.ts","timestamp":1693277248579},{"id":"Rf78.ts","timestamp":1693277314997}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/interfaces/depositAddresses.ts","entries":[{"id":"1JJB.ts","timestamp":1695732295987},{"id":"KHAM.ts","timestamp":1695732325447}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/Modals/ErrorModal.tsx","entries":[{"id":"aYle.tsx","source":"Workspace Edit","timestamp":1693228425688},{"id":"Igj0.tsx","timestamp":1693228428102}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/cryptoWallet/zilliqaWallet.ts","entries":[{"id":"BPNP.ts","timestamp":1700723275658},{"id":"HKSN.ts","source":"searchReplace.source","timestamp":1700727914051},{"id":"VoS0.ts","timestamp":1700728242258}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/NftDepositText.hbs","entries":[{"id":"zgBB.hbs","source":"searchReplace.source","timestamp":1694664209223},{"id":"adSF.hbs","source":"undoRedo.source","timestamp":1694664268616},{"id":"0C33.hbs","source":"searchReplace.source","timestamp":1694664297565},{"id":"6EFT.hbs","source":"searchReplace.source","timestamp":1694664350016},{"id":"Fgme.hbs","timestamp":1694664430923}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/Deposits/DepositTable.tsx","entries":[{"id":"WHD0.tsx","source":"Workspace Edit","timestamp":1693992821470}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/tsconfig.json","entries":[{"id":"NQZQ.json","timestamp":1693474582690}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compilerOptions": { | |
"lib": ["ES2021"], | |
"alwaysStrict": true, | |
"allowJs": true, | |
"outDir": "build", | |
"target": "es6", | |
"types": ["jest", "node", "reflect-metadata"], | |
"module": "commonjs", | |
"resolveJsonModule": true, | |
"moduleResolution": "node", | |
"skipLibCheck": true, | |
"sourceMap": true, | |
"typeRoots": ["node_modules/@types"], | |
"esModuleInterop": true, | |
"baseUrl": ".", | |
"experimentalDecorators": true, | |
"emitDecoratorMetadata": true, | |
"paths": { | |
"@configurations": ["src/configurations"], | |
"@interfaces/*": ["src/interfaces/*"], | |
"@services/*": ["src/services/*"], | |
"@repositories/*": ["src/repositories/*"], | |
"@utils/*": ["src/utils/*"], | |
"@api/*": ["src/api/*"], | |
"@app/*": ["src/*"], | |
"@test/*": ["test/*"] | |
} | |
}, | |
"include": ["src/**/**.ts", "node_modules/ethers", "scripts/**/**.ts"], | |
"exclude": [ | |
"node_modules", | |
"**/*.spec.ts" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/di/services/types.ts","entries":[{"id":"WT32.ts","timestamp":1694069547889},{"id":"cT5r.ts","timestamp":1702965168622}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/configurations/envConfig.ts","entries":[{"id":"QvuG.ts","source":"Move envConfig.ts","timestamp":1699514966249},{"id":"m6D8.ts","timestamp":1701221776625},{"id":"0Aod.ts","timestamp":1701221804902},{"id":"ldo6.ts","timestamp":1701221928065},{"id":"rwc4.ts","timestamp":1701230807385},{"id":"YWwY.ts","timestamp":1701230855442},{"id":"mDBJ.ts","timestamp":1701233651159},{"id":"XNsm.ts","timestamp":1701233670079},{"id":"3Rng.ts","timestamp":1701297777116},{"id":"EPcK.ts","timestamp":1701297842810},{"id":"C2ge.ts","timestamp":1701297967184},{"id":"R0jw.ts","timestamp":1701298054055},{"id":"cMAm.ts","timestamp":1701298120365},{"id":"Clc9.ts","timestamp":1701387168389},{"id":"erQ6.ts","timestamp":1701387187153},{"id":"TF9b.ts","timestamp":1701387228898},{"id":"xckV.ts","timestamp":1701387248735},{"id":"9biX.ts","timestamp":1701387270939},{"id":"PO3z.ts","timestamp":1701387286641},{"id":"tmKi.ts","timestamp":1701387298323},{"id":"aA9i.ts","source":"undoRedo.source","timestamp":1701395026903},{"id":"6qQa.ts","timestamp":1701800239839},{"id":"aVtS.ts","timestamp":1701849715210},{"id":"veJJ.ts","source":"undoRedo.source","timestamp":1701849731039},{"id":"BhzC.ts","timestamp":1702940017392},{"id":"qwcx.ts","timestamp":1702940528064}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/resources/resourceService.ts","entries":[{"id":"04Er.ts","timestamp":1697440188304},{"id":"bYTx.ts","timestamp":1697440223589},{"id":"WK25.ts","timestamp":1697440248985},{"id":"njlb.ts","timestamp":1699002829084}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/workflows/CronWorkflowInterface.ts","entries":[{"id":"w2v7.ts","timestamp":1694067297651}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/deposits/monitor/service.ts","entries":[{"id":"xzY2.ts","timestamp":1695790332651},{"id":"77lp.ts","timestamp":1697787572399},{"id":"Z9Ho.ts","timestamp":1698131463603},{"id":"B9T1.ts","timestamp":1698131477286},{"id":"j5sT.ts","timestamp":1698188653681},{"id":"5Wis.ts","timestamp":1698306304818},{"id":"Ott9.ts","timestamp":1698306452107},{"id":"dY9a.ts","timestamp":1699852398857},{"id":"JEVn.ts","timestamp":1699852446359},{"id":"T40A.ts","timestamp":1699854375829},{"id":"gRml.ts","timestamp":1699961070126},{"id":"f7JN.ts","timestamp":1699961089755},{"id":"XE5N.ts","timestamp":1699961628675},{"id":"vCwl.ts","timestamp":1700019142640},{"id":"4IxX.ts","timestamp":1700019161171},{"id":"78vV.ts","timestamp":1700019219058},{"id":"oEZZ.ts","timestamp":1701142678936}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/web_portal/config/environments/cryptocore_staging.rb","entries":[{"id":"kYR0.rb","timestamp":1694554454966}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/redis/cryptocore-production/backend.tf","entries":[{"id":"5wGd.tf","timestamp":1696838664389}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeToNewOrgV3", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "${html}", | |
"TextPart": "Dear {{username}},\n\nYou have been added to {{account_label}} - {{representation_names}}. Click here ({{login_url}}) to login to Propine Portal.\nRegards\nPropine Team\n\nFor any questions/concerns reach us at [email protected]" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/templates/welcomeToNewOrgV3.json","entries":[{"id":"asQp.json","timestamp":1694157779224}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/jest.config.js","entries":[{"id":"1Dva.js","timestamp":1694517139875}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/.dotenv-password","entries":[{"id":"nzo7","timestamp":1691990203834},{"id":"C0Rq","source":"renamed.source","timestamp":1691990222727}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/services/transfer.ts","entries":[{"id":"kHQc.ts","timestamp":1699514960840},{"id":"k1Uj.ts","timestamp":1701221557946},{"id":"5Dda.ts","timestamp":1701221678431},{"id":"GGcb.ts","timestamp":1701221689169},{"id":"d4qH.ts","timestamp":1701474038974},{"id":"2F7j.ts","timestamp":1701475808511},{"id":"bmlv.ts","timestamp":1701654385045},{"id":"pb4U.ts","timestamp":1702541784196},{"id":"9zVW.ts","timestamp":1702541803782},{"id":"N1bi.ts","timestamp":1702541852077},{"id":"jonC.ts","timestamp":1702542037763},{"id":"XGNG.ts","timestamp":1702543211431},{"id":"lTdS.ts","timestamp":1702543279323},{"id":"WLca.ts","timestamp":1702543351568},{"id":"PeOH.ts","timestamp":1702543451485},{"id":"LyPZ.ts","timestamp":1702602416826},{"id":"9rWL.ts","timestamp":1702603309441}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/ruleEngines/ruleEnginesService.ts","entries":[{"id":"f3ZF.ts","timestamp":1697449158783},{"id":"JPhV.ts","timestamp":1697683774409},{"id":"vrzt.ts","timestamp":1697684751513},{"id":"1zks.ts","source":"Workspace Edit","timestamp":1697684825485},{"id":"wj4q.ts","timestamp":1697684992021},{"id":"4dXd.ts","timestamp":1697685003888},{"id":"soZU.ts","source":"Workspace Edit","timestamp":1697685062018}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hestia/README.md","entries":[{"id":"7ze4.md","timestamp":1692151101692}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/defi_providers/cardano/index.ts","entries":[{"id":"ius6.ts","timestamp":1700723273238},{"id":"djIw.ts","source":"searchReplace.source","timestamp":1700727914048}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/mq/cryptocore-production/backend.tf","entries":[{"id":"wQG4.tf","timestamp":1696838639006}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/CryptoAccountModificationRequestResult.hbs","entries":[{"id":"vfaS.hbs","source":"searchReplace.source","timestamp":1694710068458},{"id":"U2aL.hbs","source":"searchReplace.source","timestamp":1694710085380}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hermes/.env","entries":[{"id":"tFhc","timestamp":1695852054061},{"id":"tiCJ","timestamp":1695852142706},{"id":"mjuy","timestamp":1698352563337}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/scripts/tatum/unsubscribe-existing-tatum-subscriptions.ts","entries":[{"id":"LWIn.ts","timestamp":1703115965106},{"id":"D4My.ts","timestamp":1703116141091}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/bin/emails/processors/welcomeToNewOrg.ts","entries":[{"id":"Hvjl.ts","timestamp":1694654346274}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/shared/packages/balance/src/lib/crypto/cryptoBalance.ts","entries":[{"id":"Wugy.ts","timestamp":1696577316970}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/athena-codepipeline/main.tf","entries":[{"id":"tZjX.tf","source":"searchReplace.source","timestamp":1696893797699},{"id":"5L3s.tf","source":"searchReplace.source","timestamp":1696893988768},{"id":"fISv.tf","source":"searchReplace.source","timestamp":1696894062579},{"id":"ppyn.tf","timestamp":1696901967026}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/Dockerfile","entries":[{"id":"0qau","timestamp":1694512674452},{"id":"Ae6H","timestamp":1694512688916},{"id":"pjEY","timestamp":1694662293207},{"id":"KyPe","timestamp":1694662409409},{"id":"O7bP","timestamp":1694663351043},{"id":"cim9","timestamp":1694665626902},{"id":"EJNc","timestamp":1694683415490},{"id":"bhoP","timestamp":1694683434911},{"id":"hDjb","source":"undoRedo.source","timestamp":1694683548441},{"id":"5EZ4","timestamp":1694683568009},{"id":"XBih","timestamp":1694684283716},{"id":"1zxK","timestamp":1694684619462},{"id":"nBGD","timestamp":1694684757931},{"id":"Qz2p","timestamp":1694684883120},{"id":"r3c1","timestamp":1694685595796},{"id":"GlJR","timestamp":1694733447735},{"id":"bFc3","source":"undoRedo.source","timestamp":1694733479480},{"id":"avl6","timestamp":1694745739657},{"id":"5vVV","timestamp":1698741259919}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/litecoin/index.ts","entries":[{"id":"Qlu2.ts","timestamp":1696222112659},{"id":"rnTP.ts","timestamp":1696222129593},{"id":"Vq2Q.ts","timestamp":1696222147367},{"id":"Zrha.ts","timestamp":1696301256399},{"id":"scMG.ts","timestamp":1696302643308},{"id":"doTi.ts","timestamp":1696302657772},{"id":"iSHB.ts","timestamp":1696303043991},{"id":"Dqqz.ts","timestamp":1696307698824},{"id":"x56C.ts","timestamp":1696307745154},{"id":"gAAe.ts","timestamp":1696307832219},{"id":"D7JZ.ts","timestamp":1696311494300},{"id":"rnQs.ts","timestamp":1696311929930},{"id":"uL9P.ts","timestamp":1696315232484},{"id":"Any5.ts","timestamp":1696317752455},{"id":"Xp7b.ts","timestamp":1696320916154},{"id":"6cci.ts","source":"Workspace Edit","timestamp":1696321111707},{"id":"B4T9.ts","timestamp":1696322374340},{"id":"6eNs.ts","timestamp":1696323628071},{"id":"8IAk.ts","timestamp":1696336291993},{"id":"jnsJ.ts","timestamp":1696336305989},{"id":"kdls.ts","timestamp":1696336472478},{"id":"ZgTJ.ts","timestamp":1696336860336},{"id":"krVc.ts","timestamp":1696336909182},{"id":"MbQh.ts","timestamp":1696337291914},{"id":"rFgG.ts","timestamp":1696337304978},{"id":"4dSQ.ts","timestamp":1696368494321},{"id":"MS7P.ts","timestamp":1696369137872},{"id":"tSnn.ts","source":"undoRedo.source","timestamp":1696369143789},{"id":"26hs.ts","timestamp":1696369185781},{"id":"pvLf.ts","timestamp":1696385430226},{"id":"wI10.ts","timestamp":1696385441426},{"id":"caHx.ts","timestamp":1696385816546},{"id":"Jmbg.ts","timestamp":1696385868519},{"id":"G5yp.ts","timestamp":1696385878577},{"id":"7qIe.ts","timestamp":1696393610004},{"id":"2Q6Y.ts","timestamp":1696393626388},{"id":"Oaeb.ts","source":"undoRedo.source","timestamp":1696404645312},{"id":"tCuU.ts","timestamp":1696407782842},{"id":"6tBL.ts","timestamp":1696407927392},{"id":"yEoc.ts","timestamp":1696408314158},{"id":"VRww.ts","timestamp":1696408336071},{"id":"jhjN.ts","timestamp":1696467621344},{"id":"3ZjV.ts","timestamp":1696467662383},{"id":"Awg5.ts","timestamp":1696495911692},{"id":"dH9h.ts","timestamp":1696835528472},{"id":"VVVu.ts","timestamp":1696837573478},{"id":"GyW0.ts","timestamp":1696845760222},{"id":"STU6.ts","timestamp":1700723661466},{"id":"pUiD.ts","source":"Workspace Edit","timestamp":1700724272169},{"id":"BVQ9.ts","source":"searchReplace.source","timestamp":1700727913955}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/activities/interceptor.ts","entries":[{"id":"DTrq.ts","source":"Workspace Edit","timestamp":1700110372459},{"id":"cGAZ.ts","timestamp":1700110416396},{"id":"8O0g.ts","source":"moved.source","timestamp":1700110656263},{"id":"wknX.ts","timestamp":1700110933954},{"id":"8rZV.ts","timestamp":1700117946363},{"id":"uUJd.ts","timestamp":1700126612191},{"id":"gUHd.ts","source":"Workspace Edit","timestamp":1700126619524}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///etc/pam.d/sudo","entries":[{"id":"zSvd","timestamp":1691634779199}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/workflows/CryptoExchangeRatesWorkflow.ts","entries":[{"id":"Z6YG.ts","source":"Workspace Edit","timestamp":1694071733732},{"id":"rrCh.ts","timestamp":1694072147563},{"id":"ameE.ts","source":"renamed.source","timestamp":1694072157887},{"id":"HNGv.ts","source":"Workspace Edit","timestamp":1694072165761},{"id":"SLHg.ts","source":"Workspace Edit","timestamp":1694077107409},{"id":"bJHJ.ts","source":"Workspace Edit","timestamp":1694077918944},{"id":"iypJ.ts","timestamp":1694077968084},{"id":"e3TD.ts","timestamp":1694078413131},{"id":"dPmc.ts","source":"renamed.source","timestamp":1694078733642},{"id":"NKGC.ts","timestamp":1694078745418},{"id":"BUOv.ts","timestamp":1694078832412},{"id":"Fa4F.ts","source":"undoRedo.source","timestamp":1694078897898},{"id":"4VhN.ts","timestamp":1694078939600},{"id":"jHP4.ts","timestamp":1694078987976},{"id":"5vls.ts","source":"undoRedo.source","timestamp":1694079011038},{"id":"7f3n.ts","timestamp":1694079062242},{"id":"UrUL.ts","timestamp":1694079088618},{"id":"2jGw.ts","timestamp":1694079200149},{"id":"axB9.ts","timestamp":1694079231334},{"id":"nlQU.ts","timestamp":1694079288350},{"id":"eA1Q.ts","source":"Workspace Edit","timestamp":1694079290384},{"id":"FaXN.ts","timestamp":1694079299734},{"id":"fBjr.ts","timestamp":1694079473450},{"id":"tcNd.ts","source":"undoRedo.source","timestamp":1694079497288},{"id":"Woy1.ts","timestamp":1694081154771},{"id":"AEXh.ts","timestamp":1694081198890},{"id":"k2kG.ts","timestamp":1694081344487},{"id":"Udv5.ts","timestamp":1694081369185},{"id":"I1Vm.ts","source":"Workspace Edit","timestamp":1694081388296},{"id":"4DKo.ts","timestamp":1694081477957},{"id":"RPlG.ts","source":"undoRedo.source","timestamp":1694081487522},{"id":"W1O4.ts","timestamp":1694081796500},{"id":"7DSL.ts","source":"Workspace Edit","timestamp":1694081801062},{"id":"xdtT.ts","source":"Workspace Edit","timestamp":1694081829204},{"id":"pkd0.ts","timestamp":1694084958832},{"id":"nhzX.ts","source":"Workspace Edit","timestamp":1694084963196},{"id":"f2oz.ts","source":"Renaming CryptoExchangeRateService to CryptoExchangeRatesService","timestamp":1694084972643},{"id":"lOMD.ts","source":"Workspace Edit","timestamp":1694084992357},{"id":"vaOb.ts","timestamp":1694133524949},{"id":"DiDi.ts","timestamp":1694133544689},{"id":"SWCm.ts","timestamp":1694141921640},{"id":"G6D5.ts","source":"Workspace Edit","timestamp":1694142317656},{"id":"Gy9t.ts","source":"undoRedo.source","timestamp":1694142903084},{"id":"3TgI.ts","timestamp":1697166501393},{"id":"csdR.ts","source":"Workspace Edit","timestamp":1697166695175},{"id":"rNOL.ts","timestamp":1697167088489},{"id":"mdXZ.ts","source":"undoRedo.source","timestamp":1697167611222},{"id":"02nq.ts","timestamp":1697169724609},{"id":"UEGX.ts","timestamp":1697175494414},{"id":"vIJI.ts","timestamp":1697175521128}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/hooks/useListDepositAddresses.ts","entries":[{"id":"8bSs.ts","timestamp":1695730191667},{"id":"tklo.ts","timestamp":1695731933833},{"id":"Voy1.ts","timestamp":1695732141524},{"id":"pK1e.ts","timestamp":1695732199775},{"id":"CtCI.ts","timestamp":1695732269577},{"id":"Qgyu.ts","source":"Workspace Edit","timestamp":1695732335834},{"id":"rSaW.ts","timestamp":1695732396790},{"id":"E74X.ts","timestamp":1695732460142},{"id":"cnNG.ts","timestamp":1695732514918}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/notify/common.ts","entries":[{"id":"7Iao.ts","timestamp":1703139241362},{"id":"lf3v.ts","timestamp":1703139325722},{"id":"GhUY.ts","timestamp":1703139437820},{"id":"7nwm.ts","timestamp":1703139509426},{"id":"wr0a.ts","timestamp":1703139573587}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/db/deploy/add-deposit-address-index.sql","entries":[{"id":"v3Hd.sql","timestamp":1702454260594},{"id":"iNDL.sql","timestamp":1702454481487},{"id":"szpK.sql","timestamp":1702454494362},{"id":"EdVv.sql","timestamp":1702956282655},{"id":"1AUz.sql","timestamp":1702957086069}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/poseidon/.gitmodules","entries":[{"id":"nYW4","timestamp":1696471046453},{"id":"UVyH","timestamp":1702966711417}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/elrond/index.ts","entries":[{"id":"v6Ay.ts","timestamp":1700723211922},{"id":"XaJx.ts","timestamp":1700723647923},{"id":"POHr.ts","source":"Workspace Edit","timestamp":1700724229316},{"id":"TUVC.ts","source":"searchReplace.source","timestamp":1700727913956}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/deposits/reconciliation/states/completedState.ts","entries":[{"id":"TFJ3.ts","timestamp":1699530437003},{"id":"oWHM.ts","timestamp":1699530457346}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/web_portal/config/database.yml","entries":[{"id":"XhIq.yml","timestamp":1694553937820},{"id":"Dllv.yml","timestamp":1697100444543}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/Dockerfile","entries":[{"id":"PzUJ","timestamp":1694495650479},{"id":"YUm2","timestamp":1694495661477},{"id":"0bDw","timestamp":1694498124576},{"id":"Qu49","timestamp":1694511778261},{"id":"kmG7","timestamp":1694745791174}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/transfer.ts","entries":[{"id":"eF2w.ts","timestamp":1699425140923},{"id":"dgUi.ts","source":"undoRedo.source","timestamp":1699425208849},{"id":"RjhG.ts","timestamp":1699425212980},{"id":"9bzI.ts","timestamp":1699425363638},{"id":"h1R4.ts","timestamp":1699425937892},{"id":"xxyO.ts","timestamp":1699545341825},{"id":"Hevy.ts","timestamp":1699545361524},{"id":"4GLC.ts","timestamp":1699545505922},{"id":"F2Yk.ts","timestamp":1699545545797},{"id":"kfos.ts","timestamp":1699545642913},{"id":"rOow.ts","timestamp":1699545669713},{"id":"IB0B.ts","timestamp":1699545698579},{"id":"xwVf.ts","source":"undoRedo.source","timestamp":1699545803989},{"id":"QU08.ts","timestamp":1699545839690},{"id":"IFkU.ts","timestamp":1699545883998},{"id":"kCSr.ts","timestamp":1699578176021},{"id":"Z6gS.ts","timestamp":1699578197824},{"id":"DhTJ.ts","timestamp":1699578231123},{"id":"P1N3.ts","timestamp":1701091800484},{"id":"I9Qu.ts","timestamp":1701158095853},{"id":"yZ0U.ts","timestamp":1701158118488},{"id":"milI.ts","timestamp":1701158131352},{"id":"Xtqh.ts","timestamp":1701161004984},{"id":"gvOU.ts","source":"Workspace Edit","timestamp":1701164112721},{"id":"6Vnx.ts","timestamp":1701164149128},{"id":"V5Wp.ts","source":"Workspace Edit","timestamp":1701164170691},{"id":"ZxX8.ts","timestamp":1701241462711},{"id":"DEgm.ts","timestamp":1701241592613},{"id":"IX6K.ts","timestamp":1701242915744},{"id":"IGLj.ts","timestamp":1701243093009},{"id":"tjSN.ts","timestamp":1701243111875},{"id":"DTuZ.ts","timestamp":1701243163647},{"id":"XsUy.ts","timestamp":1701243178823},{"id":"eV7N.ts","timestamp":1701243196649},{"id":"3MXq.ts","timestamp":1701243301786},{"id":"aMYg.ts","timestamp":1701243314532},{"id":"izM4.ts","timestamp":1701243596812},{"id":"YSK5.ts","timestamp":1701243849916},{"id":"j7ti.ts","timestamp":1701244018846},{"id":"Ffrr.ts","timestamp":1701379713670},{"id":"rPKw.ts","timestamp":1701379724254},{"id":"ZLO2.ts","timestamp":1701379811709},{"id":"lxjB.ts","timestamp":1701379853654},{"id":"nEfs.ts","timestamp":1701379864097},{"id":"fCPC.ts","source":"undoRedo.source","timestamp":1701379907022},{"id":"tv4A.ts","timestamp":1701380054286},{"id":"e1XJ.ts","timestamp":1701698659839},{"id":"tq19.ts","timestamp":1701698695033},{"id":"CAvl.ts","source":"undoRedo.source","timestamp":1701698705791},{"id":"WOyR.ts","timestamp":1701849506033}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/http-rest-client/http/asset_transfer/assetTransfer.http","entries":[{"id":"qTSM.http","timestamp":1703038552432},{"id":"zShC.http","timestamp":1703038639863}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "TopUpSuccessNotification", | |
"SubjectPart": "Propine - {{symbol}} : Top Up Sucess", | |
"HtmlPart": "<!DOCTYPE html> | |
<html | |
lang="en" | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:v="urn:schemas-microsoft-com:vml" | |
xmlns:o="urn:schemas-microsoft-com:office:office" | |
style=" | |
margin: 0; | |
mso-line-height-rule: exactly; | |
background-color: #f2f2f2; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
" | |
> | |
<head> | |
<meta charset="utf-8" /> | |
<!-- utf-8 works for most cases --> | |
<meta name="viewport" content="width=device-width" /> | |
<!-- Forcing initial-scale shouldn't be necessary --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<!-- Use the latest (edge) version of IE rendering engine --> | |
<meta name="x-apple-disable-message-reformatting" /> | |
<!-- Disable auto-scale in iOS 10 Mail entirely --> | |
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" /> | |
<title>Propine</title> | |
<!-- The title tag shows in email notifications, like Android 4.4. --> | |
</head> | |
<body> | |
<div style="border: 1px solid #d5d5d5; background-color: #ffffff"> | |
<header | |
style=" | |
background-color: #2c2d6b; | |
display: flex; | |
justify-content: space-between; | |
padding: 25px 60px; | |
align-items: center; | |
" | |
> | |
<img | |
alt="logo-propine-left" | |
height="40" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png" | |
/> | |
<img | |
alt="logo-propine-right" | |
height="75" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png" | |
/> | |
</header> | |
<div style="font-size: 20px"> | |
<div style="padding: 20px 60px"> | |
<div style="border: 1px solid #d5d5d5; padding: 20px"> | |
<p style="font-size:18px;text-align:left">Hello staff,</p><p><b style="color:#036803">Completed!</b><br>Top Up Request has been completed successfully.<br><br>Request ID: {{requestId}}<br>{{#if outgoingTransactionId}} Outgoing Transaction ID: {{outgoingTransactionId}}<br>{{/if}} Token : {{symbol}}<br>Network : {{networkName}}<br>Amount : {{amount}}<br>Request Date: {{date}}</p> | |
</div> | |
<div style="margin-top: 60px; margin-bottom: 180px"> | |
<div | |
style="text-align: right; font-size: 20px; margin-bottom: 10px" | |
> | |
Regards | |
</div> | |
<div style="text-align: right; font-size: 24px; font-weight: 400"> | |
Propine Team | |
</div> | |
</div> | |
</div> | |
<div style="border-top: 1px solid #d5d5d5; padding: 24px 60px"> | |
For any questions/concerns reach us at | |
<a style="color: #4376ff" href="mailto:[email protected]" | |
>[email protected]</a | |
> | |
</div> | |
</div> | |
<footer> | |
<div | |
style=" | |
background-color: #2c2d6b; | |
color: white; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 20px 60px; | |
font-size: 24px; | |
" | |
> | |
<span>© 2022 Propine. All Rights Reserved</span> | |
<span | |
><a | |
href="https://propine.com/" | |
style="color: #ffffff; text-decoration: none" | |
>www.propine.com</a | |
></span | |
> | |
<span | |
style=" | |
display: inline-block; | |
display: flex; | |
justify-content: space-around; | |
min-width: 200px; | |
" | |
> | |
<a href="https://www.linkedin.com/company/propine/mycompany/"> | |
<img | |
alt="linkedIn" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png" | |
/> | |
</a> | |
<a href="https://twitter.com/PropineGlobal"> | |
<img | |
alt="twitter" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png" | |
/> | |
</a> | |
<a href="https://medium.com/propineglobal"> | |
<img | |
alt="medium" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png" | |
/> | |
</a> | |
</span> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html>", | |
"TextPart": "Hello staff, | |
Completed! | |
Top Up Request has been completed successfully. | |
Request ID: {{requestId}} | |
{{#if outgoingTransactionId}}Outgoing Transaction ID: {{outgoingTransactionId}} | |
{{/if}}Token : {{symbol}} | |
Network : {{networkName}} | |
Amount : {{amount}} | |
Request Date: {{date}} | |
Regards, | |
Propine" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/TopUpSuccessNotification.hbs","entries":[{"id":"V5RL.hbs","source":"renamed.source","timestamp":1694663926465},{"id":"aBGt.hbs","timestamp":1694665813763},{"id":"t4aM.hbs","source":"searchReplace.source","timestamp":1694710068607},{"id":"bjFu.hbs","source":"searchReplace.source","timestamp":1694710085444}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "TopUpSuccessNotification", | |
"SubjectPart": "Propine - {{symbol}} : Top Up Sucess", | |
"HtmlPart": "<!DOCTYPE html> | |
<html | |
lang=\"en\" | |
xmlns=\"http://www.w3.org/1999/xhtml\" | |
xmlns:v=\"urn:schemas-microsoft-com:vml\" | |
xmlns:o=\"urn:schemas-microsoft-com:office:office\" | |
style=\" | |
margin: 0; | |
mso-line-height-rule: exactly; | |
background-color: #f2f2f2; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
\" | |
> | |
<head> | |
<meta charset=\"utf-8\" /> | |
<!-- utf-8 works for most cases --> | |
<meta name=\"viewport\" content=\"width=device-width\" /> | |
<!-- Forcing initial-scale shouldn't be necessary --> | |
<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> | |
<!-- Use the latest (edge) version of IE rendering engine --> | |
<meta name=\"x-apple-disable-message-reformatting\" /> | |
<!-- Disable auto-scale in iOS 10 Mail entirely --> | |
<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" /> | |
<title>Propine</title> | |
<!-- The title tag shows in email notifications, like Android 4.4. --> | |
</head> | |
<body> | |
<div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\"> | |
<header | |
style=\" | |
background-color: #2c2d6b; | |
display: flex; | |
justify-content: space-between; | |
padding: 25px 60px; | |
align-items: center; | |
\" | |
> | |
<img | |
alt=\"logo-propine-left\" | |
height=\"40\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" | |
/> | |
<img | |
alt=\"logo-propine-right\" | |
height=\"75\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" | |
/> | |
</header> | |
<div style=\"font-size: 20px\"> | |
<div style=\"padding: 20px 60px\"> | |
<div style=\"border: 1px solid #d5d5d5; padding: 20px\"> | |
<p style=\"font-size:18px;text-align:left\">Hello staff,</p><p><b style=\"color:#036803\">Completed!</b><br>Top Up Request has been completed successfully.<br><br>Request ID: {{requestId}}<br>{{#if outgoingTransactionId}} Outgoing Transaction ID: {{outgoingTransactionId}}<br>{{/if}} Token : {{symbol}}<br>Network : {{networkName}}<br>Amount : {{amount}}<br>Request Date: {{date}}</p> | |
</div> | |
<div style=\"margin-top: 60px; margin-bottom: 180px\"> | |
<div | |
style=\"text-align: right; font-size: 20px; margin-bottom: 10px\" | |
> | |
Regards | |
</div> | |
<div style=\"text-align: right; font-size: 24px; font-weight: 400\"> | |
Propine Team | |
</div> | |
</div> | |
</div> | |
<div style=\"border-top: 1px solid #d5d5d5; padding: 24px 60px\"> | |
For any questions/concerns reach us at | |
<a style=\"color: #4376ff\" href=\"mailto:[email protected]\" | |
>[email protected]</a | |
> | |
</div> | |
</div> | |
<footer> | |
<div | |
style=\" | |
background-color: #2c2d6b; | |
color: white; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 20px 60px; | |
font-size: 24px; | |
\" | |
> | |
<span>© 2022 Propine. All Rights Reserved</span> | |
<span | |
><a | |
href=\"https://propine.com/\" | |
style=\"color: #ffffff; text-decoration: none\" | |
>www.propine.com</a | |
></span | |
> | |
<span | |
style=\" | |
display: inline-block; | |
display: flex; | |
justify-content: space-around; | |
min-width: 200px; | |
\" | |
> | |
<a href=\"https://www.linkedin.com/company/propine/mycompany/\"> | |
<img | |
alt=\"linkedIn\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" | |
/> | |
</a> | |
<a href=\"https://twitter.com/PropineGlobal\"> | |
<img | |
alt=\"twitter\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" | |
/> | |
</a> | |
<a href=\"https://medium.com/propineglobal\"> | |
<img | |
alt=\"medium\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" | |
/> | |
</a> | |
</span> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html>", | |
"TextPart": "Hello staff, | |
Completed! | |
Top Up Request has been completed successfully. | |
Request ID: {{requestId}} | |
{{#if outgoingTransactionId}}Outgoing Transaction ID: {{outgoingTransactionId}} | |
{{/if}}Token : {{symbol}} | |
Network : {{networkName}} | |
Amount : {{amount}} | |
Request Date: {{date}} | |
Regards, | |
Propine" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform/ecs/sandbox/temporal/main.tf","entries":[{"id":"Clpx.tf","timestamp":1697772509623}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/tasks/monitorDeployingTransactionScheduler.ts","entries":[{"id":"94zA.ts","timestamp":1692070306445},{"id":"1Vh1.ts","timestamp":1692085604975},{"id":"ddN0.ts","source":"moved.source","timestamp":1692085644313},{"id":"T0g1.ts","source":"Workspace Edit","timestamp":1692085645011},{"id":"F1fY.ts","timestamp":1692086453384},{"id":"d8mo.ts","timestamp":1692086962757},{"id":"CW2j.ts","timestamp":1692087056794},{"id":"ubR4.ts","timestamp":1692087071432},{"id":"k8p9.ts","timestamp":1692087708463},{"id":"4Rzf.ts","timestamp":1692087734052},{"id":"7ygx.ts","timestamp":1692087880972},{"id":"pLDj.ts","timestamp":1692088031553},{"id":"1XNt.ts","timestamp":1692105361308},{"id":"BYMy.ts","timestamp":1692106131376},{"id":"W2o6.ts","timestamp":1692111263769},{"id":"S9oL.ts","timestamp":1692111955951},{"id":"6hUL.ts","timestamp":1692112001815},{"id":"cJSd.ts","timestamp":1692112022640},{"id":"cOKg.ts","timestamp":1692114177532},{"id":"5YSC.ts","source":"renamed.source","timestamp":1692116318061},{"id":"9hfs.ts","source":"renamed.source","timestamp":1692116510448},{"id":"szj1.ts","timestamp":1692116578081},{"id":"e3l1.ts","source":"moved.source","timestamp":1692116694044},{"id":"vTHX.ts","source":"moved.source","timestamp":1692116701327},{"id":"pbdZ.ts","timestamp":1692150614067},{"id":"cdH3.ts","source":"Workspace Edit","timestamp":1692154296044},{"id":"TA7R.ts","timestamp":1692173143983},{"id":"2boo.ts","source":"Workspace Edit","timestamp":1692187083145}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/PortfolioManagementRequestUpdated.hbs","entries":[{"id":"9Sfu.hbs","source":"renamed.source","timestamp":1694664026681},{"id":"jgaO.hbs","timestamp":1694664846846},{"id":"q9jJ.hbs","source":"searchReplace.source","timestamp":1694665298734},{"id":"HH5U.hbs","source":"searchReplace.source","timestamp":1694665331420},{"id":"Npqd.hbs","source":"searchReplace.source","timestamp":1694710068607},{"id":"fQW0.hbs","source":"searchReplace.source","timestamp":1694710085444}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "PortfolioManagementRequestUpdated", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html> | |
<html | |
lang="en" | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:v="urn:schemas-microsoft-com:vml" | |
xmlns:o="urn:schemas-microsoft-com:office:office" | |
style=" | |
margin: 0; | |
mso-line-height-rule: exactly; | |
background-color: #f2f2f2; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
" | |
> | |
<head> | |
<meta charset="utf-8" /> | |
<!-- utf-8 works for most cases --> | |
<meta name="viewport" content="width=device-width" /> | |
<!-- Forcing initial-scale shouldn't be necessary --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<!-- Use the latest (edge) version of IE rendering engine --> | |
<meta name="x-apple-disable-message-reformatting" /> | |
<!-- Disable auto-scale in iOS 10 Mail entirely --> | |
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" /> | |
<title>Propine</title> | |
<!-- The title tag shows in email notifications, like Android 4.4. --> | |
</head> | |
<body> | |
<div style="border: 1px solid #d5d5d5; background-color: #ffffff"> | |
<header | |
style=" | |
background-color: #2c2d6b; | |
display: flex; | |
justify-content: space-between; | |
padding: 25px 60px; | |
align-items: center; | |
" | |
> | |
<img | |
alt="logo-propine-left" | |
height="40" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png" | |
/> | |
<img | |
alt="logo-propine-right" | |
height="75" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png" | |
/> | |
</header> | |
<div style="font-size: 20px"> | |
<div style="padding: 20px 60px"> | |
<div style="border: 1px solid #d5d5d5; padding: 20px"> | |
<p> | |
Your request to {{mgtRequestType}} Rule has been {{#if isRejected}} | |
<span style="color: #ff0000">{{status}}.</span> | |
{{else}}{{status}}.{{/if}} | |
</p> | |
<h4 | |
style=" | |
background-color: #eaeaea27; | |
color: #8491a2; | |
border-radius: 2px; | |
padding: 20px; | |
font-weight: bold; | |
text-transform: uppercase; | |
" | |
> | |
Request Details | |
</h4> | |
<p><b>Portfolio Name:</b> {{ portfolioName }}</p> | |
<p><b>Type of Request:</b> {{ requestType }}</p> | |
<p><b>{{ actionName }} By:</b> {{ actionBy }}</p> | |
<p><b>Date Requested:</b> {{ requestCreatedAt }}</p> | |
<br /> | |
<p> | |
You can click on the link below to view the details of this | |
request. | |
</p> | |
<p> | |
<a style="color: #4376ff" href="{{ requestDetailsUrl }}" | |
>{{ requestDetailsUrlLabel }}</a | |
> | |
</p> | |
</div> | |
<div style="margin-top: 60px; margin-bottom: 180px"> | |
<div | |
style="text-align: right; font-size: 20px; margin-bottom: 10px" | |
> | |
Regards | |
</div> | |
<div style="text-align: right; font-size: 24px; font-weight: 400"> | |
Propine Team | |
</div> | |
</div> | |
</div> | |
<div style="border-top: 1px solid #d5d5d5; padding: 24px 60px"> | |
For any questions/concerns reach us at | |
<a style="color: #4376ff" href="mailto:[email protected]" | |
>[email protected]</a | |
> | |
</div> | |
</div> | |
<footer> | |
<div | |
style=" | |
background-color: #2c2d6b; | |
color: white; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 20px 60px; | |
font-size: 24px; | |
" | |
> | |
<span>© 2022 Propine. All Rights Reserved</span> | |
<span | |
><a | |
href="https://propine.com/" | |
style="color: #ffffff; text-decoration: none" | |
>www.propine.com</a | |
></span | |
> | |
<span | |
style=" | |
display: inline-block; | |
display: flex; | |
justify-content: space-around; | |
min-width: 200px; | |
" | |
> | |
<a href="https://www.linkedin.com/company/propine/mycompany/"> | |
<img | |
alt="linkedIn" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png" | |
/> | |
</a> | |
<a href="https://twitter.com/PropineGlobal"> | |
<img | |
alt="twitter" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png" | |
/> | |
</a> | |
<a href="https://medium.com/propineglobal"> | |
<img | |
alt="medium" | |
src="https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png" | |
/> | |
</a> | |
</span> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html> | |
", | |
"TextPart": "Your request to {{mgtRequestType}} Rule has been {{status}}. | |
** Request Details | |
------------------------------------------------------------ | |
Portfolio Name: {{ portfolioName }} | |
Type of Request: {{ requestType }} | |
{{ actionName }} By: {{ actionBy }} | |
Date Requested: {{ requestCreatedAt }} | |
You can click on the link below to view the details of this request. | |
{{ requestDetailsUrl }} | |
For any questions/concerns reach us at [email protected] | |
Regards | |
Propine Team" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "PortfolioManagementRequestUpdated", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html> | |
<html | |
lang=\"en\" | |
xmlns=\"http://www.w3.org/1999/xhtml\" | |
xmlns:v=\"urn:schemas-microsoft-com:vml\" | |
xmlns:o=\"urn:schemas-microsoft-com:office:office\" | |
style=\" | |
margin: 0; | |
mso-line-height-rule: exactly; | |
background-color: #f2f2f2; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
\" | |
> | |
<head> | |
<meta charset=\"utf-8\" /> | |
<!-- utf-8 works for most cases --> | |
<meta name=\"viewport\" content=\"width=device-width\" /> | |
<!-- Forcing initial-scale shouldn't be necessary --> | |
<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> | |
<!-- Use the latest (edge) version of IE rendering engine --> | |
<meta name=\"x-apple-disable-message-reformatting\" /> | |
<!-- Disable auto-scale in iOS 10 Mail entirely --> | |
<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\" /> | |
<title>Propine</title> | |
<!-- The title tag shows in email notifications, like Android 4.4. --> | |
</head> | |
<body> | |
<div style=\"border: 1px solid #d5d5d5; background-color: #ffffff\"> | |
<header | |
style=\" | |
background-color: #2c2d6b; | |
display: flex; | |
justify-content: space-between; | |
padding: 25px 60px; | |
align-items: center; | |
\" | |
> | |
<img | |
alt=\"logo-propine-left\" | |
height=\"40\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo.png\" | |
/> | |
<img | |
alt=\"logo-propine-right\" | |
height=\"75\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/logo_icon.png\" | |
/> | |
</header> | |
<div style=\"font-size: 20px\"> | |
<div style=\"padding: 20px 60px\"> | |
<div style=\"border: 1px solid #d5d5d5; padding: 20px\"> | |
<p> | |
Your request to {{mgtRequestType}} Rule has been {{#if isRejected}} | |
<span style=\"color: #ff0000\">{{status}}.</span> | |
{{else}}{{status}}.{{/if}} | |
</p> | |
<h4 | |
style=\" | |
background-color: #eaeaea27; | |
color: #8491a2; | |
border-radius: 2px; | |
padding: 20px; | |
font-weight: bold; | |
text-transform: uppercase; | |
\" | |
> | |
Request Details | |
</h4> | |
<p><b>Portfolio Name:</b> {{ portfolioName }}</p> | |
<p><b>Type of Request:</b> {{ requestType }}</p> | |
<p><b>{{ actionName }} By:</b> {{ actionBy }}</p> | |
<p><b>Date Requested:</b> {{ requestCreatedAt }}</p> | |
<br /> | |
<p> | |
You can click on the link below to view the details of this | |
request. | |
</p> | |
<p> | |
<a style=\"color: #4376ff\" href=\"{{ requestDetailsUrl }}\" | |
>{{ requestDetailsUrlLabel }}</a | |
> | |
</p> | |
</div> | |
<div style=\"margin-top: 60px; margin-bottom: 180px\"> | |
<div | |
style=\"text-align: right; font-size: 20px; margin-bottom: 10px\" | |
> | |
Regards | |
</div> | |
<div style=\"text-align: right; font-size: 24px; font-weight: 400\"> | |
Propine Team | |
</div> | |
</div> | |
</div> | |
<div style=\"border-top: 1px solid #d5d5d5; padding: 24px 60px\"> | |
For any questions/concerns reach us at | |
<a style=\"color: #4376ff\" href=\"mailto:[email protected]\" | |
>[email protected]</a | |
> | |
</div> | |
</div> | |
<footer> | |
<div | |
style=\" | |
background-color: #2c2d6b; | |
color: white; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 20px 60px; | |
font-size: 24px; | |
\" | |
> | |
<span>© 2022 Propine. All Rights Reserved</span> | |
<span | |
><a | |
href=\"https://propine.com/\" | |
style=\"color: #ffffff; text-decoration: none\" | |
>www.propine.com</a | |
></span | |
> | |
<span | |
style=\" | |
display: inline-block; | |
display: flex; | |
justify-content: space-around; | |
min-width: 200px; | |
\" | |
> | |
<a href=\"https://www.linkedin.com/company/propine/mycompany/\"> | |
<img | |
alt=\"linkedIn\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/in.png\" | |
/> | |
</a> | |
<a href=\"https://twitter.com/PropineGlobal\"> | |
<img | |
alt=\"twitter\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/twiiter.png\" | |
/> | |
</a> | |
<a href=\"https://medium.com/propineglobal\"> | |
<img | |
alt=\"medium\" | |
src=\"https://s3.ap-southeast-1.amazonaws.com/static.propine.com/message.png\" | |
/> | |
</a> | |
</span> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html> | |
", | |
"TextPart": "Your request to {{mgtRequestType}} Rule has been {{status}}. | |
** Request Details | |
------------------------------------------------------------ | |
Portfolio Name: {{ portfolioName }} | |
Type of Request: {{ requestType }} | |
{{ actionName }} By: {{ actionBy }} | |
Date Requested: {{ requestCreatedAt }} | |
You can click on the link below to view the details of this request. | |
{{ requestDetailsUrl }} | |
For any questions/concerns reach us at [email protected] | |
Regards | |
Propine Team" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/users/controller.ts","entries":[{"id":"XUab.ts","timestamp":1692870996341},{"id":"qPsF.ts","timestamp":1692871028607},{"id":"UHkR.ts","timestamp":1692871068185},{"id":"3K4T.ts","source":"undoRedo.source","timestamp":1692871112489},{"id":"QE0C.ts","timestamp":1692871115143},{"id":"qD9F.ts","source":"Workspace Edit","timestamp":1692871132365},{"id":"vvvC.ts","timestamp":1692877122104},{"id":"1v2S.ts","source":"undoRedo.source","timestamp":1692877144568},{"id":"iKvs.ts","timestamp":1692877159373},{"id":"v9TR.ts","timestamp":1692928548549},{"id":"dO7I.ts","timestamp":1692928565688}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hermes/.gitmodules","entries":[{"id":"r1cv","timestamp":1696470777459},{"id":"EbJC","timestamp":1702966666996}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/Desktop/cryptocore_production_aws_credentials","entries":[{"id":"npeE","source":"textFileCreate.source","timestamp":1696986044350}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/poseidon/src/interfaces/config.ts","entries":[{"id":"8xtY.ts","timestamp":1694517434369}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/moonriver/__test__/moonriver.test.ts","entries":[{"id":"1Fbe.ts","timestamp":1701140754568}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/report/reportService.ts","entries":[{"id":"5BW1.ts","timestamp":1697439665486}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/vpc/cryptocore-production/main.tf","entries":[{"id":"lSgu.tf","timestamp":1696833898263}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/ethereum/index.ts","entries":[{"id":"wpbe.ts","timestamp":1700707916012},{"id":"Re1X.ts","timestamp":1704258932967}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/.dotenv-password","entries":[{"id":"IR53","timestamp":1691651191911},{"id":"N5Vd","timestamp":1694575257190},{"id":"MtDZ","timestamp":1696466486863},{"id":"Rkni","timestamp":1697000453642},{"id":"6rRr","timestamp":1697009522130},{"id":"mCKa","source":"renamed.source","timestamp":1697065363668},{"id":"gqRU","source":"renamed.source","timestamp":1697065399099},{"id":"K5gu","source":"renamed.source","timestamp":1697065577472},{"id":"eT5F","source":"renamed.source","timestamp":1697065579930},{"id":"i843","source":"renamed.source","timestamp":1697065595921},{"id":"AliK","timestamp":1698993512795},{"id":"L5mv","timestamp":1698993553795},{"id":"WIU7","source":"undoRedo.source","timestamp":1698993575037}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/web_portal/app/javascript/feature_configurations/fortris.js","entries":[{"id":"czT3.js","source":"undoRedo.source","timestamp":1694580681762}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/tokensSupported/controller.ts","entries":[{"id":"KJGg.ts","source":"Workspace Edit","timestamp":1698825511031},{"id":"uRTo.ts","timestamp":1698825549502},{"id":"Tjw8.ts","timestamp":1698902742141},{"id":"LERA.ts","timestamp":1698902925220}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/resources/templates/header.hbs","entries":[{"id":"2VwD.hbs","timestamp":1699002807554}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/crypto/depositAddresses/__test__/depositAddressesService.test.ts","entries":[{"id":"7F9z.ts","timestamp":1702967197155},{"id":"X3XR.ts","timestamp":1702967242570},{"id":"PThh.ts","timestamp":1702967272171},{"id":"B07d.ts","timestamp":1702967885378},{"id":"VFI2.ts","timestamp":1702967906352},{"id":"kSpq.ts","timestamp":1702968082803},{"id":"W1L5.ts","timestamp":1702968352525},{"id":"eLtm.ts","timestamp":1702968569254}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/DefinityTransfer.hbs","entries":[{"id":"m1OT.hbs","timestamp":1694661838213},{"id":"l7qZ.hbs","source":"searchReplace.source","timestamp":1694710068424},{"id":"h29h.hbs","source":"searchReplace.source","timestamp":1694710085380}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/TopBanner/styles/fortrisStyle.ts","entries":[{"id":"54xh.ts","timestamp":1694143268755},{"id":"GGSU.ts","timestamp":1694143546516},{"id":"b7Pd.ts","timestamp":1694143578793},{"id":"bQ0L.ts","timestamp":1694143605508},{"id":"3WVF.ts","timestamp":1694143675351},{"id":"QYbO.ts","timestamp":1694143715021},{"id":"JFBh.ts","timestamp":1694143792389},{"id":"ppmy.ts","timestamp":1694143839974},{"id":"7bNs.ts","timestamp":1694143922806},{"id":"Urma.ts","timestamp":1694144179456},{"id":"qxH9.ts","timestamp":1694144391896},{"id":"53St.ts","timestamp":1694144441517},{"id":"v7Ek.ts","timestamp":1694144468960},{"id":"YbvT.ts","timestamp":1694144497990},{"id":"ei0v.ts","source":"undoRedo.source","timestamp":1694144552053},{"id":"RJYe.ts","timestamp":1694144579110},{"id":"tAFr.ts","timestamp":1694144604611},{"id":"7Ld9.ts","timestamp":1694145250704},{"id":"rVNP.ts","timestamp":1694145267818}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/templates/welcomeUserRequestV2.json","entries":[{"id":"ZxRH.json","timestamp":1691997080079}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Template": { | |
"TemplateName": "WelcomeUserRequestV2", | |
"SubjectPart": "{{subject}}", | |
"HtmlPart": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" style=\"margin: 0;mso-line-height-rule: exactly;background-color: #f2f2f2;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n<head>\n <meta charset=\"utf-8\"> <!-- utf-8 works for most cases -->\n <meta name=\"viewport\" content=\"width=device-width\"> <!-- Forcing initial-scale shouldn't be necessary -->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> <!-- Use the latest (edge) version of IE rendering engine -->\n <meta name=\"x-apple-disable-message-reformatting\"> <!-- Disable auto-scale in iOS 10 Mail entirely -->\n <meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\">\n <title>Propine</title> <!-- The title tag shows in email notifications, like Android 4.4. -->\n</head>\n<body style=\"background-color: #f2f2f2;margin: 0;mso-line-height-rule: exactly;padding: 0 !important;height: 100% !important;width: 100% !important;\">\n\t<div style=\"width: 100%; background-color: white;\">\n <div style=\"width: 60%; margin: 0 auto;\">\n <p style=\"font-size: 28px; text-align: center;\">Hello from Propine!</p>\n <p>\n Congratulations! Your user account has been created for the {{name}} Crypto Custody Web Portal managed by Propine. Now it is time to set up your passwords and 2-factor authentication for accessing the portal.\n </p>\n <div>\n <table style=\"margin: 0 auto; min-width: 500px;\">\n <tr>\n <td>\n <div style=\"width: 60px; height: 60px; background: #f2f2f2; text-align: center; line-height: 60px;\">\n 1\n </div>\n </td>\n <td>\n <div style=\"height: 60px; background: #f2f2f2; padding: 0 20px; line-height: 60px;\">\n Go to <a href=\"{{login_url}}\" target=\"_blank\">Crypto custody web portal login page</a>\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px; height: 60px; background: #f2f2f2; text-align: center; line-height: 60px;\">\n 2\n </div>\n </td>\n <td>\n <div style=\"height: 60px; background: #f2f2f2; padding: 0 20px; line-height: 60px;\">\n Select \"First time login\" in the options\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px; height: 60px; background: #f2f2f2; text-align: center; line-height: 60px;\">\n 3\n </div>\n </td>\n <td>\n <div style=\"height: 60px; background: #f2f2f2; padding: 0 20px; line-height: 60px; white-space: nowrap;\">\n Enter your email address <b>{{email}}</b> as the user id\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px; height: 60px; background: #f2f2f2; text-align: center; line-height: 60px;\">\n 4\n </div>\n </td>\n <td>\n <div style=\"height: 60px; background: #f2f2f2; padding: 0 20px; line-height: 60px;\">\n Enter \"<b>{{welcome_code}}</b>\" as the welcome code.\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px; height: 60px; background: #f2f2f2; text-align: center; line-height: 60px;\">\n 5\n </div>\n </td>\n <td>\n <div style=\"height: 60px; background: #f2f2f2; padding: 0 20px; line-height: 60px;\">\n Set up your password to access the portal\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <div style=\"width: 60px; height: 60px; background: #f2f2f2; text-align: center; line-height: 60px;\">\n 6\n </div>\n </td>\n <td>\n <div style=\"height: 60px; background: #f2f2f2; padding: 0 20px; line-height: 30px;\">\n Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy.\n </div>\n </td>\n </tr>\n </table>\n <div style=\"padding: 0 40px; font-size: 14px; width: 430px; margin: 0 auto;\">\n *Please note this welcome code expires on: {{expired_date}}. Please use the <a href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a> link on the First Time Login page to regenerate a welcome code after this date.\n </div>\n </div>\n <a style=\"text-decoration: none; color: black;\" href=\"#\">\n <div style=\"width: 300px; height: 40px; background: #f2f2f2; line-height: 40px; text-align: center; border: solid 1px black; margin: 40px auto\">\n <a href=\"{{login_url}}\" target=\"_blank\" style=\"text-decoration: none; color: black;\">Setup Your Web Portal Account</a>\n </div>\n </a>\n <p>Once you set up your login details, your account will be active, and you will be able to access the portal.</p>\n <p>You can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.</p>\n <p>\n For any questions/concerns reach us at <a href=\"mailto:[email protected]\" target=\"_blank\">[email protected]</a>\n We are delighted to welcome you to the portal.\n </p>\n <p>\n See you online,\n <br/>\n Propine team on behalf of {{name}}\n </p>\n <br/>\n <br/>\n </div>\n </div>\n</body>\n</html>\n", | |
"TextPart": "\n\n \n\n Hello from Propine!\n\n \n\n Congratulations! Your user account has been created for the {{name}} Crypto Custody Web Portal managed by Propine. Now it is time to set up your passwords and 2-factor authentication for accessing the portal.\n\n \n\n \n\n \n\n \n\n \n\n \n\n 1\n\n \n\n \n\n \n\n \n\n Go to Crypto custody web portal login page\n\n \n\n \n\n \n\n \n\n \n\n \n\n 2\n\n \n\n \n\n \n\n \n\n Select \"First time login\" in the options\n\n \n\n \n\n \n\n \n\n \n\n \n\n 3\n\n \n\n \n\n \n\n \n\n Enter your email address {{email}} as the user id\n\n \n\n \n\n \n\n \n\n \n\n \n\n 4\n\n \n\n \n\n \n\n \n\n Enter \"{{welcome_code}}\" as the welcome code.\n\n \n\n \n\n \n\n \n\n \n\n \n\n 5\n\n \n\n \n\n \n\n \n\n Set up your password to access the portal\n\n \n\n \n\n \n\n \n\n \n\n \n\n 6\n\n \n\n \n\n \n\n \n\n Set up 2-factor authentication. You will need to use an authentication app such as Google Authenticator or Authy.\n\n \n\n \n\n \n\n \n\n \n\n *Please note this welcome code expires on: {{expired_date}}. Please use the <a href=\"{{welcome_code_url}}\" target=\"_blank\">Regenerate Welcome Code</a> link on the First Time Login page to regenerate a welcome code after this date.\n\n \n\n \n\n \n\n \n\n Setup Your Web Portal Account\n\n \n\n \n\n Once you set up your login details, your account will be active, and you will be able to access the portal.\n\n You can find the role which you have been assigned to under Web portal > User roles. Please contact your administrator for any modifications to your role.\n\n \n\n For any questions/concerns reach us at [email protected]\n\n We are delighted to welcome you to the portal.\n\n \n\n \n\n See you online,\n\n \n\n Propine team on behalf of {{name}}\n\n \n\n \n\n \n\n \n\n " | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/hermes/src/api/v1/keystore/routes.ts","entries":[{"id":"b77Y.ts","timestamp":1695852709897}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/scripts/hotWalletInsight/fetchTransactions.ts","entries":[{"id":"tXmO.ts","timestamp":1702009300701},{"id":"s2AP.ts","timestamp":1702019789377},{"id":"R4RP.ts","timestamp":1702019805098}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/task/index.ts","entries":[{"id":"Sktq.ts","timestamp":1696579698752},{"id":"GznX.ts","timestamp":1696579727907},{"id":"xlxj.ts","timestamp":1696579749462}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/s3/cryptocore-production/main.tf","entries":[{"id":"oksl.tf","timestamp":1696838716869}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/assetTransferRequests/routes.ts","entries":[{"id":"vRQX.ts","timestamp":1692344937969},{"id":"ngij.ts","timestamp":1696309533783}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/fortrisLoadtest.ts","entries":[{"id":"LoUr.ts","timestamp":1701265419660}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/samples-typescript/interceptors-opentelemetry/src/telemetry.ts","entries":[{"id":"zCma.ts","timestamp":1700215146280},{"id":"w9ZV.ts","timestamp":1700215175039},{"id":"5qVs.ts","source":"Workspace Edit","timestamp":1700215339676},{"id":"81lG.ts","timestamp":1700215371070},{"id":"BGir.ts","source":"undoRedo.source","timestamp":1700215473804},{"id":"3ROK.ts","timestamp":1700355090716},{"id":"9VME.ts","timestamp":1700355452350},{"id":"hM0R.ts","timestamp":1700378271265}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/themes/definition.ts","entries":[{"id":"3sny.ts","timestamp":1694013212014},{"id":"cbvg.ts","timestamp":1694013280983},{"id":"wTsO.ts","timestamp":1694013397918},{"id":"f9X6.ts","timestamp":1694017082206},{"id":"B0eJ.ts","timestamp":1694017199333}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/web_portal/azure-pipelines.yml","entries":[{"id":"gmaq.yml","timestamp":1694518953970},{"id":"Nsh3.yml","timestamp":1694518991693},{"id":"sBNk.yml","timestamp":1697100705635},{"id":"5Zbf.yml","timestamp":1697101480873},{"id":"6mho.yml","timestamp":1697153523168},{"id":"NWZl.yml","timestamp":1697159837801}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/components/Badge/PermissionBadge.tsx","entries":[{"id":"Q6Tu.tsx","timestamp":1694013262542},{"id":"hVDu.tsx","source":"undoRedo.source","timestamp":1694013329257},{"id":"FB73.tsx","timestamp":1694013416376},{"id":"hNHL.tsx","timestamp":1694013438374},{"id":"iTeB.tsx","timestamp":1694013455550},{"id":"m5BL.tsx","timestamp":1694013469944},{"id":"OOrD.tsx","timestamp":1694013529997},{"id":"w0fa.tsx","timestamp":1694013892594},{"id":"hxng.tsx","source":"undoRedo.source","timestamp":1694013893845},{"id":"Nt8r.tsx","timestamp":1694014030170},{"id":"gxLt.tsx","timestamp":1694014095039},{"id":"A9um.tsx","source":"undoRedo.source","timestamp":1694014097583},{"id":"ZcJk.tsx","timestamp":1694014117957},{"id":"CsHM.tsx","timestamp":1694014142115},{"id":"Ib6o.tsx","timestamp":1694014175501},{"id":"XYqx.tsx","timestamp":1694014553318},{"id":"OQ1H.tsx","timestamp":1694014584168},{"id":"CZ5N.tsx","timestamp":1694014727873},{"id":"bgrF.tsx","timestamp":1694014751466},{"id":"clJX.tsx","timestamp":1694014761927},{"id":"14LH.tsx","timestamp":1694014793665},{"id":"ZY7Z.tsx","source":"undoRedo.source","timestamp":1694014839043},{"id":"NLr9.tsx","timestamp":1694015086717},{"id":"FBb8.tsx","timestamp":1694016172076},{"id":"7Tx1.tsx","timestamp":1694016209064}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/DefinityTransferText.hbs","entries":[{"id":"BUON.hbs","timestamp":1694661778562}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/performance_tests/src/services/provider.ts","entries":[{"id":"IfTU.ts","source":"Workspace Edit","timestamp":1701221886476},{"id":"WMDI.ts","timestamp":1701297176266},{"id":"IZL9.ts","timestamp":1701297213300},{"id":"mOKq.ts","timestamp":1701297291833},{"id":"C0vg.ts","timestamp":1701298448300}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/FiatBankAccountModificationRequestText.hbs","entries":[{"id":"76Cu.hbs","timestamp":1694663044440},{"id":"cmJU.hbs","timestamp":1694663077196},{"id":"08UT.hbs","source":"searchReplace.source","timestamp":1694710068607}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/poseidon-codepipeline/.terraform/terraform.tfstate","entries":[{"id":"GNH5.tfstate","source":"searchReplace.source","timestamp":1696893797722}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/zeus-codepipeline/main.tf","entries":[{"id":"UvhV.tf","source":"searchReplace.source","timestamp":1696893797784},{"id":"c7ko.tf","source":"searchReplace.source","timestamp":1696893988769},{"id":"cF1c.tf","source":"searchReplace.source","timestamp":1696894062579},{"id":"NeeG.tf","timestamp":1696901962120},{"id":"LqMH.tf","timestamp":1697083718022}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/onboarding/onboardingV3/service.ts","entries":[{"id":"Qak7.ts","timestamp":1698030591012},{"id":"bWcB.ts","timestamp":1698030667000},{"id":"dsPi.ts","timestamp":1698030711533},{"id":"sVSE.ts","timestamp":1698045143976},{"id":"vtKS.ts","timestamp":1698045326974},{"id":"Aahs.ts","timestamp":1698195052641},{"id":"cBPv.ts","source":"Workspace Edit","timestamp":1698195080248}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/authentication/__test__/authService.test.ts","entries":[{"id":"g4TE.ts","timestamp":1692239528444},{"id":"SuXz.ts","timestamp":1692239544777},{"id":"lBw2.ts","timestamp":1692239565548},{"id":"Sond.ts","timestamp":1692239598803},{"id":"CYk5.ts","timestamp":1692239673726},{"id":"hGvE.ts","timestamp":1692239750539},{"id":"8vYA.ts","timestamp":1692239893236},{"id":"uyxR.ts","timestamp":1692239909816},{"id":"C8XL.ts","timestamp":1692239932206},{"id":"gIZM.ts","timestamp":1692239967396},{"id":"LqsW.ts","timestamp":1692240079704},{"id":"r1iT.ts","timestamp":1692240092763},{"id":"5842.ts","timestamp":1692240148690},{"id":"YRnT.ts","timestamp":1692240211659},{"id":"NAWc.ts","timestamp":1692240234436},{"id":"0VqN.ts","timestamp":1692240257710},{"id":"F1Kk.ts","timestamp":1692240344993},{"id":"nXqW.ts","source":"Renaming emailLoginActivity to sendLoginActivityEmail","timestamp":1692240370172},{"id":"6Uvn.ts","timestamp":1692240401859},{"id":"RHX3.ts","timestamp":1692241717669},{"id":"mVUO.ts","source":"Workspace Edit","timestamp":1692241741433},{"id":"dJQz.ts","timestamp":1692241847658},{"id":"WElC.ts","timestamp":1692241859853},{"id":"M2D9.ts","timestamp":1692241885801},{"id":"Xi7e.ts","timestamp":1692241943145},{"id":"6vgb.ts","source":"Workspace Edit","timestamp":1692241948743},{"id":"P965.ts","timestamp":1692242126887},{"id":"UrKM.ts","timestamp":1692242143495},{"id":"z4rW.ts","timestamp":1692242196770},{"id":"Jm1l.ts","source":"Workspace Edit","timestamp":1692242206076},{"id":"QZM3.ts","timestamp":1692242217866},{"id":"8GRO.ts","timestamp":1692242231892},{"id":"2D3L.ts","timestamp":1692242243134},{"id":"B9nz.ts","timestamp":1692242778314},{"id":"AV5A.ts","timestamp":1692242892536},{"id":"EUeQ.ts","timestamp":1692242958223},{"id":"3tXi.ts","timestamp":1692243146522},{"id":"DtXD.ts","timestamp":1692243174929},{"id":"4aTJ.ts","timestamp":1692243190464},{"id":"TAJS.ts","timestamp":1692243212850},{"id":"QYH2.ts","timestamp":1692243387044},{"id":"Kj5e.ts","timestamp":1692243417883},{"id":"P2Am.ts","timestamp":1692246024653},{"id":"dGyO.ts","timestamp":1692246053560},{"id":"SEoO.ts","source":"Workspace Edit","timestamp":1692247640943},{"id":"Bv0O.ts","timestamp":1692248962790},{"id":"raHM.ts","timestamp":1692248978215},{"id":"Sb5H.ts","timestamp":1692255708406},{"id":"3nLn.ts","timestamp":1692255723705},{"id":"fmLy.ts","source":"Workspace Edit","timestamp":1692591739491}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/profile/__test__/profile.test.ts","entries":[{"id":"BbWU.ts","timestamp":1698917442496},{"id":"Q7vL.ts","timestamp":1702524380641}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/authentication/lockableService.ts","entries":[{"id":"PQRC.ts","timestamp":1692865002317}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/.env","entries":[{"id":"4gtn","timestamp":1691651229105},{"id":"AqWV","timestamp":1691651241860},{"id":"aDcD","timestamp":1691651388313},{"id":"SlHR","timestamp":1691652324931},{"id":"5XbI","timestamp":1692005374056},{"id":"WvtG","timestamp":1692261097109},{"id":"7sPE","timestamp":1692261142617},{"id":"cGFm","timestamp":1692261171302},{"id":"PqYi","timestamp":1692261370359},{"id":"oOvN","timestamp":1694007929111},{"id":"PEGC","timestamp":1694007941402},{"id":"QhT3","timestamp":1694014627720},{"id":"ZORi","timestamp":1694014846390},{"id":"mpxC","source":"undoRedo.source","timestamp":1694014896176},{"id":"ojE8","timestamp":1694042530062},{"id":"LYru","source":"undoRedo.source","timestamp":1694042562968},{"id":"t1cm","timestamp":1694144765627},{"id":"TFBZ","source":"undoRedo.source","timestamp":1694144785579},{"id":"FCC3","timestamp":1694144982704},{"id":"gAq5","source":"undoRedo.source","timestamp":1694145349641},{"id":"OtaL","timestamp":1694154597515},{"id":"pExn","timestamp":1695732600252},{"id":"ESCu","timestamp":1696299794122},{"id":"fgBt","timestamp":1696919473271},{"id":"D6rc","timestamp":1697066187736},{"id":"WlfB","timestamp":1697770498111},{"id":"yLU1","timestamp":1697770509311},{"id":"NRvX","timestamp":1697770601927},{"id":"FCQz","timestamp":1698901980341},{"id":"ww2S","timestamp":1699505304837},{"id":"sLiV","timestamp":1701248185489},{"id":"aWq6","timestamp":1701665368372},{"id":"9t1U","timestamp":1702974304350}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/.dotenv-password","entries":[{"id":"am1d","timestamp":1692071949291},{"id":"Vc8W","timestamp":1692084208768}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/pages/customer/portfolios/overview/index.page.tsx","entries":[{"id":"Np1j.tsx","timestamp":1694146233259},{"id":"YuwF.tsx","timestamp":1694146256563}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/env/cryptocore_staging-env","entries":[{"id":"fHrt","timestamp":1697009950915},{"id":"k8VK","timestamp":1697010053619},{"id":"MfVq","timestamp":1697010069047},{"id":"quQD","timestamp":1697010099643},{"id":"B60n","timestamp":1697010114783}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/workflows/crons/workflows.ts","entries":[{"id":"EwHR.ts","timestamp":1691986451354},{"id":"4jgs.ts","timestamp":1691986886232},{"id":"H1Fs.ts","timestamp":1691986900252},{"id":"jhWN.ts","timestamp":1691987149351}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/configurations/institutions/index.ts","entries":[{"id":"r0cg.ts","timestamp":1694155792460},{"id":"zUhn.ts","timestamp":1694710157098}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/env/cryptocore_production-env","entries":[{"id":"tqUA","timestamp":1697080189508},{"id":"7Ill","timestamp":1697080213290},{"id":"zjMi","timestamp":1697080297901},{"id":"ICqO","timestamp":1697080314866},{"id":"vjrQ","timestamp":1697080395734},{"id":"34q9","timestamp":1697080419172},{"id":"Qy2U","timestamp":1697080518170},{"id":"svnZ","timestamp":1697080539899},{"id":"mA6p","timestamp":1697080568998},{"id":"TYdF","timestamp":1697080604075},{"id":"oesQ","timestamp":1697080656858},{"id":"TGmQ","timestamp":1697080694245},{"id":"aKQA","timestamp":1697080723860},{"id":"21vY","timestamp":1697080761786},{"id":"ZD8Y","timestamp":1697085833097}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/.ssh/config","entries":[{"id":"K0qI","timestamp":1695026877756},{"id":"id0m","timestamp":1695029130169}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/samples-typescript/cron-workflows/src/client.ts","entries":[{"id":"7vSw.ts","timestamp":1692090928303},{"id":"uaEQ.ts","timestamp":1692091151815},{"id":"h4WU.ts","source":"undoRedo.source","timestamp":1692091257156},{"id":"FCm2.ts","timestamp":1692091518707},{"id":"SSwJ.ts","timestamp":1692091613929},{"id":"ntMf.ts","timestamp":1692091682820},{"id":"EydF.ts","timestamp":1692093630702},{"id":"M4TG.ts","timestamp":1692093726068},{"id":"zMc6.ts","timestamp":1692103733737}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "blockchain-adaptor", | |
"version": "1.0.0", | |
"description": "", | |
"scripts": { | |
"encrypt-dev-env": "openssl enc -aes-256-cbc -md sha512 -in .env -out ./env/env.enc -kfile .dotenv-password", | |
"decrypt-dev-env": "openssl enc -d -aes-256-cbc -md sha512 -out .env -in ./env/env.enc -kfile .dotenv-password", | |
"encrypt-qc-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/qc-env -out ./env/qc-env.enc -kfile .dotenv-password", | |
"decrypt-qc-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/qc-env -in ./env/qc-env.enc -kfile .dotenv-password", | |
"encrypt-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/staging-env -out ./env/staging-env.enc -kfile .dotenv-password", | |
"decrypt-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/staging-env -in ./env/staging-env.enc -kfile .dotenv-password", | |
"encrypt-preprod-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/preprod-env -out ./env/preprod-env.enc -kfile .dotenv-password", | |
"decrypt-preprod-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/preprod-env -in ./env/preprod-env.enc -kfile .dotenv-password", | |
"encrypt-sandbox-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/sandbox-env -out ./env/sandbox-env.enc -kfile .dotenv-password", | |
"decrypt-sandbox-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/sandbox-env -in ./env/sandbox-env.enc -kfile .dotenv-password", | |
"encrypt-production-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/production-env -out ./env/production-env.enc -kfile .dotenv-password", | |
"decrypt-production-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/production-env -in ./env/production-env.enc -kfile .dotenv-password", | |
"encrypt-tungsten-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/tungsten_staging-env -out ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"decrypt-tungsten-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/tungsten_staging-env -in ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"env-production-set": "npx propine-config env put-secret production venus", | |
"env-production-get": "npx propine-config env get production venus", | |
"env-production-ls": "npx propine-config env list-version production venus", | |
"env-production-set-stage": "npx propine-config env set-stage production venus production", | |
"config-production-set": "npx propine-config config put-secret production venus", | |
"config-production-get": "npx propine-config config get production venus", | |
"config-production-ls": "npx propine-config config list-version production venus", | |
"config-production-set-stage": "npx propine-config config set-stage production venus production", | |
"env-qc-set": "npx propine-config env put-secret qc venus", | |
"env-qc-get": "npx propine-config env get qc venus", | |
"env-qc-ls": "npx propine-config env list-version qc venus", | |
"env-qc-set-stage": "npx propine-config env set-stage qc venus qc", | |
"config-qc-set": "npx propine-config config put-secret qc venus", | |
"config-qc-get": "npx propine-config config get qc venus", | |
"config-qc-ls": "npx propine-config config list-version qc venus", | |
"config-qc-set-stage": "npx propine-config config set-stage qc venus qc", | |
"env-sandbox-set": "npx propine-config env put-secret sandbox venus", | |
"env-sandbox-get": "npx propine-config env get sandbox venus", | |
"env-sandbox-ls": "npx propine-config env list-version sandbox venus", | |
"env-sandbox-set-stage": "npx propine-config env set-stage sandbox venus sandbox", | |
"config-sandbox-set": "npx propine-config config put-secret sandbox venus", | |
"config-sandbox-get": "npx propine-config config get sandbox venus", | |
"config-sandbox-ls": "npx propine-config config list-version sandbox venus", | |
"config-sandbox-set-stage": "npx propine-config config set-stage sandbox venus sandbox", | |
"env-dev-set": "npx propine-config env put-secret dev venus", | |
"env-dev-get": "npx propine-config env get dev venus", | |
"env-dev-ls": "npx propine-config env list-version dev venus", | |
"config-dev-set": "npx propine-config config put-secret dev venus", | |
"config-dev-get": "npx propine-config config get dev venus", | |
"config-dev-ls": "npx propine-config config list-version dev venus", | |
"env-cryptocore_staging-set": "npx propine-config env put-secret -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-get": "npx propine-config env get -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-ls": "npx propine-config env list-version -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-set-stage": "npx propine-config env set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"config-cryptocore_staging-set": "npx propine-config config put-secret -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-get": "npx propine-config config get -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-ls": "npx propine-config config list-version -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-set-stage": "npx propine-config config set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"build": "tsc -p .", | |
"lint": "eslint --quiet -c .eslintrc --ext .ts src", | |
"copy": "npm run copy-contracts-xdc", | |
"copy:config": "cp -R ./src/configurations/*.json ./build/src/configurations", | |
"copy-contracts-xdc": "mkdir -p ./build/src/services/blockchain/xdc && cp -r src/services/blockchain/xdc/contracts build/src/services/blockchain/xdc", | |
"postinstall": "mkdir -p ./build/src/configurations && mkdir -p ./build/src/models && cp -R ./src/models ./build/src && npm run copy", | |
"start": "node -r ./tsconfig-paths-bootstrap.js build/src/index.js", | |
"mocha": "NODE_ENV=test npx mocha --timeout 20000 --require ./test/hooks.js -r ts-node/register -r tsconfig-paths/register --reporter spec \"src/**/*.spec.ts\"", | |
"test": "NODE_ENV=test node --expose-gc --max-old-space-size=4096 ./node_modules/.bin/jest --coverage --runInBand --logHeapUsage --forceExit --detectOpenHandles", | |
"azure-pipeline-commands": "npm run lint && npm run test", | |
"dev": "ts-node -r dotenv/config -r tsconfig-paths/register src/index.ts", | |
"startWf": "ts-node -r dotenv/config -r tsconfig-paths/register src/startTestingWorkflow.ts", | |
"genkey": "ts-node -r dotenv/config scripts/index.ts --debug", | |
"jest": "NODE_ENV=test jest", | |
"coverage": "jest --coverage", | |
"prettier": "prettier --write 'src/**/*.ts'", | |
"test-genesis": "npx ts-node -r tsconfig-paths/register src/services/trading/counter_parties/genesis/__test__/settlement.dummy.ts", | |
"prepare": "husky install", | |
"vault:start": "node tools/vault.js; npm run start;", | |
"uglifyjs": "uglifyjs-folder build -e -x .js -o build/" | |
}, | |
"eslintIgnore": [ | |
"src/models", | |
"*/**/*.spec.ts", | |
"*/**/*.test.ts" | |
], | |
"keywords": [], | |
"author": "", | |
"license": "", | |
"engines": { | |
"npm": ">=8.0.0", | |
"node": ">=16.0.0 <21.0.0" | |
}, | |
"dependencies": { | |
"@aave/math-utils": "^1.3.3", | |
"@anchor-protocol/anchor-earn": "^2.0.0", | |
"@blockfrost/blockfrost-js": "^5.2.0", | |
"@cosmjs/amino": "^0.28.4", | |
"@cosmjs/crypto": "^0.28.4", | |
"@cosmjs/encoding": "^0.28.4", | |
"@cosmjs/math": "^0.28.4", | |
"@cosmjs/proto-signing": "^0.28.4", | |
"@cosmjs/stargate": "^0.28.4", | |
"@emurgo/cardano-serialization-lib-nodejs": "^11.3.0", | |
"@ethereumjs/tx": "^3.3.0", | |
"@glif/filecoin-address": "^2.0.1", | |
"@hapi/boom": "^10.0.0", | |
"@hapi/hapi": "^20.2.2", | |
"@hapi/inert": "^6.0.5", | |
"@hapi/vision": "^6.1.0", | |
"@metamask/eth-sig-util": "^4.0.1", | |
"@multiversx/sdk-core": "^12.7.1", | |
"@multiversx/sdk-network-providers": "^2.0.0", | |
"@multiversx/sdk-wallet": "^4.2.0", | |
"@opentelemetry/api": "^1.1.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@polkadot/api": "^10.9.1", | |
"@propine/shared": "0.3.4", | |
"@sentry/node": "^6.17.0", | |
"@sentry/tracing": "^6.17.0", | |
"@solana/web3.js": "^1.32.0", | |
"@stablelib/blake2b": "^1.0.1", | |
"@taquito/signer": "^13.0.1", | |
"@taquito/taquito": "^13.0.1", | |
"@temporalio/interceptors-opentelemetry": "^1.8.6", | |
"@temporalio/worker": "^1.8.2", | |
"@terra-money/terra.js": "^3.0.9", | |
"@zilliqa-js/zilliqa": "^3.3.4", | |
"@zondax/filecoin-signing-tools": "github:Digital-MOB-Filecoin/filecoin-signing-tools-js", | |
"algosdk": "^2.1.0", | |
"amqp-connection-manager": "^4.1.7", | |
"amqplib": "^0.10.3", | |
"aws-sdk": "^2.943.0", | |
"axios": "^0.27.2", | |
"axios-retry": "^3.3.1", | |
"bignumber.js": "^9.0.1", | |
"bitcoinjs-lib": "^5.2.0", | |
"blake2b": "^2.1.4", | |
"bn.js": "^5.2.0", | |
"bs58": "^4.0.1", | |
"bs58check": "^2.1.2", | |
"canonical-json": "0.0.4", | |
"casper-js-sdk": "^2.15.2", | |
"cbor": "^8.1.0", | |
"chacha": "^2.1.0", | |
"coininfo": "^5.2.1", | |
"cosmjs-types": "^0.5.0", | |
"dd-trace": "^3.14.1", | |
"dotenv": "^8.6.0", | |
"elliptic": "^6.5.4", | |
"eth-crypto": "^2.2.0", | |
"ethers": "^5.4.5", | |
"filecoin.js": "^0.0.5-alpha", | |
"generic-pool": "^3.8.2", | |
"i": "^0.3.7", | |
"inversify": "^6.0.1", | |
"ioredis": "^5.2.3", | |
"joi": "^17.6.0", | |
"js-sha256": "^0.9.0", | |
"limiter": "^2.1.0", | |
"lodash": "^4.17.21", | |
"nconf": "^0.11.3", | |
"near-api-js": "^0.44.2", | |
"near-seed-phrase": "^0.2.0", | |
"npm": "^8.19.2", | |
"opentelemetry-instrumentation-sequelize": "^0.32.0", | |
"pg": "^8.6.0", | |
"pino": "^7.11.0", | |
"pino-cloudwatch": "^0.7.0", | |
"pino-multi-stream": "^6.0.0", | |
"pino-pretty": "^7.6.1", | |
"pm2": "^5.2.0", | |
"promise-ratelimit": "^0.0.3", | |
"qrcode": "^1.5.0", | |
"reflect-metadata": "^0.1.13", | |
"sequelize": "^6.28.1", | |
"underscore": "1.13.1", | |
"uuid": "^8.3.2", | |
"web3": "^1.4.0", | |
"xdc3": "^1.3.13416", | |
"xrpl": "^2.13.0" | |
}, | |
"devDependencies": { | |
"@faker-js/faker": "^7.6.0", | |
"@polkadot/types": "^10.9.1", | |
"@types/amqp-connection-manager": "^2.0.12", | |
"@types/amqplib": "^0.5.17", | |
"@types/elliptic": "^6.4.13", | |
"@types/hapi__hapi": "^20.0.12", | |
"@types/jest": "^29.4.0", | |
"@types/keccak": "^3.0.1", | |
"@types/node": "^18.7.1", | |
"@types/pino": "^6.3.7", | |
"@types/qs": "^6.9.7", | |
"@types/request": "^2.48.5", | |
"@types/rosie": "^0.0.40", | |
"@typescript-eslint/eslint-plugin": "^4.26.1", | |
"@typescript-eslint/parser": "^4.26.1", | |
"eslint": "^7.24.0", | |
"eslint-config-prettier": "^6.15.0", | |
"eslint-plugin-import": "^2.23.4", | |
"eslint-plugin-prettier": "^3.1.4", | |
"esm": "^3.2.25", | |
"husky": "^8.0.0", | |
"ioredis-mock": "^8.2.2", | |
"jest": "^29.4.3", | |
"jest-mock-extended": "^3.0.1", | |
"lint-staged": "^10.5.4", | |
"nock": "^13.3.0", | |
"prettier": "^2.7.1", | |
"propine-config": "git+https://971a6f4620162d49f47b99c3da3fa74072de558d:[email protected]:Propine/propine-config#02984d9be26916c3d2659916b02e3521a73ff87b", | |
"proxyquire": "^2.1.3", | |
"rosie": "^2.1.0", | |
"sequelize-test-helpers": "^1.4.2", | |
"ts-jest": "^29.0.5", | |
"ts-node": "^10.9.1", | |
"ts-node-dev": "^2.0.0", | |
"tsconfig-paths": "^4.1.0", | |
"typescript": "^4.8.3", | |
"uglifyjs-folder": "^3.2.0" | |
}, | |
"overrides": { | |
"underscore": "$underscore", | |
"xdc3": { | |
"xdc3-bzz": { | |
"got": "13.0.0", | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core": { | |
"xdc3-core-helpers": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-method": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-requestmanager": { | |
"underscore": "1.13.1", | |
"xdc3-providers-ipc": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-providers-ws": { | |
"underscore": "1.13.1" | |
} | |
} | |
}, | |
"xdc3-eth": { | |
"underscore": "1.13.1", | |
"xdc3-core-subscriptions": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-abi": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-accounts": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-contract": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-ens": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"xdc3-utils": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"@zilliqa-js/zilliqa": { | |
"@zilliqa-js/contract": { | |
"cross-fetch": "^3.1.6", | |
"node-fetch": "2.6.11" | |
}, | |
"@zilliqa-js/core": { | |
"cross-fetch": "^3.1.6" | |
} | |
}, | |
"@zondax/filecoin-signing-tools": { | |
"axios": "^0.21.4" | |
}, | |
"@propine/shared": { | |
"sequelize": "$sequelize", | |
"@propine/balance": { | |
"sequelize": "$sequelize" | |
}, | |
"@propine/utils": { | |
"sequelize": "$sequelize" | |
} | |
}, | |
"web3": { | |
"web3-bzz": { | |
"swarm-js": { | |
"eth-lib": { | |
"ws": "7.4.6" | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "blockchain-adaptor", | |
"version": "1.0.0", | |
"description": "", | |
"scripts": { | |
"encrypt-dev-env": "openssl enc -aes-256-cbc -md sha512 -in .env -out ./env/env.enc -kfile .dotenv-password", | |
"decrypt-dev-env": "openssl enc -d -aes-256-cbc -md sha512 -out .env -in ./env/env.enc -kfile .dotenv-password", | |
"encrypt-qc-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/qc-env -out ./env/qc-env.enc -kfile .dotenv-password", | |
"decrypt-qc-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/qc-env -in ./env/qc-env.enc -kfile .dotenv-password", | |
"encrypt-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/staging-env -out ./env/staging-env.enc -kfile .dotenv-password", | |
"decrypt-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/staging-env -in ./env/staging-env.enc -kfile .dotenv-password", | |
"encrypt-preprod-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/preprod-env -out ./env/preprod-env.enc -kfile .dotenv-password", | |
"decrypt-preprod-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/preprod-env -in ./env/preprod-env.enc -kfile .dotenv-password", | |
"encrypt-sandbox-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/sandbox-env -out ./env/sandbox-env.enc -kfile .dotenv-password", | |
"decrypt-sandbox-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/sandbox-env -in ./env/sandbox-env.enc -kfile .dotenv-password", | |
"encrypt-production-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/production-env -out ./env/production-env.enc -kfile .dotenv-password", | |
"decrypt-production-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/production-env -in ./env/production-env.enc -kfile .dotenv-password", | |
"encrypt-tungsten-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/tungsten_staging-env -out ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"decrypt-tungsten-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/tungsten_staging-env -in ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"env-production-set": "npx propine-config env put-secret production venus", | |
"env-production-get": "npx propine-config env get production venus", | |
"env-production-ls": "npx propine-config env list-version production venus", | |
"env-production-set-stage": "npx propine-config env set-stage production venus production", | |
"config-production-set": "npx propine-config config put-secret production venus", | |
"config-production-get": "npx propine-config config get production venus", | |
"config-production-ls": "npx propine-config config list-version production venus", | |
"config-production-set-stage": "npx propine-config config set-stage production venus production", | |
"env-qc-set": "npx propine-config env put-secret qc venus", | |
"env-qc-get": "npx propine-config env get qc venus", | |
"env-qc-ls": "npx propine-config env list-version qc venus", | |
"env-qc-set-stage": "npx propine-config env set-stage qc venus qc", | |
"config-qc-set": "npx propine-config config put-secret qc venus", | |
"config-qc-get": "npx propine-config config get qc venus", | |
"config-qc-ls": "npx propine-config config list-version qc venus", | |
"config-qc-set-stage": "npx propine-config config set-stage qc venus qc", | |
"env-sandbox-set": "npx propine-config env put-secret sandbox venus", | |
"env-sandbox-get": "npx propine-config env get sandbox venus", | |
"env-sandbox-ls": "npx propine-config env list-version sandbox venus", | |
"env-sandbox-set-stage": "npx propine-config env set-stage sandbox venus sandbox", | |
"config-sandbox-set": "npx propine-config config put-secret sandbox venus", | |
"config-sandbox-get": "npx propine-config config get sandbox venus", | |
"config-sandbox-ls": "npx propine-config config list-version sandbox venus", | |
"config-sandbox-set-stage": "npx propine-config config set-stage sandbox venus sandbox", | |
"env-dev-set": "npx propine-config env put-secret dev venus", | |
"env-dev-get": "npx propine-config env get dev venus", | |
"env-dev-ls": "npx propine-config env list-version dev venus", | |
"config-dev-set": "npx propine-config config put-secret dev venus", | |
"config-dev-get": "npx propine-config config get dev venus", | |
"config-dev-ls": "npx propine-config config list-version dev venus", | |
"env-cryptocore_staging-set": "npx propine-config env put-secret -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-get": "npx propine-config env get -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-ls": "npx propine-config env list-version -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-set-stage": "npx propine-config env set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"config-cryptocore_staging-set": "npx propine-config config put-secret -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-get": "npx propine-config config get -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-ls": "npx propine-config config list-version -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-set-stage": "npx propine-config config set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"build": "tsc -p .", | |
"lint": "eslint --quiet -c .eslintrc --ext .ts src", | |
"copy": "npm run copy-contracts-xdc", | |
"copy:config": "cp -R ./src/configurations/*.json ./build/src/configurations", | |
"copy-contracts-xdc": "mkdir -p ./build/src/services/blockchain/xdc && cp -r src/services/blockchain/xdc/contracts build/src/services/blockchain/xdc", | |
"postinstall": "mkdir -p ./build/src/configurations && mkdir -p ./build/src/models && cp -R ./src/models ./build/src && npm run copy", | |
"start": "node -r ./tsconfig-paths-bootstrap.js build/src/index.js", | |
"mocha": "NODE_ENV=test npx mocha --timeout 20000 --require ./test/hooks.js -r ts-node/register -r tsconfig-paths/register --reporter spec \"src/**/*.spec.ts\"", | |
"test": "NODE_ENV=test node --expose-gc --max-old-space-size=4096 ./node_modules/.bin/jest --coverage --runInBand --logHeapUsage --forceExit --detectOpenHandles", | |
"azure-pipeline-commands": "npm run lint && npm run test", | |
"dev": "ts-node-dev -r dotenv/config -r tsconfig-paths/register src/index.ts", | |
"startWf": "ts-node -r dotenv/config -r tsconfig-paths/register src/startTestingWorkflow.ts", | |
"genkey": "ts-node -r dotenv/config scripts/index.ts --debug", | |
"jest": "NODE_ENV=test jest", | |
"coverage": "jest --coverage", | |
"prettier": "prettier --write 'src/**/*.ts'", | |
"test-genesis": "npx ts-node -r tsconfig-paths/register src/services/trading/counter_parties/genesis/__test__/settlement.dummy.ts", | |
"prepare": "husky install", | |
"vault:start": "node tools/vault.js; npm run start;", | |
"uglifyjs": "uglifyjs-folder build -e -x .js -o build/" | |
}, | |
"eslintIgnore": [ | |
"src/models", | |
"*/**/*.spec.ts", | |
"*/**/*.test.ts" | |
], | |
"keywords": [], | |
"author": "", | |
"license": "", | |
"engines": { | |
"npm": ">=8.0.0", | |
"node": ">=16.0.0 <21.0.0" | |
}, | |
"dependencies": { | |
"@aave/math-utils": "^1.3.3", | |
"@anchor-protocol/anchor-earn": "^2.0.0", | |
"@blockfrost/blockfrost-js": "^5.2.0", | |
"@cosmjs/amino": "^0.28.4", | |
"@cosmjs/crypto": "^0.28.4", | |
"@cosmjs/encoding": "^0.28.4", | |
"@cosmjs/math": "^0.28.4", | |
"@cosmjs/proto-signing": "^0.28.4", | |
"@cosmjs/stargate": "^0.28.4", | |
"@emurgo/cardano-serialization-lib-nodejs": "^11.3.0", | |
"@ethereumjs/tx": "^3.3.0", | |
"@glif/filecoin-address": "^2.0.1", | |
"@hapi/boom": "^10.0.0", | |
"@hapi/hapi": "^20.2.2", | |
"@hapi/inert": "^6.0.5", | |
"@hapi/vision": "^6.1.0", | |
"@metamask/eth-sig-util": "^4.0.1", | |
"@multiversx/sdk-core": "^12.7.1", | |
"@multiversx/sdk-network-providers": "^2.0.0", | |
"@multiversx/sdk-wallet": "^4.2.0", | |
"@opentelemetry/api": "^1.1.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@polkadot/api": "^10.9.1", | |
"@propine/shared": "0.3.4", | |
"@sentry/node": "^6.17.0", | |
"@sentry/tracing": "^6.17.0", | |
"@solana/web3.js": "^1.32.0", | |
"@stablelib/blake2b": "^1.0.1", | |
"@taquito/signer": "^13.0.1", | |
"@taquito/taquito": "^13.0.1", | |
"@temporalio/interceptors-opentelemetry": "^1.8.6", | |
"@temporalio/worker": "^1.8.2", | |
"@terra-money/terra.js": "^3.0.9", | |
"@zilliqa-js/zilliqa": "^3.3.4", | |
"@zondax/filecoin-signing-tools": "github:Digital-MOB-Filecoin/filecoin-signing-tools-js", | |
"algosdk": "^2.1.0", | |
"amqp-connection-manager": "^4.1.7", | |
"amqplib": "^0.10.3", | |
"aws-sdk": "^2.943.0", | |
"axios": "^0.27.2", | |
"axios-retry": "^3.3.1", | |
"bignumber.js": "^9.0.1", | |
"bitcoinjs-lib": "^5.2.0", | |
"blake2b": "^2.1.4", | |
"bn.js": "^5.2.0", | |
"bs58": "^4.0.1", | |
"bs58check": "^2.1.2", | |
"canonical-json": "0.0.4", | |
"casper-js-sdk": "^2.15.2", | |
"cbor": "^8.1.0", | |
"chacha": "^2.1.0", | |
"coininfo": "^5.2.1", | |
"cosmjs-types": "^0.5.0", | |
"dd-trace": "^3.14.1", | |
"dotenv": "^8.6.0", | |
"elliptic": "^6.5.4", | |
"eth-crypto": "^2.2.0", | |
"ethers": "^5.4.5", | |
"filecoin.js": "^0.0.5-alpha", | |
"generic-pool": "^3.8.2", | |
"i": "^0.3.7", | |
"inversify": "^6.0.1", | |
"ioredis": "^5.2.3", | |
"joi": "^17.6.0", | |
"js-sha256": "^0.9.0", | |
"limiter": "^2.1.0", | |
"lodash": "^4.17.21", | |
"nconf": "^0.11.3", | |
"near-api-js": "^0.44.2", | |
"near-seed-phrase": "^0.2.0", | |
"npm": "^8.19.2", | |
"opentelemetry-instrumentation-sequelize": "^0.32.0", | |
"pg": "^8.6.0", | |
"pino": "^7.11.0", | |
"pino-cloudwatch": "^0.7.0", | |
"pino-multi-stream": "^6.0.0", | |
"pino-pretty": "^7.6.1", | |
"pm2": "^5.2.0", | |
"promise-ratelimit": "^0.0.3", | |
"qrcode": "^1.5.0", | |
"reflect-metadata": "^0.1.13", | |
"sequelize": "^6.28.1", | |
"underscore": "1.13.1", | |
"uuid": "^8.3.2", | |
"web3": "^1.4.0", | |
"xdc3": "^1.3.13416", | |
"xrpl": "^2.13.0" | |
}, | |
"devDependencies": { | |
"@faker-js/faker": "^7.6.0", | |
"@polkadot/types": "^10.9.1", | |
"@types/amqp-connection-manager": "^2.0.12", | |
"@types/amqplib": "^0.5.17", | |
"@types/elliptic": "^6.4.13", | |
"@types/hapi__hapi": "^20.0.12", | |
"@types/jest": "^29.4.0", | |
"@types/keccak": "^3.0.1", | |
"@types/node": "^18.7.1", | |
"@types/pino": "^6.3.7", | |
"@types/qs": "^6.9.7", | |
"@types/request": "^2.48.5", | |
"@types/rosie": "^0.0.40", | |
"@typescript-eslint/eslint-plugin": "^4.26.1", | |
"@typescript-eslint/parser": "^4.26.1", | |
"eslint": "^7.24.0", | |
"eslint-config-prettier": "^6.15.0", | |
"eslint-plugin-import": "^2.23.4", | |
"eslint-plugin-prettier": "^3.1.4", | |
"esm": "^3.2.25", | |
"husky": "^8.0.0", | |
"ioredis-mock": "^8.2.2", | |
"jest": "^29.4.3", | |
"jest-mock-extended": "^3.0.1", | |
"lint-staged": "^10.5.4", | |
"nock": "^13.3.0", | |
"prettier": "^2.7.1", | |
"propine-config": "git+https://971a6f4620162d49f47b99c3da3fa74072de558d:[email protected]:Propine/propine-config#02984d9be26916c3d2659916b02e3521a73ff87b", | |
"proxyquire": "^2.1.3", | |
"rosie": "^2.1.0", | |
"sequelize-test-helpers": "^1.4.2", | |
"ts-jest": "^29.0.5", | |
"ts-node": "^10.9.1", | |
"ts-node-dev": "^2.0.0", | |
"tsconfig-paths": "^4.1.0", | |
"typescript": "^4.8.3", | |
"uglifyjs-folder": "^3.2.0" | |
}, | |
"overrides": { | |
"underscore": "$underscore", | |
"xdc3": { | |
"xdc3-bzz": { | |
"got": "13.0.0", | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core": { | |
"xdc3-core-helpers": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-method": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-requestmanager": { | |
"underscore": "1.13.1", | |
"xdc3-providers-ipc": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-providers-ws": { | |
"underscore": "1.13.1" | |
} | |
} | |
}, | |
"xdc3-eth": { | |
"underscore": "1.13.1", | |
"xdc3-core-subscriptions": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-abi": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-accounts": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-contract": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-ens": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"xdc3-utils": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"@zilliqa-js/zilliqa": { | |
"@zilliqa-js/contract": { | |
"cross-fetch": "^3.1.6", | |
"node-fetch": "2.6.11" | |
}, | |
"@zilliqa-js/core": { | |
"cross-fetch": "^3.1.6" | |
} | |
}, | |
"@zondax/filecoin-signing-tools": { | |
"axios": "^0.21.4" | |
}, | |
"@propine/shared": { | |
"sequelize": "$sequelize", | |
"@propine/balance": { | |
"sequelize": "$sequelize" | |
}, | |
"@propine/utils": { | |
"sequelize": "$sequelize" | |
} | |
}, | |
"web3": { | |
"web3-bzz": { | |
"swarm-js": { | |
"eth-lib": { | |
"ws": "7.4.6" | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "blockchain-adaptor", | |
"version": "1.0.0", | |
"description": "", | |
"scripts": { | |
"encrypt-dev-env": "openssl enc -aes-256-cbc -md sha512 -in .env -out ./env/env.enc -kfile .dotenv-password", | |
"decrypt-dev-env": "openssl enc -d -aes-256-cbc -md sha512 -out .env -in ./env/env.enc -kfile .dotenv-password", | |
"encrypt-qc-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/qc-env -out ./env/qc-env.enc -kfile .dotenv-password", | |
"decrypt-qc-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/qc-env -in ./env/qc-env.enc -kfile .dotenv-password", | |
"encrypt-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/staging-env -out ./env/staging-env.enc -kfile .dotenv-password", | |
"decrypt-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/staging-env -in ./env/staging-env.enc -kfile .dotenv-password", | |
"encrypt-preprod-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/preprod-env -out ./env/preprod-env.enc -kfile .dotenv-password", | |
"decrypt-preprod-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/preprod-env -in ./env/preprod-env.enc -kfile .dotenv-password", | |
"encrypt-sandbox-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/sandbox-env -out ./env/sandbox-env.enc -kfile .dotenv-password", | |
"decrypt-sandbox-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/sandbox-env -in ./env/sandbox-env.enc -kfile .dotenv-password", | |
"encrypt-production-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/production-env -out ./env/production-env.enc -kfile .dotenv-password", | |
"decrypt-production-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/production-env -in ./env/production-env.enc -kfile .dotenv-password", | |
"encrypt-tungsten-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/tungsten_staging-env -out ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"decrypt-tungsten-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/tungsten_staging-env -in ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"env-production-set": "npx propine-config env put-secret production venus", | |
"env-production-get": "npx propine-config env get production venus", | |
"env-production-ls": "npx propine-config env list-version production venus", | |
"env-production-set-stage": "npx propine-config env set-stage production venus production", | |
"config-production-set": "npx propine-config config put-secret production venus", | |
"config-production-get": "npx propine-config config get production venus", | |
"config-production-ls": "npx propine-config config list-version production venus", | |
"config-production-set-stage": "npx propine-config config set-stage production venus production", | |
"env-qc-set": "npx propine-config env put-secret qc venus", | |
"env-qc-get": "npx propine-config env get qc venus", | |
"env-qc-ls": "npx propine-config env list-version qc venus", | |
"env-qc-set-stage": "npx propine-config env set-stage qc venus qc", | |
"config-qc-set": "npx propine-config config put-secret qc venus", | |
"config-qc-get": "npx propine-config config get qc venus", | |
"config-qc-ls": "npx propine-config config list-version qc venus", | |
"config-qc-set-stage": "npx propine-config config set-stage qc venus qc", | |
"env-sandbox-set": "npx propine-config env put-secret sandbox venus", | |
"env-sandbox-get": "npx propine-config env get sandbox venus", | |
"env-sandbox-ls": "npx propine-config env list-version sandbox venus", | |
"env-sandbox-set-stage": "npx propine-config env set-stage sandbox venus sandbox", | |
"config-sandbox-set": "npx propine-config config put-secret sandbox venus", | |
"config-sandbox-get": "npx propine-config config get sandbox venus", | |
"config-sandbox-ls": "npx propine-config config list-version sandbox venus", | |
"config-sandbox-set-stage": "npx propine-config config set-stage sandbox venus sandbox", | |
"env-dev-set": "npx propine-config env put-secret dev venus", | |
"env-dev-get": "npx propine-config env get dev venus", | |
"env-dev-ls": "npx propine-config env list-version dev venus", | |
"config-dev-set": "npx propine-config config put-secret dev venus", | |
"config-dev-get": "npx propine-config config get dev venus", | |
"config-dev-ls": "npx propine-config config list-version dev venus", | |
"env-cryptocore_staging-set": "npx propine-config env put-secret -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-get": "npx propine-config env get -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-ls": "npx propine-config env list-version -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-set-stage": "npx propine-config env set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"config-cryptocore_staging-set": "npx propine-config config put-secret -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-get": "npx propine-config config get -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-ls": "npx propine-config config list-version -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-set-stage": "npx propine-config config set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"build": "tsc -p .", | |
"lint": "eslint --quiet -c .eslintrc --ext .ts src", | |
"copy": "npm run copy-contracts-xdc", | |
"copy:config": "cp -R ./src/configurations/*.json ./build/src/configurations", | |
"copy-contracts-xdc": "mkdir -p ./build/src/services/blockchain/xdc && cp -r src/services/blockchain/xdc/contracts build/src/services/blockchain/xdc", | |
"postinstall": "mkdir -p ./build/src/configurations && mkdir -p ./build/src/models && cp -R ./src/models ./build/src && npm run copy", | |
"start": "node -r ./tsconfig-paths-bootstrap.js build/src/index.js", | |
"mocha": "NODE_ENV=test npx mocha --timeout 20000 --require ./test/hooks.js -r ts-node/register -r tsconfig-paths/register --reporter spec \"src/**/*.spec.ts\"", | |
"test": "NODE_ENV=test node --expose-gc --max-old-space-size=4096 ./node_modules/.bin/jest --coverage --runInBand --logHeapUsage --forceExit --detectOpenHandles", | |
"azure-pipeline-commands": "npm run lint && npm run test", | |
"dev": "ts-node -r dotenv/config -r tsconfig-paths/register src/index.ts", | |
"startWf": "ts-node -r dotenv/config -r tsconfig-paths/register src/startTestingWorkflow.ts", | |
"genkey": "ts-node -r dotenv/config scripts/index.ts --debug", | |
"jest": "NODE_ENV=test jest", | |
"coverage": "jest --coverage", | |
"prettier": "prettier --write 'src/**/*.ts'", | |
"test-genesis": "npx ts-node -r tsconfig-paths/register src/services/trading/counter_parties/genesis/__test__/settlement.dummy.ts", | |
"prepare": "husky install", | |
"vault:start": "node tools/vault.js; npm run start;", | |
"uglifyjs": "uglifyjs-folder build -e -x .js -o build/" | |
}, | |
"eslintIgnore": [ | |
"src/models", | |
"*/**/*.spec.ts", | |
"*/**/*.test.ts" | |
], | |
"keywords": [], | |
"author": "", | |
"license": "", | |
"engines": { | |
"npm": ">=8.0.0", | |
"node": ">=16.0.0 <21.0.0" | |
}, | |
"dependencies": { | |
"@aave/math-utils": "^1.3.3", | |
"@anchor-protocol/anchor-earn": "^2.0.0", | |
"@blockfrost/blockfrost-js": "^5.2.0", | |
"@cosmjs/amino": "^0.28.4", | |
"@cosmjs/crypto": "^0.28.4", | |
"@cosmjs/encoding": "^0.28.4", | |
"@cosmjs/math": "^0.28.4", | |
"@cosmjs/proto-signing": "^0.28.4", | |
"@cosmjs/stargate": "^0.28.4", | |
"@emurgo/cardano-serialization-lib-nodejs": "^11.3.0", | |
"@ethereumjs/tx": "^3.3.0", | |
"@glif/filecoin-address": "^2.0.1", | |
"@hapi/boom": "^10.0.0", | |
"@hapi/hapi": "^20.2.2", | |
"@hapi/inert": "^6.0.5", | |
"@hapi/vision": "^6.1.0", | |
"@metamask/eth-sig-util": "^4.0.1", | |
"@multiversx/sdk-core": "^12.7.1", | |
"@multiversx/sdk-network-providers": "^2.0.0", | |
"@multiversx/sdk-wallet": "^4.2.0", | |
"@opentelemetry/api": "^1.7.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/auto-instrumentations-node": "^0.40.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@polkadot/api": "^10.9.1", | |
"@propine/shared": "0.3.4", | |
"@sentry/node": "^6.17.0", | |
"@sentry/tracing": "^6.17.0", | |
"@solana/web3.js": "^1.32.0", | |
"@stablelib/blake2b": "^1.0.1", | |
"@taquito/signer": "^13.0.1", | |
"@taquito/taquito": "^13.0.1", | |
"@temporalio/interceptors-opentelemetry": "^1.8.6", | |
"@temporalio/worker": "^1.8.2", | |
"@terra-money/terra.js": "^3.0.9", | |
"@zilliqa-js/zilliqa": "^3.3.4", | |
"@zondax/filecoin-signing-tools": "github:Digital-MOB-Filecoin/filecoin-signing-tools-js", | |
"algosdk": "^2.1.0", | |
"amqp-connection-manager": "^4.1.7", | |
"amqplib": "^0.10.3", | |
"aws-sdk": "^2.943.0", | |
"axios": "^0.27.2", | |
"axios-retry": "^3.3.1", | |
"bignumber.js": "^9.0.1", | |
"bitcoinjs-lib": "^5.2.0", | |
"blake2b": "^2.1.4", | |
"bn.js": "^5.2.0", | |
"bs58": "^4.0.1", | |
"bs58check": "^2.1.2", | |
"canonical-json": "0.0.4", | |
"casper-js-sdk": "^2.15.2", | |
"cbor": "^8.1.0", | |
"chacha": "^2.1.0", | |
"coininfo": "^5.2.1", | |
"cosmjs-types": "^0.5.0", | |
"dd-trace": "^3.14.1", | |
"dotenv": "^8.6.0", | |
"elliptic": "^6.5.4", | |
"eth-crypto": "^2.2.0", | |
"ethers": "^5.4.5", | |
"filecoin.js": "^0.0.5-alpha", | |
"generic-pool": "^3.8.2", | |
"i": "^0.3.7", | |
"inversify": "^6.0.1", | |
"ioredis": "^5.2.3", | |
"joi": "^17.6.0", | |
"js-sha256": "^0.9.0", | |
"limiter": "^2.1.0", | |
"lodash": "^4.17.21", | |
"nconf": "^0.11.3", | |
"near-api-js": "^0.44.2", | |
"near-seed-phrase": "^0.2.0", | |
"npm": "^8.19.2", | |
"opentelemetry-instrumentation-sequelize": "^0.32.0", | |
"pg": "^8.6.0", | |
"pino": "^7.11.0", | |
"pino-cloudwatch": "^0.7.0", | |
"pino-multi-stream": "^6.0.0", | |
"pino-pretty": "^7.6.1", | |
"pm2": "^5.2.0", | |
"promise-ratelimit": "^0.0.3", | |
"qrcode": "^1.5.0", | |
"reflect-metadata": "^0.1.13", | |
"sequelize": "^6.28.1", | |
"underscore": "1.13.1", | |
"uuid": "^8.3.2", | |
"web3": "^1.4.0", | |
"xdc3": "^1.3.13416", | |
"xrpl": "^2.13.0" | |
}, | |
"devDependencies": { | |
"@faker-js/faker": "^7.6.0", | |
"@polkadot/types": "^10.9.1", | |
"@types/amqp-connection-manager": "^2.0.12", | |
"@types/amqplib": "^0.5.17", | |
"@types/elliptic": "^6.4.13", | |
"@types/hapi__hapi": "^20.0.12", | |
"@types/jest": "^29.4.0", | |
"@types/keccak": "^3.0.1", | |
"@types/node": "^18.7.1", | |
"@types/pino": "^6.3.7", | |
"@types/qs": "^6.9.7", | |
"@types/request": "^2.48.5", | |
"@types/rosie": "^0.0.40", | |
"@typescript-eslint/eslint-plugin": "^4.26.1", | |
"@typescript-eslint/parser": "^4.26.1", | |
"eslint": "^7.24.0", | |
"eslint-config-prettier": "^6.15.0", | |
"eslint-plugin-import": "^2.23.4", | |
"eslint-plugin-prettier": "^3.1.4", | |
"esm": "^3.2.25", | |
"husky": "^8.0.0", | |
"ioredis-mock": "^8.2.2", | |
"jest": "^29.4.3", | |
"jest-mock-extended": "^3.0.1", | |
"lint-staged": "^10.5.4", | |
"nock": "^13.3.0", | |
"prettier": "^2.7.1", | |
"propine-config": "git+https://971a6f4620162d49f47b99c3da3fa74072de558d:[email protected]:Propine/propine-config#02984d9be26916c3d2659916b02e3521a73ff87b", | |
"proxyquire": "^2.1.3", | |
"rosie": "^2.1.0", | |
"sequelize-test-helpers": "^1.4.2", | |
"ts-jest": "^29.0.5", | |
"ts-node": "^10.9.1", | |
"ts-node-dev": "^2.0.0", | |
"tsconfig-paths": "^4.1.0", | |
"typescript": "^4.8.3", | |
"uglifyjs-folder": "^3.2.0" | |
}, | |
"overrides": { | |
"underscore": "$underscore", | |
"xdc3": { | |
"xdc3-bzz": { | |
"got": "13.0.0", | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core": { | |
"xdc3-core-helpers": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-method": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-requestmanager": { | |
"underscore": "1.13.1", | |
"xdc3-providers-ipc": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-providers-ws": { | |
"underscore": "1.13.1" | |
} | |
} | |
}, | |
"xdc3-eth": { | |
"underscore": "1.13.1", | |
"xdc3-core-subscriptions": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-abi": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-accounts": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-contract": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-ens": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"xdc3-utils": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"@zilliqa-js/zilliqa": { | |
"@zilliqa-js/contract": { | |
"cross-fetch": "^3.1.6", | |
"node-fetch": "2.6.11" | |
}, | |
"@zilliqa-js/core": { | |
"cross-fetch": "^3.1.6" | |
} | |
}, | |
"@zondax/filecoin-signing-tools": { | |
"axios": "^0.21.4" | |
}, | |
"@propine/shared": { | |
"sequelize": "$sequelize", | |
"@propine/balance": { | |
"sequelize": "$sequelize" | |
}, | |
"@propine/utils": { | |
"sequelize": "$sequelize" | |
} | |
}, | |
"web3": { | |
"web3-bzz": { | |
"swarm-js": { | |
"eth-lib": { | |
"ws": "7.4.6" | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/package.json","entries":[{"id":"CLVb.json","timestamp":1700370557832},{"id":"Jxbv.json","timestamp":1700374457010},{"id":"Dkc2.json","source":"undoRedo.source","timestamp":1700380283279},{"id":"7xie.json","timestamp":1700380748712}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "blockchain-adaptor", | |
"version": "1.0.0", | |
"description": "", | |
"scripts": { | |
"encrypt-dev-env": "openssl enc -aes-256-cbc -md sha512 -in .env -out ./env/env.enc -kfile .dotenv-password", | |
"decrypt-dev-env": "openssl enc -d -aes-256-cbc -md sha512 -out .env -in ./env/env.enc -kfile .dotenv-password", | |
"encrypt-qc-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/qc-env -out ./env/qc-env.enc -kfile .dotenv-password", | |
"decrypt-qc-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/qc-env -in ./env/qc-env.enc -kfile .dotenv-password", | |
"encrypt-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/staging-env -out ./env/staging-env.enc -kfile .dotenv-password", | |
"decrypt-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/staging-env -in ./env/staging-env.enc -kfile .dotenv-password", | |
"encrypt-preprod-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/preprod-env -out ./env/preprod-env.enc -kfile .dotenv-password", | |
"decrypt-preprod-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/preprod-env -in ./env/preprod-env.enc -kfile .dotenv-password", | |
"encrypt-sandbox-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/sandbox-env -out ./env/sandbox-env.enc -kfile .dotenv-password", | |
"decrypt-sandbox-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/sandbox-env -in ./env/sandbox-env.enc -kfile .dotenv-password", | |
"encrypt-production-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/production-env -out ./env/production-env.enc -kfile .dotenv-password", | |
"decrypt-production-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/production-env -in ./env/production-env.enc -kfile .dotenv-password", | |
"encrypt-tungsten-staging-env": "openssl enc -aes-256-cbc -md sha512 -in ./env/tungsten_staging-env -out ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"decrypt-tungsten-staging-env": "openssl enc -d -aes-256-cbc -md sha512 -out ./env/tungsten_staging-env -in ./env/tungsten_staging-env.enc -kfile .dotenv-password", | |
"env-production-set": "npx propine-config env put-secret production venus", | |
"env-production-get": "npx propine-config env get production venus", | |
"env-production-ls": "npx propine-config env list-version production venus", | |
"env-production-set-stage": "npx propine-config env set-stage production venus production", | |
"config-production-set": "npx propine-config config put-secret production venus", | |
"config-production-get": "npx propine-config config get production venus", | |
"config-production-ls": "npx propine-config config list-version production venus", | |
"config-production-set-stage": "npx propine-config config set-stage production venus production", | |
"env-qc-set": "npx propine-config env put-secret qc venus", | |
"env-qc-get": "npx propine-config env get qc venus", | |
"env-qc-ls": "npx propine-config env list-version qc venus", | |
"env-qc-set-stage": "npx propine-config env set-stage qc venus qc", | |
"config-qc-set": "npx propine-config config put-secret qc venus", | |
"config-qc-get": "npx propine-config config get qc venus", | |
"config-qc-ls": "npx propine-config config list-version qc venus", | |
"config-qc-set-stage": "npx propine-config config set-stage qc venus qc", | |
"env-sandbox-set": "npx propine-config env put-secret sandbox venus", | |
"env-sandbox-get": "npx propine-config env get sandbox venus", | |
"env-sandbox-ls": "npx propine-config env list-version sandbox venus", | |
"env-sandbox-set-stage": "npx propine-config env set-stage sandbox venus sandbox", | |
"config-sandbox-set": "npx propine-config config put-secret sandbox venus", | |
"config-sandbox-get": "npx propine-config config get sandbox venus", | |
"config-sandbox-ls": "npx propine-config config list-version sandbox venus", | |
"config-sandbox-set-stage": "npx propine-config config set-stage sandbox venus sandbox", | |
"env-dev-set": "npx propine-config env put-secret dev venus", | |
"env-dev-get": "npx propine-config env get dev venus", | |
"env-dev-ls": "npx propine-config env list-version dev venus", | |
"config-dev-set": "npx propine-config config put-secret dev venus", | |
"config-dev-get": "npx propine-config config get dev venus", | |
"config-dev-ls": "npx propine-config config list-version dev venus", | |
"env-cryptocore_staging-set": "npx propine-config env put-secret -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-get": "npx propine-config env get -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-ls": "npx propine-config env list-version -r eu-west-1 cryptocore_staging venus", | |
"env-cryptocore_staging-set-stage": "npx propine-config env set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"config-cryptocore_staging-set": "npx propine-config config put-secret -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-get": "npx propine-config config get -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-ls": "npx propine-config config list-version -r eu-west-1 cryptocore_staging venus", | |
"config-cryptocore_staging-set-stage": "npx propine-config config set-stage -r eu-west-1 cryptocore_staging venus cryptocore_staging", | |
"build": "tsc -p .", | |
"lint": "eslint --quiet -c .eslintrc --ext .ts src", | |
"copy": "npm run copy-contracts-xdc", | |
"copy:config": "cp -R ./src/configurations/*.json ./build/src/configurations", | |
"copy-contracts-xdc": "mkdir -p ./build/src/services/blockchain/xdc && cp -r src/services/blockchain/xdc/contracts build/src/services/blockchain/xdc", | |
"postinstall": "mkdir -p ./build/src/configurations && mkdir -p ./build/src/models && cp -R ./src/models ./build/src && npm run copy", | |
"start": "node -r ./tsconfig-paths-bootstrap.js build/src/index.js", | |
"mocha": "NODE_ENV=test npx mocha --timeout 20000 --require ./test/hooks.js -r ts-node/register -r tsconfig-paths/register --reporter spec \"src/**/*.spec.ts\"", | |
"test": "NODE_ENV=test node --expose-gc --max-old-space-size=4096 ./node_modules/.bin/jest --coverage --runInBand --logHeapUsage --forceExit --detectOpenHandles", | |
"azure-pipeline-commands": "npm run lint && npm run test", | |
"dev": "ts-node -r dotenv/config -r tsconfig-paths/register src/index.ts", | |
"startWf": "ts-node -r dotenv/config -r tsconfig-paths/register src/startTestingWorkflow.ts", | |
"genkey": "ts-node -r dotenv/config scripts/index.ts --debug", | |
"jest": "NODE_ENV=test jest", | |
"coverage": "jest --coverage", | |
"prettier": "prettier --write 'src/**/*.ts'", | |
"test-genesis": "npx ts-node -r tsconfig-paths/register src/services/trading/counter_parties/genesis/__test__/settlement.dummy.ts", | |
"prepare": "husky install", | |
"vault:start": "node tools/vault.js; npm run start;", | |
"uglifyjs": "uglifyjs-folder build -e -x .js -o build/" | |
}, | |
"eslintIgnore": [ | |
"src/models", | |
"*/**/*.spec.ts", | |
"*/**/*.test.ts" | |
], | |
"keywords": [], | |
"author": "", | |
"license": "", | |
"engines": { | |
"npm": ">=8.0.0", | |
"node": ">=16.0.0 <21.0.0" | |
}, | |
"dependencies": { | |
"@aave/math-utils": "^1.3.3", | |
"@anchor-protocol/anchor-earn": "^2.0.0", | |
"@blockfrost/blockfrost-js": "^5.2.0", | |
"@cosmjs/amino": "^0.28.4", | |
"@cosmjs/crypto": "^0.28.4", | |
"@cosmjs/encoding": "^0.28.4", | |
"@cosmjs/math": "^0.28.4", | |
"@cosmjs/proto-signing": "^0.28.4", | |
"@cosmjs/stargate": "^0.28.4", | |
"@emurgo/cardano-serialization-lib-nodejs": "^11.3.0", | |
"@ethereumjs/tx": "^3.3.0", | |
"@glif/filecoin-address": "^2.0.1", | |
"@hapi/boom": "^10.0.0", | |
"@hapi/hapi": "^20.2.2", | |
"@hapi/inert": "^6.0.5", | |
"@hapi/vision": "^6.1.0", | |
"@metamask/eth-sig-util": "^4.0.1", | |
"@multiversx/sdk-core": "^12.7.1", | |
"@multiversx/sdk-network-providers": "^2.0.0", | |
"@multiversx/sdk-wallet": "^4.2.0", | |
"@opentelemetry/api": "^1.1.0", | |
"@opentelemetry/api-metrics": "^0.31.0", | |
"@opentelemetry/exporter-collector-grpc": "^0.25.0", | |
"@opentelemetry/exporter-trace-otlp-grpc": "^0.36.1", | |
"@opentelemetry/id-generator-aws-xray": "^1.1.0", | |
"@opentelemetry/instrumentation": "^0.31.0", | |
"@opentelemetry/instrumentation-amqplib": "^0.30.0", | |
"@opentelemetry/instrumentation-connect": "^0.30.0", | |
"@opentelemetry/instrumentation-dns": "^0.30.0", | |
"@opentelemetry/instrumentation-hapi": "^0.29.0", | |
"@opentelemetry/instrumentation-http": "^0.31.0", | |
"@opentelemetry/instrumentation-net": "^0.30.0", | |
"@opentelemetry/instrumentation-pg": "^0.30.0", | |
"@opentelemetry/instrumentation-pino": "^0.30.0", | |
"@opentelemetry/propagator-aws-xray": "^1.1.0", | |
"@opentelemetry/sdk-trace-base": "^1.11.0", | |
"@opentelemetry/sdk-trace-node": "^1.5.0", | |
"@opentelemetry/semantic-conventions": "^1.5.0", | |
"@polkadot/api": "^10.9.1", | |
"@propine/shared": "0.3.4", | |
"@sentry/node": "^6.17.0", | |
"@sentry/tracing": "^6.17.0", | |
"@solana/web3.js": "^1.32.0", | |
"@stablelib/blake2b": "^1.0.1", | |
"@taquito/signer": "^13.0.1", | |
"@taquito/taquito": "^13.0.1", | |
"@temporalio/interceptors-opentelemetry": "^1.8.6", | |
"@temporalio/worker": "^1.8.2", | |
"@terra-money/terra.js": "^3.0.9", | |
"@zilliqa-js/zilliqa": "^3.3.4", | |
"@zondax/filecoin-signing-tools": "github:Digital-MOB-Filecoin/filecoin-signing-tools-js", | |
"algosdk": "^2.1.0", | |
"amqp-connection-manager": "^4.1.7", | |
"amqplib": "^0.10.3", | |
"aws-sdk": "^2.943.0", | |
"axios": "^0.27.2", | |
"axios-retry": "^3.3.1", | |
"bignumber.js": "^9.0.1", | |
"bitcoinjs-lib": "^5.2.0", | |
"blake2b": "^2.1.4", | |
"bn.js": "^5.2.0", | |
"bs58": "^4.0.1", | |
"bs58check": "^2.1.2", | |
"canonical-json": "0.0.4", | |
"casper-js-sdk": "^2.15.2", | |
"cbor": "^8.1.0", | |
"chacha": "^2.1.0", | |
"coininfo": "^5.2.1", | |
"cosmjs-types": "^0.5.0", | |
"dd-trace": "^3.14.1", | |
"dotenv": "^8.6.0", | |
"elliptic": "^6.5.4", | |
"eth-crypto": "^2.2.0", | |
"ethers": "^5.4.5", | |
"filecoin.js": "^0.0.5-alpha", | |
"generic-pool": "^3.8.2", | |
"i": "^0.3.7", | |
"inversify": "^6.0.1", | |
"ioredis": "^5.2.3", | |
"joi": "^17.6.0", | |
"js-sha256": "^0.9.0", | |
"limiter": "^2.1.0", | |
"lodash": "^4.17.21", | |
"nconf": "^0.11.3", | |
"near-api-js": "^0.44.2", | |
"near-seed-phrase": "^0.2.0", | |
"npm": "^8.19.2", | |
"opentelemetry-instrumentation-sequelize": "^0.32.0", | |
"pg": "^8.6.0", | |
"pino": "^7.11.0", | |
"pino-cloudwatch": "^0.7.0", | |
"pino-multi-stream": "^6.0.0", | |
"pino-pretty": "^7.6.1", | |
"pm2": "^5.2.0", | |
"promise-ratelimit": "^0.0.3", | |
"qrcode": "^1.5.0", | |
"reflect-metadata": "^0.1.13", | |
"sequelize": "^6.28.1", | |
"underscore": "1.13.1", | |
"uuid": "^8.3.2", | |
"web3": "^1.4.0", | |
"xdc3": "^1.3.13416", | |
"xrpl": "^2.13.0" | |
}, | |
"devDependencies": { | |
"@faker-js/faker": "^7.6.0", | |
"@polkadot/types": "^10.9.1", | |
"@types/amqp-connection-manager": "^2.0.12", | |
"@types/amqplib": "^0.5.17", | |
"@types/elliptic": "^6.4.13", | |
"@types/hapi__hapi": "^20.0.12", | |
"@types/jest": "^29.4.0", | |
"@types/keccak": "^3.0.1", | |
"@types/node": "^18.7.1", | |
"@types/pino": "^6.3.7", | |
"@types/qs": "^6.9.7", | |
"@types/request": "^2.48.5", | |
"@types/rosie": "^0.0.40", | |
"@typescript-eslint/eslint-plugin": "^4.26.1", | |
"@typescript-eslint/parser": "^4.26.1", | |
"eslint": "^7.24.0", | |
"eslint-config-prettier": "^6.15.0", | |
"eslint-plugin-import": "^2.23.4", | |
"eslint-plugin-prettier": "^3.1.4", | |
"esm": "^3.2.25", | |
"husky": "^8.0.0", | |
"ioredis-mock": "^8.2.2", | |
"jest": "^29.4.3", | |
"jest-mock-extended": "^3.0.1", | |
"lint-staged": "^10.5.4", | |
"nock": "^13.3.0", | |
"prettier": "^2.7.1", | |
"propine-config": "git+https://971a6f4620162d49f47b99c3da3fa74072de558d:[email protected]:Propine/propine-config#02984d9be26916c3d2659916b02e3521a73ff87b", | |
"proxyquire": "^2.1.3", | |
"rosie": "^2.1.0", | |
"sequelize-test-helpers": "^1.4.2", | |
"ts-jest": "^29.0.5", | |
"ts-node": "^10.9.1", | |
"ts-node-dev": "^2.0.0", | |
"tsconfig-paths": "^4.1.0", | |
"typescript": "^4.8.3", | |
"uglifyjs-folder": "^3.2.0" | |
}, | |
"overrides": { | |
"underscore": "$underscore", | |
"xdc3": { | |
"xdc3-bzz": { | |
"got": "13.0.0", | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core": { | |
"xdc3-core-helpers": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-method": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-core-requestmanager": { | |
"underscore": "1.13.1", | |
"xdc3-providers-ipc": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-providers-ws": { | |
"underscore": "1.13.1" | |
} | |
} | |
}, | |
"xdc3-eth": { | |
"underscore": "1.13.1", | |
"xdc3-core-subscriptions": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-abi": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-accounts": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-contract": { | |
"underscore": "1.13.1" | |
}, | |
"xdc3-eth-ens": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"xdc3-utils": { | |
"underscore": "1.13.1" | |
} | |
}, | |
"@zilliqa-js/zilliqa": { | |
"@zilliqa-js/contract": { | |
"cross-fetch": "^3.1.6", | |
"node-fetch": "2.6.11" | |
}, | |
"@zilliqa-js/core": { | |
"cross-fetch": "^3.1.6" | |
} | |
}, | |
"@zondax/filecoin-signing-tools": { | |
"axios": "^0.21.4" | |
}, | |
"@propine/shared": { | |
"sequelize": "$sequelize", | |
"@propine/balance": { | |
"sequelize": "$sequelize" | |
}, | |
"@propine/utils": { | |
"sequelize": "$sequelize" | |
} | |
}, | |
"web3": { | |
"web3-bzz": { | |
"swarm-js": { | |
"eth-lib": { | |
"ws": "7.4.6" | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/.env","entries":[{"id":"Pl4R","timestamp":1692071968844},{"id":"qanP","timestamp":1692072233583},{"id":"e6oz","timestamp":1692074869369},{"id":"ATkR","timestamp":1692149824552},{"id":"Lt4E","timestamp":1695095645566},{"id":"gZtD","timestamp":1695110736547},{"id":"6ZbI","timestamp":1695111765639},{"id":"ZD4l","timestamp":1695112643169},{"id":"uRgt","timestamp":1696302109621},{"id":"Xpft","timestamp":1696472457431},{"id":"Pkij","timestamp":1697165534585},{"id":"6riJ","timestamp":1699849661044},{"id":"O38S","timestamp":1699948318248},{"id":"BaMs","timestamp":1700554187471},{"id":"DEbA","timestamp":1700554589696},{"id":"mYPI","timestamp":1700554866122},{"id":"uymN","timestamp":1700555785047},{"id":"2qbh","timestamp":1700555806300},{"id":"kuH7","timestamp":1700555915848},{"id":"EN2Z","timestamp":1703060209016},{"id":"bx9b","timestamp":1703060242382}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/web_portal/app/javascript/themes/index.js","entries":[{"id":"ORV0.js","timestamp":1694580571221}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/poseidon/src/utils/index.ts","entries":[{"id":"dVvY.ts","timestamp":1694554881856}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/deleteUser.hbs","entries":[{"id":"sgAC.hbs","timestamp":1694658558099},{"id":"OVb2.hbs","timestamp":1694658701148}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/hooks/useTransactionReports.ts","entries":[{"id":"GWeB.ts","timestamp":1692776566455},{"id":"wlkh.ts","timestamp":1692776589211},{"id":"hwGo.ts","timestamp":1692776643289},{"id":"nwRZ.ts","timestamp":1692777056722},{"id":"yMNe.ts","timestamp":1692777108068},{"id":"xSTq.ts","timestamp":1701417587558},{"id":"LZ7x.ts","timestamp":1701417698979},{"id":"zejZ.ts","timestamp":1701417718581},{"id":"fCs6.ts","timestamp":1701418501001},{"id":"mF4B.ts","timestamp":1701419682786},{"id":"n1LA.ts","timestamp":1701420211774},{"id":"6Hrr.ts","timestamp":1701420341987},{"id":"00Bx.ts","timestamp":1701663567221},{"id":"BxoP.ts","timestamp":1701663601844},{"id":"EnTf.ts","timestamp":1701663648975},{"id":"Ft35.ts","timestamp":1701663659198},{"id":"VJp4.ts","timestamp":1701663670695},{"id":"EMQa.ts","timestamp":1701663719924},{"id":"4q5O.ts","timestamp":1701663755994},{"id":"ogb1.ts","timestamp":1701663773570}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/modules/mq/main.tf","entries":[{"id":"fgdM.tf","timestamp":1697063703677}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/Downloads/generateApiKey.ts","entries":[{"id":"Jav4.ts","source":"textFileCreate.source","timestamp":1697447659649}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/pages/customer/portfolios/new/UsersAndPermissions.tsx","entries":[{"id":"wDK6.tsx","timestamp":1699347840162},{"id":"QEeS.tsx","timestamp":1699348919030},{"id":"S8hz.tsx","timestamp":1699349419186},{"id":"ojaf.tsx","timestamp":1699349496449},{"id":"pTBK.tsx","timestamp":1699349519041},{"id":"kqQV.tsx","timestamp":1699349566458},{"id":"S6nj.tsx","timestamp":1699350097190},{"id":"zjYO.tsx","timestamp":1699350113436},{"id":"3PtG.tsx","timestamp":1699350132644},{"id":"5SO4.tsx","timestamp":1699350183643},{"id":"VOcC.tsx","timestamp":1699363473147},{"id":"d2nD.tsx","timestamp":1699363533026},{"id":"QpFc.tsx","timestamp":1699363559300},{"id":"SRIC.tsx","source":"undoRedo.source","timestamp":1699363601192},{"id":"0bHy.tsx","timestamp":1699363618056},{"id":"DtBU.tsx","timestamp":1699363640172},{"id":"gN7w.tsx","timestamp":1699363659105},{"id":"ep6Q.tsx","timestamp":1699363674011},{"id":"iBjt.tsx","timestamp":1699363771756},{"id":"vUyK.tsx","timestamp":1699502649539},{"id":"m964.tsx","timestamp":1699503751121},{"id":"cz12.tsx","timestamp":1699504632263},{"id":"EykC.tsx","timestamp":1699504691882},{"id":"OYnM.tsx","timestamp":1699504709764},{"id":"rVr3.tsx","source":"undoRedo.source","timestamp":1699507609435},{"id":"CKXg.tsx","timestamp":1699507648569},{"id":"D31P.tsx","timestamp":1699519307893}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/portfolios/crypto/withdrawals/controller.ts","entries":[{"id":"rd1y.ts","timestamp":1692864648847}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/db/sqitch.cryptocore-production.plan","entries":[{"id":"Nebd.plan","timestamp":1697613249948},{"id":"HVKc.plan","timestamp":1697613262655},{"id":"aXY0.plan","timestamp":1702454797474},{"id":"JJw8.plan","timestamp":1703034875897},{"id":"92Kx.plan","timestamp":1703040599057},{"id":"e9zN.plan","timestamp":1703146760314}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/configurations/institutions/propine.config.ts","entries":[{"id":"azbT.ts","timestamp":1697430237458},{"id":"PMyD.ts","source":"Workspace Edit","timestamp":1697431853107},{"id":"kQMy.ts","timestamp":1697431872080},{"id":"iAxV.ts","timestamp":1697441342007},{"id":"OUhu.ts","timestamp":1697441518532},{"id":"FBdq.ts","timestamp":1697441542627},{"id":"SNNL.ts","timestamp":1698915729244},{"id":"Ar55.ts","timestamp":1699002868494},{"id":"1wNz.ts","timestamp":1699364074719},{"id":"sS6k.ts","timestamp":1699407681472},{"id":"lnHN.ts","timestamp":1703140525780}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/checkAndAutoTopUpGasFeeAsRequired.ts","entries":[{"id":"dPvX.ts","timestamp":1700713269864},{"id":"49eg.ts","timestamp":1700723218316},{"id":"yGli.ts","timestamp":1703059469313}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/cryptoAccountModificationRequestResult.hbs","entries":[{"id":"Ob6J.hbs","timestamp":1694660021598},{"id":"xc9w.hbs","timestamp":1694660040733},{"id":"d5r0.hbs","timestamp":1694660057956}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"server": { | |
"port": 5010, | |
"blockchainAdaptorExchange": "blockchain_adaptor_service", | |
"policyServiceExchange": "policy_service", | |
"scheduledJobsExchange": "scheduled_jobs" | |
}, | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.qc.propine.com", | |
"dialect": "postgres" | |
}, | |
"apolloBaseUrl": "https://api.qc.propine.com", | |
"portal": { | |
"host": "https://app.qc.propine.com" | |
}, | |
"athena": { | |
"host": "https://app2.qc.propine.com" | |
}, | |
"vendor": { | |
"elastic": { | |
"node": "" | |
}, | |
"rabbitmq": { | |
"host": "mq", | |
"port": 5672, | |
"username": "guest", | |
"password": "guest", | |
"defaultVhost": "propine", | |
"protocol": "amqp", | |
"exchangeName": "audit_trail", | |
"queueName": "audit_trail_log_queue" | |
}, | |
"sentry": { | |
"dsn": "https://[email protected]/5984025" | |
}, | |
"cloudWatch": { | |
"logGroup": "/ecs-qc-app/zeus", | |
"region": "ap-southeast-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
}, | |
"cardano": { | |
"blockfrostApiKey": "", | |
"networkName": "" | |
}, | |
"awsSes": { | |
"region": "", | |
"accessKeyId": "", | |
"secretAccessKey": "" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/configurations/config.qc.json","entries":[{"id":"1RL8.json","timestamp":1694729739165}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/CryptoAccountModificationRequestText.hbs","entries":[{"id":"Aa1c.hbs","timestamp":1694659924431},{"id":"1Scx.hbs","timestamp":1694659940854},{"id":"dt3f.hbs","source":"searchReplace.source","timestamp":1694710068424}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/Dockerfile","entries":[{"id":"sNlc","timestamp":1694496025753},{"id":"pu2Z","timestamp":1694498055876},{"id":"OXmd","timestamp":1694506008307},{"id":"98ZO","timestamp":1694746436498}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/bin/emails/processors/nftDepositPendingApproval.ts","entries":[{"id":"8XyQ.ts","timestamp":1696478300562}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/utils/helper.ts","entries":[{"id":"wU5f.ts","timestamp":1698044997580},{"id":"l3iV.ts","timestamp":1698045018369},{"id":"GlbB.ts","timestamp":1698045034283},{"id":"ByyL.ts","timestamp":1698045300538},{"id":"jpTp.ts","timestamp":1698045355624}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/bin/emails/processors/deleteUser.ts","entries":[{"id":"LtwP.ts","timestamp":1694657333047}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"server": { | |
"port": 5001, | |
"routePrefix": "", | |
"plugins": [], | |
"host": "venus-api.450939.com", | |
"protocol": "https", | |
"rejectUnauthorized": true | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "venus", | |
"password": "", | |
"defaultVHost": "cryptocore", | |
"exchangeName": "blockchain_adaptor_service", | |
"queueName": "action_request_queue", | |
"scheduledJobsExchangeName": "scheduled_jobs", | |
"scheduledJobsQueueName": "scheduled_jobs_queue", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.450939.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/ecs-sandbox-app/venus", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
}, | |
"genesis": { | |
"host": "https://trading.uat.genesistrading.com" | |
}, | |
"redis": { | |
"host": "master.production-redis.yijdwo.euw1.cache.amazonaws.com", | |
"port": 6336, | |
"username": "default", | |
"password": "", | |
"protocol": "rediss" | |
} | |
}, | |
"hermesBaseUrl": "https://hermes.450939.com/v1", | |
"blockchain": { | |
"issuanceAbi": "IssuanceCoin.json", | |
"proxyAbi": "OwnedUpgradeabilityProxy.json", | |
"multiSignatureAbi": "PropineMultiSigWallet.json", | |
"bitcoin": { | |
"bitcoin": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "main", | |
"backupApiHost": "https://api.bitaps.com/btc", | |
"medianTransactionSize": 226, | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
}, | |
"testnet": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "test3", | |
"backupApiHost": "https://api.bitaps.com/btc/testnet", | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
} | |
}, | |
"ethereum": { | |
"mainnet": { | |
"httpProvider": "https://mainnet.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 1, | |
"etherscanAPIUrl": "https://api.etherscan.io", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/1/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0xc00e94cb662c3520282e6f5717214004a7f26888" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0x514910771af9ca656af840dff83e8264ecf986ca" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x4Fabb145d64652a948d72533023f6E7A623C7C53" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x0000000000085d4780B73119b644AE5ecd22b376" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xD533a949740bb3306d119CC777fa900bA034cd52" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x41A3Dba3D677E573636BA691a70ff2D606c29666" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0xf8C3527CC04340b208C854E985240c02F7B7793f" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0xB37a769B37224449d92AAc57dE379E1267Cd3B00" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x57B946008913B82E4dF85f501cbAeD910e58D26C" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xe5D2e173B120341face9e9970889C9FE64081FfD" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xdB25f211AB05b1c97D595516F45794528a807ad8" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://sepolia.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 11155111, | |
"etherscanAPIUrl": "https://api-sepolia.etherscan.io/", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/11155111/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0x5ab10C716716f6F1a2a0848BB6B36B89d7F5A24d" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xD4778aA86D4EF3513A5A1c4d8d6e121F3Ba58236" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0x477e27CeA73BEd7aa029cd67AbC4FD56ADF271F2" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0xF6cAc2f1DF51B8778212B71bBF0C5FB296189fDf" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x0cC1e4f68f270e21705F5D0102DaA46F4A079ece" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x744D577Cb9abA6Cbc3e3a839eAC6Bf2fda3ff276" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0xEb01c20166eEbbFCeaD2b9d5eE8efc471a984FC4" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0x7d615c9506E1e529f6ad17840BF39A2E1af49c95" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0xf7F4286Cde036Ae2c6355B67801D59423F029115" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x23ADf51a8B82cf003Ed841AeCFde89b622E8B0d7" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0xf8583bdbd2d3734b5cab490d251df2cd82a15433" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0xa3228A0cE80D5Eb5Da30EEdfa7c350aaF1df4F75" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x9e6E94d1c98194c948617c27623A922CbAF454e7" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x314bd3AcB98BB07C6fe628E94FBF686b28D3c34B" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x2C251Fc8eD0ef450234A27D448e181d046B83556" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0x5775a01c75aCA9e0DF45FE072d8EF4EFAC6207c9" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x373Ff71Ed002Cf19EC2FAa2616fc54B51F02136b" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0xBaa9e0793E1eb20F71b3B927A4A450448aB81048" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x66181570Fb9616576DB867F11d96D20119dd614E" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xaebc216e7b9f1712d1b0b89a57171a6608e6eb82" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x64078a6189bf45f80091c6ff2fcee1b15ac8dbde" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0x824eF5755CD8F6FB110a64A59946639430628069" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0x5d9C96bf6176f59b22fA0f7152A45FB8dD6daFc3" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x9D178e77fb3C60dF40bEb92Ad497498B8E4e496D" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0x0f215467A06956FbfE82B6CB12D15FCcFfD79700" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0x4218A408D1536CC24d7c01A0Fa656D1AA8Ef9163" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0x2F64eA91347C5941Eb2c2A2629faa1a65B221573" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x810aC7FF4E2fFc3817E8762dC9FE5aA9217BcB06" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xAE1164BE42Dbf1ca9E7395A52c1BFBaF018B23af" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0x0dd2D2490a193dDC046F455BC3899f5fA81e669e" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0x834efFEC7daFDFEd79F63e8A09abfE64ab074204" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0x7233Fd1187Dc9B5CD12Ab949508bF7e0ac0f7D6E" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0xAd34a92D9071f6ee5fDecC89B88aDc9cE02284A4" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x16bc6cE19718A0e71AA7a9Bf52cDA694D3e1C164" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x6d0A65a41d53A645503c4fa1a9E657eD4eC13C91" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0x8e223477B09b8fce00a56E2424E131225e8730c2" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xb28865CD4F20C1b63EE38C69D24B7175c571f7f8" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xfBfC6c39E2E25c87DC251CCD6180a0795014CF46" | |
} | |
] | |
} | |
}, | |
"binance": { | |
"mainnet": { | |
"httpProvider": "https://bsc-dataseed.binance.org/", | |
"chainId": 56, | |
"bscScanUrl": "https://bscscan.com", | |
"apiURL": "https://api.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x55d398326f99059fF775485246999027B3197955" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://data-seed-prebsc-1-s1.binance.org:8545/", | |
"chainId": 97, | |
"bscScanUrl": "https://testnet.bscscan.com", | |
"apiURL": "https://api-testnet.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xeD24FC36d5Ee211Ea25A80239Fb8C4Cfd80f12Ee" | |
} | |
] | |
} | |
}, | |
"xinfin": { | |
"mainnet": { | |
"httpProvider": "https://rpc.xinfin.network", | |
"chainId": 50, | |
"gasPrice": 20000000000, | |
"blocksScanUrl": "https://xdc.blocksscan.io", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc5d5f074837f5d4618b3916ba74de1bf9662a3fed" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdcff7412ea7c8445c46a8254dfb557ac1e48094391" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdc8f9920283470f52128bf11b0c14e798be704fd15" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.apothem.network", | |
"chainId": 51, | |
"gasPrice": 250000000, | |
"blocksScanUrl": "https://apothem.blocksscan.io/", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc7963447b34c3847b5ffeef2a178c1528dd0cd0f6" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdce2ef926d8c6f7773bb69b20f9a86f8dbe81145d9" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdca39598d6b4d9107ccc0f970e5b0f0ecbe18d5a59" | |
}, | |
{ | |
"tokenName": "YPUSDC", | |
"decimals": 6, | |
"contractAddress": "xdcfEe657401B5955B05E10FE47c9FBF0b607b25272" | |
} | |
] | |
} | |
}, | |
"cardano": { | |
"mainnet": { | |
"blockfrostAPIKey": "" | |
}, | |
"testnet": { | |
"blockfrostAPIKey": "" | |
} | |
}, | |
"ripple": { | |
"testnet": { | |
"httpProvider": "wss://s.altnet.rippletest.net:51233" | |
}, | |
"mainnet": { | |
"httpProvider": "wss://xrplcluster.com" | |
} | |
}, | |
"polygon": { | |
"mainnet": { | |
"httpProvider": "https://polygon-rpc.com", | |
"chainId": 137, | |
"gasPrice": 25000000000, | |
"gasStationApiUrl": "https://gasstation-mainnet.matic.network/v2", | |
"etherscanAPIUrl": "https://api.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc-mumbai.maticvigil.com", | |
"chainId": 80001, | |
"gasPrice": 20000000000, | |
"gasStationApiUrl": "https://gasstation-mumbai.matic.today/v2", | |
"etherscanAPIUrl": "https://api-testnet.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2058A9D7613eEE744279e3856Ef0eAda5FCbaA7e" | |
} | |
] | |
} | |
}, | |
"solana": {}, | |
"avalanche": { | |
"mainnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax.network", | |
"chainId": 43114, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
}, | |
"testnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax-test.network", | |
"chainId": 43113, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
} | |
}, | |
"terra": { | |
"mainnet": { | |
"httpProvider": "https://lcd.terra.dev/", | |
"chainId": "columbus-5", | |
"gasStationApiUrl": "https://fcd.terra.dev/", | |
"blocksScanUrl": "https://api.extraterrestrial.money/" | |
}, | |
"testnet": { | |
"httpProvider": "https://bombay-lcd.terra.dev/", | |
"chainId": "bombay-12", | |
"gasStationApiUrl": "https://bombay-fcd.terra.dev/", | |
"blocksScanUrl": "https://api-testnet.extraterrestrial.money/" | |
} | |
}, | |
"casper": { | |
"mainnet": { | |
"httpProvider": "https://node-clarity-mainnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-mainnet.make.services", | |
"chainName": "casper" | |
}, | |
"testnet": { | |
"httpProvider": "https://node-clarity-testnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-testnet.make.services", | |
"chainName": "casper-test" | |
} | |
}, | |
"elrond": { | |
"mainnet": { | |
"proxyProvider": "https://gateway.multiversx.com", | |
"apiProvier": "https://api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "1" | |
} | |
}, | |
"testnet": { | |
"proxyProvider": "https://testnet-gateway.multiversx.com", | |
"apiProvier": "https://testnet-api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "T" | |
} | |
} | |
}, | |
"zilliqa": { | |
"mainnet": { | |
"httpProvider": "https://api.zilliqa.com", | |
"devexHttpProvider": "https://devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil180v66mlw007ltdv8tq5t240y7upwgf7djklmwh" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1cuf78e3p37utekgk0gtcvd3hvkrqcgt06lrnty" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://dev-api.zilliqa.com", | |
"devexHttpProvider": "https://stg-devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil1tpmfqtras2pv3t84kdq8dfdv38l3tel8pqthnu" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1tjx464ayk4lxvq4qxa595eadqd3tuann97hglf" | |
} | |
] | |
} | |
}, | |
"near": { | |
"mainnet": { | |
"httpProvider": "https://rpc.near.org", | |
"apiHost": "https://nearblocks.io/api", | |
"backupApi": "https://api.kitwallet.app" | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.testnet.near.org", | |
"apiHost": "https://testnet.nearblocks.io/api", | |
"backupApi": "https://testnet-api.kitwallet.app" | |
} | |
}, | |
"tezos": { | |
"mainnet": { | |
"rpcUrl": "", | |
"apiUrl": "", | |
"gasLimit": 10600 | |
}, | |
"testnet": { | |
"rpcUrl": "https://rpc.ghostnet.teztnets.xyz", | |
"apiUrl": "https://api.ghostnet.tzkt.io", | |
"gasLimit": 10600 | |
} | |
}, | |
"polkadot": { | |
"mainnet": { | |
"httpProvider": "wss://rpc.polkadot.io", | |
"scanApiUrl": "https://polkadot.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://westend-rpc.polkadot.io", | |
"scanApiUrl": "https://westend.webapi.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"moonriver": { | |
"mainnet": { | |
"httpProvider": "wss://moonriver.public.blastapi.io", | |
"scanApiUrl": "https://moonriver.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://moonbase-alpha.public.blastapi.io", | |
"scanApiUrl": "https://moonbase.api.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"filecoin": { | |
"mainnet": { | |
"httpProvider": "https://api.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph.glif.link/query", | |
"filScanHttpProvider": "https://api.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
}, | |
"testnet": { | |
"httpProvider": "https://api.calibration.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph-calibration.glif.link/query", | |
"filScanHttpProvider": "https://calibration.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
} | |
}, | |
"algorand": { | |
"mainnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=", | |
"genesisId": "mainnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": {} | |
}, | |
"testnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=", | |
"genesisId": "testnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": { | |
"USDT": { | |
"assetId": 94115664, | |
"decimals": 6 | |
} | |
} | |
} | |
} | |
}, | |
"hpcs": { | |
"xdc": { | |
"deployer": { | |
"address": "process.env.HPCS_XDC_DEPLOYER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_DEPLOYER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_DEPLOYER_PUBLIC_KEY" | |
}, | |
"backOfficer": { | |
"address": "process.env.HPCS_XDC_BACKOFFICER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_BACKOFFICER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_BACKOFFICER_PUBLIC_KEY" | |
} | |
} | |
}, | |
"customerHolderForIssuance": { | |
"ERC20": "FRONT_OFFICE", | |
"XYM": "FRONT_OFFICE", | |
"NOP": "", | |
"XRC20": "HPCS" | |
}, | |
"midOfficeNotifications": { | |
"operationsMailId": "", | |
"notifyOperationsMail": false, | |
"notifyMidOfficersFromDatabase": true | |
}, | |
"signet": { | |
"host": "https://uat02-api.app.signet.com", | |
"sourceId": "PropineSignetUAT", | |
"audience": "PropineSignetUAT", | |
"clientId": "", | |
"clientSecret": "", | |
"apiConfirmCode": "SXtpmA", | |
"originatorId": "1580011361", | |
"internalAddress": "", | |
"genesis": { | |
"address": "" | |
} | |
}, | |
"etherScanAPIRateLimits": { | |
"perSecond": 5, | |
"perDay": 100000 | |
}, | |
"institution": { | |
"supportedTokens": { | |
"networks": ["Ethereum"], | |
"tokens": ["ETH", "USDT", "USDC"] | |
} | |
}, | |
"tatum": { "chainType": "testnet", "apiUrl": "https://api.tatum.io/v4"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"server": { | |
"port": 5001, | |
"routePrefix": "", | |
"plugins": [], | |
"host": "venus-api.450939.com", | |
"protocol": "https", | |
"rejectUnauthorized": true | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-bba3ed44-a1fa-4611-891b-05132fb9f1a4.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "venus", | |
"password": "", | |
"defaultVHost": "cryptocore", | |
"exchangeName": "blockchain_adaptor_service", | |
"queueName": "action_request_queue", | |
"scheduledJobsExchangeName": "scheduled_jobs", | |
"scheduledJobsQueueName": "scheduled_jobs_queue", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.multicoin.dev.01123581.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/ecs-sandbox-app/venus", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
}, | |
"genesis": { | |
"host": "https://trading.uat.genesistrading.com" | |
}, | |
"redis": { | |
"host": "master.staging-redis.dobln6.euw1.cache.amazonaws.com", | |
"port": 6336, | |
"username": "default", | |
"password": "", | |
"protocol": "rediss" | |
} | |
}, | |
"hermesBaseUrl": "https://hermes.multicoin.dev.01123581.com/v1", | |
"blockchain": { | |
"issuanceAbi": "IssuanceCoin.json", | |
"proxyAbi": "OwnedUpgradeabilityProxy.json", | |
"multiSignatureAbi": "PropineMultiSigWallet.json", | |
"bitcoin": { | |
"bitcoin": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "main", | |
"backupApiHost": "https://api.bitaps.com/btc", | |
"medianTransactionSize": 226, | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
}, | |
"testnet": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "test3", | |
"backupApiHost": "https://api.bitaps.com/btc/testnet", | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
} | |
}, | |
"ethereum": { | |
"mainnet": { | |
"httpProvider": "https://mainnet.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 1, | |
"etherscanAPIUrl": "https://api.etherscan.io", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/1/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0xc00e94cb662c3520282e6f5717214004a7f26888" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0x514910771af9ca656af840dff83e8264ecf986ca" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x4Fabb145d64652a948d72533023f6E7A623C7C53" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x0000000000085d4780B73119b644AE5ecd22b376" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xD533a949740bb3306d119CC777fa900bA034cd52" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x41A3Dba3D677E573636BA691a70ff2D606c29666" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0xf8C3527CC04340b208C854E985240c02F7B7793f" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0xB37a769B37224449d92AAc57dE379E1267Cd3B00" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x57B946008913B82E4dF85f501cbAeD910e58D26C" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xe5D2e173B120341face9e9970889C9FE64081FfD" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xdB25f211AB05b1c97D595516F45794528a807ad8" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://sepolia.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 11155111, | |
"etherscanAPIUrl": "https://api-sepolia.etherscan.io/", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/11155111/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0x5ab10C716716f6F1a2a0848BB6B36B89d7F5A24d" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xD4778aA86D4EF3513A5A1c4d8d6e121F3Ba58236" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0x477e27CeA73BEd7aa029cd67AbC4FD56ADF271F2" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0xF6cAc2f1DF51B8778212B71bBF0C5FB296189fDf" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x0cC1e4f68f270e21705F5D0102DaA46F4A079ece" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x744D577Cb9abA6Cbc3e3a839eAC6Bf2fda3ff276" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0xEb01c20166eEbbFCeaD2b9d5eE8efc471a984FC4" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0x7d615c9506E1e529f6ad17840BF39A2E1af49c95" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0xf7F4286Cde036Ae2c6355B67801D59423F029115" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x23ADf51a8B82cf003Ed841AeCFde89b622E8B0d7" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0xf8583bdbd2d3734b5cab490d251df2cd82a15433" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0xa3228A0cE80D5Eb5Da30EEdfa7c350aaF1df4F75" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x9e6E94d1c98194c948617c27623A922CbAF454e7" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x314bd3AcB98BB07C6fe628E94FBF686b28D3c34B" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x2C251Fc8eD0ef450234A27D448e181d046B83556" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0x5775a01c75aCA9e0DF45FE072d8EF4EFAC6207c9" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x373Ff71Ed002Cf19EC2FAa2616fc54B51F02136b" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0xBaa9e0793E1eb20F71b3B927A4A450448aB81048" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x66181570Fb9616576DB867F11d96D20119dd614E" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xaebc216e7b9f1712d1b0b89a57171a6608e6eb82" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x64078a6189bf45f80091c6ff2fcee1b15ac8dbde" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0x824eF5755CD8F6FB110a64A59946639430628069" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0x5d9C96bf6176f59b22fA0f7152A45FB8dD6daFc3" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x9D178e77fb3C60dF40bEb92Ad497498B8E4e496D" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0x0f215467A06956FbfE82B6CB12D15FCcFfD79700" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0x4218A408D1536CC24d7c01A0Fa656D1AA8Ef9163" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0x2F64eA91347C5941Eb2c2A2629faa1a65B221573" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x810aC7FF4E2fFc3817E8762dC9FE5aA9217BcB06" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xAE1164BE42Dbf1ca9E7395A52c1BFBaF018B23af" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0x0dd2D2490a193dDC046F455BC3899f5fA81e669e" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0x834efFEC7daFDFEd79F63e8A09abfE64ab074204" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0x7233Fd1187Dc9B5CD12Ab949508bF7e0ac0f7D6E" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0xAd34a92D9071f6ee5fDecC89B88aDc9cE02284A4" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x16bc6cE19718A0e71AA7a9Bf52cDA694D3e1C164" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x6d0A65a41d53A645503c4fa1a9E657eD4eC13C91" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0x8e223477B09b8fce00a56E2424E131225e8730c2" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xb28865CD4F20C1b63EE38C69D24B7175c571f7f8" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xfBfC6c39E2E25c87DC251CCD6180a0795014CF46" | |
} | |
] | |
} | |
}, | |
"binance": { | |
"mainnet": { | |
"httpProvider": "https://bsc-dataseed.binance.org/", | |
"chainId": 56, | |
"bscScanUrl": "https://bscscan.com", | |
"apiURL": "https://api.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x55d398326f99059fF775485246999027B3197955" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://data-seed-prebsc-1-s1.binance.org:8545/", | |
"chainId": 97, | |
"bscScanUrl": "https://testnet.bscscan.com", | |
"apiURL": "https://api-testnet.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xeD24FC36d5Ee211Ea25A80239Fb8C4Cfd80f12Ee" | |
} | |
] | |
} | |
}, | |
"xinfin": { | |
"mainnet": { | |
"httpProvider": "https://rpc.xinfin.network", | |
"chainId": 50, | |
"gasPrice": 20000000000, | |
"blocksScanUrl": "https://xdc.blocksscan.io", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc5d5f074837f5d4618b3916ba74de1bf9662a3fed" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdcff7412ea7c8445c46a8254dfb557ac1e48094391" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdc8f9920283470f52128bf11b0c14e798be704fd15" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.apothem.network", | |
"chainId": 51, | |
"gasPrice": 250000000, | |
"blocksScanUrl": "https://apothem.blocksscan.io/", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc7963447b34c3847b5ffeef2a178c1528dd0cd0f6" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdce2ef926d8c6f7773bb69b20f9a86f8dbe81145d9" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdca39598d6b4d9107ccc0f970e5b0f0ecbe18d5a59" | |
}, | |
{ | |
"tokenName": "YPUSDC", | |
"decimals": 6, | |
"contractAddress": "xdcfEe657401B5955B05E10FE47c9FBF0b607b25272" | |
} | |
] | |
} | |
}, | |
"cardano": { | |
"mainnet": { | |
"blockfrostAPIKey": "" | |
}, | |
"testnet": { | |
"blockfrostAPIKey": "" | |
} | |
}, | |
"ripple": { | |
"testnet": { | |
"httpProvider": "wss://s.altnet.rippletest.net:51233" | |
}, | |
"mainnet": { | |
"httpProvider": "wss://xrplcluster.com" | |
} | |
}, | |
"polygon": { | |
"mainnet": { | |
"httpProvider": "https://polygon-rpc.com", | |
"chainId": 137, | |
"gasPrice": 25000000000, | |
"gasStationApiUrl": "https://gasstation-mainnet.matic.network/v2", | |
"etherscanAPIUrl": "https://api.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc-mumbai.maticvigil.com", | |
"chainId": 80001, | |
"gasPrice": 20000000000, | |
"gasStationApiUrl": "https://gasstation-mumbai.matic.today/v2", | |
"etherscanAPIUrl": "https://api-testnet.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2058A9D7613eEE744279e3856Ef0eAda5FCbaA7e" | |
} | |
] | |
} | |
}, | |
"solana": {}, | |
"avalanche": { | |
"mainnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax.network", | |
"chainId": 43114, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
}, | |
"testnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax-test.network", | |
"chainId": 43113, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
} | |
}, | |
"terra": { | |
"mainnet": { | |
"httpProvider": "https://lcd.terra.dev/", | |
"chainId": "columbus-5", | |
"gasStationApiUrl": "https://fcd.terra.dev/", | |
"blocksScanUrl": "https://api.extraterrestrial.money/" | |
}, | |
"testnet": { | |
"httpProvider": "https://bombay-lcd.terra.dev/", | |
"chainId": "bombay-12", | |
"gasStationApiUrl": "https://bombay-fcd.terra.dev/", | |
"blocksScanUrl": "https://api-testnet.extraterrestrial.money/" | |
} | |
}, | |
"casper": { | |
"mainnet": { | |
"httpProvider": "https://node-clarity-mainnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-mainnet.make.services", | |
"chainName": "casper" | |
}, | |
"testnet": { | |
"httpProvider": "https://node-clarity-testnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-testnet.make.services", | |
"chainName": "casper-test" | |
} | |
}, | |
"elrond": { | |
"mainnet": { | |
"proxyProvider": "https://gateway.multiversx.com", | |
"apiProvier": "https://api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "1" | |
} | |
}, | |
"testnet": { | |
"proxyProvider": "https://testnet-gateway.multiversx.com", | |
"apiProvier": "https://testnet-api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "T" | |
} | |
} | |
}, | |
"zilliqa": { | |
"mainnet": { | |
"httpProvider": "https://api.zilliqa.com", | |
"devexHttpProvider": "https://devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil180v66mlw007ltdv8tq5t240y7upwgf7djklmwh" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1cuf78e3p37utekgk0gtcvd3hvkrqcgt06lrnty" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://dev-api.zilliqa.com", | |
"devexHttpProvider": "https://stg-devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil1tpmfqtras2pv3t84kdq8dfdv38l3tel8pqthnu" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1tjx464ayk4lxvq4qxa595eadqd3tuann97hglf" | |
} | |
] | |
} | |
}, | |
"near": { | |
"mainnet": { | |
"httpProvider": "https://rpc.near.org", | |
"apiHost": "https://nearblocks.io/api", | |
"backupApi": "https://api.kitwallet.app" | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.testnet.near.org", | |
"apiHost": "https://testnet.nearblocks.io/api", | |
"backupApi": "https://testnet-api.kitwallet.app" | |
} | |
}, | |
"tezos": { | |
"mainnet": { | |
"rpcUrl": "", | |
"apiUrl": "", | |
"gasLimit": 10600 | |
}, | |
"testnet": { | |
"rpcUrl": "https://rpc.ghostnet.teztnets.xyz", | |
"apiUrl": "https://api.ghostnet.tzkt.io", | |
"gasLimit": 10600 | |
} | |
}, | |
"polkadot": { | |
"mainnet": { | |
"httpProvider": "wss://rpc.polkadot.io", | |
"scanApiUrl": "https://polkadot.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://westend-rpc.polkadot.io", | |
"scanApiUrl": "https://westend.webapi.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"moonriver": { | |
"mainnet": { | |
"httpProvider": "wss://moonriver.public.blastapi.io", | |
"scanApiUrl": "https://moonriver.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://moonbase-alpha.public.blastapi.io", | |
"scanApiUrl": "https://moonbase.api.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"filecoin": { | |
"mainnet": { | |
"httpProvider": "https://api.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph.glif.link/query", | |
"filScanHttpProvider": "https://api.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
}, | |
"testnet": { | |
"httpProvider": "https://api.calibration.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph-calibration.glif.link/query", | |
"filScanHttpProvider": "https://calibration.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
} | |
}, | |
"algorand": { | |
"mainnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=", | |
"genesisId": "mainnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": {} | |
}, | |
"testnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=", | |
"genesisId": "testnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": { | |
"USDT": { | |
"assetId": 94115664, | |
"decimals": 6 | |
} | |
} | |
} | |
} | |
}, | |
"hpcs": { | |
"xdc": { | |
"deployer": { | |
"address": "process.env.HPCS_XDC_DEPLOYER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_DEPLOYER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_DEPLOYER_PUBLIC_KEY" | |
}, | |
"backOfficer": { | |
"address": "process.env.HPCS_XDC_BACKOFFICER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_BACKOFFICER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_BACKOFFICER_PUBLIC_KEY" | |
} | |
} | |
}, | |
"customerHolderForIssuance": { | |
"ERC20": "FRONT_OFFICE", | |
"XYM": "FRONT_OFFICE", | |
"NOP": "", | |
"XRC20": "HPCS" | |
}, | |
"midOfficeNotifications": { | |
"operationsMailId": "", | |
"notifyOperationsMail": false, | |
"notifyMidOfficersFromDatabase": true | |
}, | |
"signet": { | |
"host": "https://uat02-api.app.signet.com", | |
"sourceId": "PropineSignetUAT", | |
"audience": "PropineSignetUAT", | |
"clientId": "", | |
"clientSecret": "", | |
"apiConfirmCode": "SXtpmA", | |
"originatorId": "1580011361", | |
"internalAddress": "", | |
"genesis": { | |
"address": "" | |
} | |
}, | |
"etherScanAPIRateLimits": { | |
"perSecond": 5, | |
"perDay": 100000 | |
}, | |
"institution": { | |
"supportedTokens": { | |
"networks": ["Ethereum"], | |
"tokens": ["ETH", "USDT", "USDC"] | |
} | |
}, | |
"tatum": { "chainType": "testnet", "apiUrl": "https://api.tatum.io/v4"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/configurations/config.cryptocore_production.json","entries":[{"id":"4XXR.json","timestamp":1697095868094},{"id":"rAN6.json","timestamp":1697095883278},{"id":"hac3.json","timestamp":1697095893687},{"id":"1l5p.json","timestamp":1697095930615},{"id":"PmsH.json","timestamp":1697095993196}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"server": { | |
"port": 5001, | |
"routePrefix": "", | |
"plugins": [], | |
"host": "venus-api.450939.com", | |
"protocol": "https", | |
"rejectUnauthorized": true | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "venus", | |
"password": "", | |
"defaultVHost": "cryptocore", | |
"exchangeName": "blockchain_adaptor_service", | |
"queueName": "action_request_queue", | |
"scheduledJobsExchangeName": "scheduled_jobs", | |
"scheduledJobsQueueName": "scheduled_jobs_queue", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.450939.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/ecs-sandbox-app/venus", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
}, | |
"genesis": { | |
"host": "https://trading.uat.genesistrading.com" | |
}, | |
"redis": { | |
"host": "master.staging-redis.dobln6.euw1.cache.amazonaws.com", | |
"port": 6336, | |
"username": "default", | |
"password": "", | |
"protocol": "rediss" | |
} | |
}, | |
"hermesBaseUrl": "https://hermes.multicoin.dev.01123581.com/v1", | |
"blockchain": { | |
"issuanceAbi": "IssuanceCoin.json", | |
"proxyAbi": "OwnedUpgradeabilityProxy.json", | |
"multiSignatureAbi": "PropineMultiSigWallet.json", | |
"bitcoin": { | |
"bitcoin": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "main", | |
"backupApiHost": "https://api.bitaps.com/btc", | |
"medianTransactionSize": 226, | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
}, | |
"testnet": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "test3", | |
"backupApiHost": "https://api.bitaps.com/btc/testnet", | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
} | |
}, | |
"ethereum": { | |
"mainnet": { | |
"httpProvider": "https://mainnet.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 1, | |
"etherscanAPIUrl": "https://api.etherscan.io", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/1/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0xc00e94cb662c3520282e6f5717214004a7f26888" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0x514910771af9ca656af840dff83e8264ecf986ca" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x4Fabb145d64652a948d72533023f6E7A623C7C53" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x0000000000085d4780B73119b644AE5ecd22b376" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xD533a949740bb3306d119CC777fa900bA034cd52" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x41A3Dba3D677E573636BA691a70ff2D606c29666" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0xf8C3527CC04340b208C854E985240c02F7B7793f" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0xB37a769B37224449d92AAc57dE379E1267Cd3B00" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x57B946008913B82E4dF85f501cbAeD910e58D26C" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xe5D2e173B120341face9e9970889C9FE64081FfD" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xdB25f211AB05b1c97D595516F45794528a807ad8" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://sepolia.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 11155111, | |
"etherscanAPIUrl": "https://api-sepolia.etherscan.io/", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/11155111/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0x5ab10C716716f6F1a2a0848BB6B36B89d7F5A24d" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xD4778aA86D4EF3513A5A1c4d8d6e121F3Ba58236" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0x477e27CeA73BEd7aa029cd67AbC4FD56ADF271F2" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0xF6cAc2f1DF51B8778212B71bBF0C5FB296189fDf" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x0cC1e4f68f270e21705F5D0102DaA46F4A079ece" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x744D577Cb9abA6Cbc3e3a839eAC6Bf2fda3ff276" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0xEb01c20166eEbbFCeaD2b9d5eE8efc471a984FC4" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0x7d615c9506E1e529f6ad17840BF39A2E1af49c95" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0xf7F4286Cde036Ae2c6355B67801D59423F029115" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x23ADf51a8B82cf003Ed841AeCFde89b622E8B0d7" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0xf8583bdbd2d3734b5cab490d251df2cd82a15433" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0xa3228A0cE80D5Eb5Da30EEdfa7c350aaF1df4F75" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x9e6E94d1c98194c948617c27623A922CbAF454e7" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x314bd3AcB98BB07C6fe628E94FBF686b28D3c34B" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x2C251Fc8eD0ef450234A27D448e181d046B83556" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0x5775a01c75aCA9e0DF45FE072d8EF4EFAC6207c9" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x373Ff71Ed002Cf19EC2FAa2616fc54B51F02136b" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0xBaa9e0793E1eb20F71b3B927A4A450448aB81048" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x66181570Fb9616576DB867F11d96D20119dd614E" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xaebc216e7b9f1712d1b0b89a57171a6608e6eb82" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x64078a6189bf45f80091c6ff2fcee1b15ac8dbde" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0x824eF5755CD8F6FB110a64A59946639430628069" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0x5d9C96bf6176f59b22fA0f7152A45FB8dD6daFc3" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x9D178e77fb3C60dF40bEb92Ad497498B8E4e496D" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0x0f215467A06956FbfE82B6CB12D15FCcFfD79700" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0x4218A408D1536CC24d7c01A0Fa656D1AA8Ef9163" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0x2F64eA91347C5941Eb2c2A2629faa1a65B221573" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x810aC7FF4E2fFc3817E8762dC9FE5aA9217BcB06" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xAE1164BE42Dbf1ca9E7395A52c1BFBaF018B23af" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0x0dd2D2490a193dDC046F455BC3899f5fA81e669e" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0x834efFEC7daFDFEd79F63e8A09abfE64ab074204" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0x7233Fd1187Dc9B5CD12Ab949508bF7e0ac0f7D6E" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0xAd34a92D9071f6ee5fDecC89B88aDc9cE02284A4" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x16bc6cE19718A0e71AA7a9Bf52cDA694D3e1C164" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x6d0A65a41d53A645503c4fa1a9E657eD4eC13C91" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0x8e223477B09b8fce00a56E2424E131225e8730c2" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xb28865CD4F20C1b63EE38C69D24B7175c571f7f8" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xfBfC6c39E2E25c87DC251CCD6180a0795014CF46" | |
} | |
] | |
} | |
}, | |
"binance": { | |
"mainnet": { | |
"httpProvider": "https://bsc-dataseed.binance.org/", | |
"chainId": 56, | |
"bscScanUrl": "https://bscscan.com", | |
"apiURL": "https://api.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x55d398326f99059fF775485246999027B3197955" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://data-seed-prebsc-1-s1.binance.org:8545/", | |
"chainId": 97, | |
"bscScanUrl": "https://testnet.bscscan.com", | |
"apiURL": "https://api-testnet.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xeD24FC36d5Ee211Ea25A80239Fb8C4Cfd80f12Ee" | |
} | |
] | |
} | |
}, | |
"xinfin": { | |
"mainnet": { | |
"httpProvider": "https://rpc.xinfin.network", | |
"chainId": 50, | |
"gasPrice": 20000000000, | |
"blocksScanUrl": "https://xdc.blocksscan.io", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc5d5f074837f5d4618b3916ba74de1bf9662a3fed" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdcff7412ea7c8445c46a8254dfb557ac1e48094391" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdc8f9920283470f52128bf11b0c14e798be704fd15" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.apothem.network", | |
"chainId": 51, | |
"gasPrice": 250000000, | |
"blocksScanUrl": "https://apothem.blocksscan.io/", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc7963447b34c3847b5ffeef2a178c1528dd0cd0f6" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdce2ef926d8c6f7773bb69b20f9a86f8dbe81145d9" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdca39598d6b4d9107ccc0f970e5b0f0ecbe18d5a59" | |
}, | |
{ | |
"tokenName": "YPUSDC", | |
"decimals": 6, | |
"contractAddress": "xdcfEe657401B5955B05E10FE47c9FBF0b607b25272" | |
} | |
] | |
} | |
}, | |
"cardano": { | |
"mainnet": { | |
"blockfrostAPIKey": "" | |
}, | |
"testnet": { | |
"blockfrostAPIKey": "" | |
} | |
}, | |
"ripple": { | |
"testnet": { | |
"httpProvider": "wss://s.altnet.rippletest.net:51233" | |
}, | |
"mainnet": { | |
"httpProvider": "wss://xrplcluster.com" | |
} | |
}, | |
"polygon": { | |
"mainnet": { | |
"httpProvider": "https://polygon-rpc.com", | |
"chainId": 137, | |
"gasPrice": 25000000000, | |
"gasStationApiUrl": "https://gasstation-mainnet.matic.network/v2", | |
"etherscanAPIUrl": "https://api.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc-mumbai.maticvigil.com", | |
"chainId": 80001, | |
"gasPrice": 20000000000, | |
"gasStationApiUrl": "https://gasstation-mumbai.matic.today/v2", | |
"etherscanAPIUrl": "https://api-testnet.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2058A9D7613eEE744279e3856Ef0eAda5FCbaA7e" | |
} | |
] | |
} | |
}, | |
"solana": {}, | |
"avalanche": { | |
"mainnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax.network", | |
"chainId": 43114, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
}, | |
"testnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax-test.network", | |
"chainId": 43113, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
} | |
}, | |
"terra": { | |
"mainnet": { | |
"httpProvider": "https://lcd.terra.dev/", | |
"chainId": "columbus-5", | |
"gasStationApiUrl": "https://fcd.terra.dev/", | |
"blocksScanUrl": "https://api.extraterrestrial.money/" | |
}, | |
"testnet": { | |
"httpProvider": "https://bombay-lcd.terra.dev/", | |
"chainId": "bombay-12", | |
"gasStationApiUrl": "https://bombay-fcd.terra.dev/", | |
"blocksScanUrl": "https://api-testnet.extraterrestrial.money/" | |
} | |
}, | |
"casper": { | |
"mainnet": { | |
"httpProvider": "https://node-clarity-mainnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-mainnet.make.services", | |
"chainName": "casper" | |
}, | |
"testnet": { | |
"httpProvider": "https://node-clarity-testnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-testnet.make.services", | |
"chainName": "casper-test" | |
} | |
}, | |
"elrond": { | |
"mainnet": { | |
"proxyProvider": "https://gateway.multiversx.com", | |
"apiProvier": "https://api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "1" | |
} | |
}, | |
"testnet": { | |
"proxyProvider": "https://testnet-gateway.multiversx.com", | |
"apiProvier": "https://testnet-api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "T" | |
} | |
} | |
}, | |
"zilliqa": { | |
"mainnet": { | |
"httpProvider": "https://api.zilliqa.com", | |
"devexHttpProvider": "https://devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil180v66mlw007ltdv8tq5t240y7upwgf7djklmwh" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1cuf78e3p37utekgk0gtcvd3hvkrqcgt06lrnty" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://dev-api.zilliqa.com", | |
"devexHttpProvider": "https://stg-devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil1tpmfqtras2pv3t84kdq8dfdv38l3tel8pqthnu" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1tjx464ayk4lxvq4qxa595eadqd3tuann97hglf" | |
} | |
] | |
} | |
}, | |
"near": { | |
"mainnet": { | |
"httpProvider": "https://rpc.near.org", | |
"apiHost": "https://nearblocks.io/api", | |
"backupApi": "https://api.kitwallet.app" | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.testnet.near.org", | |
"apiHost": "https://testnet.nearblocks.io/api", | |
"backupApi": "https://testnet-api.kitwallet.app" | |
} | |
}, | |
"tezos": { | |
"mainnet": { | |
"rpcUrl": "", | |
"apiUrl": "", | |
"gasLimit": 10600 | |
}, | |
"testnet": { | |
"rpcUrl": "https://rpc.ghostnet.teztnets.xyz", | |
"apiUrl": "https://api.ghostnet.tzkt.io", | |
"gasLimit": 10600 | |
} | |
}, | |
"polkadot": { | |
"mainnet": { | |
"httpProvider": "wss://rpc.polkadot.io", | |
"scanApiUrl": "https://polkadot.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://westend-rpc.polkadot.io", | |
"scanApiUrl": "https://westend.webapi.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"moonriver": { | |
"mainnet": { | |
"httpProvider": "wss://moonriver.public.blastapi.io", | |
"scanApiUrl": "https://moonriver.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://moonbase-alpha.public.blastapi.io", | |
"scanApiUrl": "https://moonbase.api.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"filecoin": { | |
"mainnet": { | |
"httpProvider": "https://api.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph.glif.link/query", | |
"filScanHttpProvider": "https://api.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
}, | |
"testnet": { | |
"httpProvider": "https://api.calibration.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph-calibration.glif.link/query", | |
"filScanHttpProvider": "https://calibration.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
} | |
}, | |
"algorand": { | |
"mainnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=", | |
"genesisId": "mainnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": {} | |
}, | |
"testnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=", | |
"genesisId": "testnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": { | |
"USDT": { | |
"assetId": 94115664, | |
"decimals": 6 | |
} | |
} | |
} | |
} | |
}, | |
"hpcs": { | |
"xdc": { | |
"deployer": { | |
"address": "process.env.HPCS_XDC_DEPLOYER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_DEPLOYER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_DEPLOYER_PUBLIC_KEY" | |
}, | |
"backOfficer": { | |
"address": "process.env.HPCS_XDC_BACKOFFICER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_BACKOFFICER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_BACKOFFICER_PUBLIC_KEY" | |
} | |
} | |
}, | |
"customerHolderForIssuance": { | |
"ERC20": "FRONT_OFFICE", | |
"XYM": "FRONT_OFFICE", | |
"NOP": "", | |
"XRC20": "HPCS" | |
}, | |
"midOfficeNotifications": { | |
"operationsMailId": "", | |
"notifyOperationsMail": false, | |
"notifyMidOfficersFromDatabase": true | |
}, | |
"signet": { | |
"host": "https://uat02-api.app.signet.com", | |
"sourceId": "PropineSignetUAT", | |
"audience": "PropineSignetUAT", | |
"clientId": "", | |
"clientSecret": "", | |
"apiConfirmCode": "SXtpmA", | |
"originatorId": "1580011361", | |
"internalAddress": "", | |
"genesis": { | |
"address": "" | |
} | |
}, | |
"etherScanAPIRateLimits": { | |
"perSecond": 5, | |
"perDay": 100000 | |
}, | |
"institution": { | |
"supportedTokens": { | |
"networks": ["Ethereum"], | |
"tokens": ["ETH", "USDT", "USDC"] | |
} | |
}, | |
"tatum": { "chainType": "testnet", "apiUrl": "https://api.tatum.io/v4"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"server": { | |
"port": 5001, | |
"routePrefix": "", | |
"plugins": [], | |
"host": "venus-api.450939.com", | |
"protocol": "https", | |
"rejectUnauthorized": true | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "venus", | |
"password": "", | |
"defaultVHost": "cryptocore", | |
"exchangeName": "blockchain_adaptor_service", | |
"queueName": "action_request_queue", | |
"scheduledJobsExchangeName": "scheduled_jobs", | |
"scheduledJobsQueueName": "scheduled_jobs_queue", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.450939.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/ecs-sandbox-app/venus", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
}, | |
"genesis": { | |
"host": "https://trading.uat.genesistrading.com" | |
}, | |
"redis": { | |
"host": "master.production-redis.yijdwo.euw1.cache.amazonaws.com", | |
"port": 6336, | |
"username": "default", | |
"password": "", | |
"protocol": "rediss" | |
} | |
}, | |
"hermesBaseUrl": "https://hermes.450939.com/v1", | |
"blockchain": { | |
"issuanceAbi": "IssuanceCoin.json", | |
"proxyAbi": "OwnedUpgradeabilityProxy.json", | |
"multiSignatureAbi": "PropineMultiSigWallet.json", | |
"bitcoin": { | |
"bitcoin": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "main", | |
"backupApiHost": "https://api.bitaps.com/btc", | |
"medianTransactionSize": 226, | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
}, | |
"testnet": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "test3", | |
"backupApiHost": "https://api.bitaps.com/btc/testnet", | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
} | |
}, | |
"ethereum": { | |
"mainnet": { | |
"httpProvider": "https://mainnet.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 1, | |
"etherscanAPIUrl": "https://api.etherscan.io", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/1/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0xc00e94cb662c3520282e6f5717214004a7f26888" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0x514910771af9ca656af840dff83e8264ecf986ca" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x4Fabb145d64652a948d72533023f6E7A623C7C53" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x0000000000085d4780B73119b644AE5ecd22b376" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xD533a949740bb3306d119CC777fa900bA034cd52" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x41A3Dba3D677E573636BA691a70ff2D606c29666" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0xf8C3527CC04340b208C854E985240c02F7B7793f" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0xB37a769B37224449d92AAc57dE379E1267Cd3B00" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x57B946008913B82E4dF85f501cbAeD910e58D26C" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xe5D2e173B120341face9e9970889C9FE64081FfD" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xdB25f211AB05b1c97D595516F45794528a807ad8" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://sepolia.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 11155111, | |
"etherscanAPIUrl": "https://api-sepolia.etherscan.io/", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/11155111/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0x5ab10C716716f6F1a2a0848BB6B36B89d7F5A24d" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xD4778aA86D4EF3513A5A1c4d8d6e121F3Ba58236" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0x477e27CeA73BEd7aa029cd67AbC4FD56ADF271F2" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0xF6cAc2f1DF51B8778212B71bBF0C5FB296189fDf" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x0cC1e4f68f270e21705F5D0102DaA46F4A079ece" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x744D577Cb9abA6Cbc3e3a839eAC6Bf2fda3ff276" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0xEb01c20166eEbbFCeaD2b9d5eE8efc471a984FC4" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0x7d615c9506E1e529f6ad17840BF39A2E1af49c95" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0xf7F4286Cde036Ae2c6355B67801D59423F029115" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x23ADf51a8B82cf003Ed841AeCFde89b622E8B0d7" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0xf8583bdbd2d3734b5cab490d251df2cd82a15433" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0xa3228A0cE80D5Eb5Da30EEdfa7c350aaF1df4F75" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x9e6E94d1c98194c948617c27623A922CbAF454e7" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x314bd3AcB98BB07C6fe628E94FBF686b28D3c34B" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x2C251Fc8eD0ef450234A27D448e181d046B83556" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0x5775a01c75aCA9e0DF45FE072d8EF4EFAC6207c9" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x373Ff71Ed002Cf19EC2FAa2616fc54B51F02136b" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0xBaa9e0793E1eb20F71b3B927A4A450448aB81048" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x66181570Fb9616576DB867F11d96D20119dd614E" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xaebc216e7b9f1712d1b0b89a57171a6608e6eb82" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x64078a6189bf45f80091c6ff2fcee1b15ac8dbde" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0x824eF5755CD8F6FB110a64A59946639430628069" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0x5d9C96bf6176f59b22fA0f7152A45FB8dD6daFc3" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x9D178e77fb3C60dF40bEb92Ad497498B8E4e496D" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0x0f215467A06956FbfE82B6CB12D15FCcFfD79700" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0x4218A408D1536CC24d7c01A0Fa656D1AA8Ef9163" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0x2F64eA91347C5941Eb2c2A2629faa1a65B221573" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x810aC7FF4E2fFc3817E8762dC9FE5aA9217BcB06" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xAE1164BE42Dbf1ca9E7395A52c1BFBaF018B23af" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0x0dd2D2490a193dDC046F455BC3899f5fA81e669e" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0x834efFEC7daFDFEd79F63e8A09abfE64ab074204" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0x7233Fd1187Dc9B5CD12Ab949508bF7e0ac0f7D6E" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0xAd34a92D9071f6ee5fDecC89B88aDc9cE02284A4" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x16bc6cE19718A0e71AA7a9Bf52cDA694D3e1C164" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x6d0A65a41d53A645503c4fa1a9E657eD4eC13C91" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0x8e223477B09b8fce00a56E2424E131225e8730c2" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xb28865CD4F20C1b63EE38C69D24B7175c571f7f8" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xfBfC6c39E2E25c87DC251CCD6180a0795014CF46" | |
} | |
] | |
} | |
}, | |
"binance": { | |
"mainnet": { | |
"httpProvider": "https://bsc-dataseed.binance.org/", | |
"chainId": 56, | |
"bscScanUrl": "https://bscscan.com", | |
"apiURL": "https://api.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x55d398326f99059fF775485246999027B3197955" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://data-seed-prebsc-1-s1.binance.org:8545/", | |
"chainId": 97, | |
"bscScanUrl": "https://testnet.bscscan.com", | |
"apiURL": "https://api-testnet.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xeD24FC36d5Ee211Ea25A80239Fb8C4Cfd80f12Ee" | |
} | |
] | |
} | |
}, | |
"xinfin": { | |
"mainnet": { | |
"httpProvider": "https://rpc.xinfin.network", | |
"chainId": 50, | |
"gasPrice": 20000000000, | |
"blocksScanUrl": "https://xdc.blocksscan.io", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc5d5f074837f5d4618b3916ba74de1bf9662a3fed" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdcff7412ea7c8445c46a8254dfb557ac1e48094391" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdc8f9920283470f52128bf11b0c14e798be704fd15" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.apothem.network", | |
"chainId": 51, | |
"gasPrice": 250000000, | |
"blocksScanUrl": "https://apothem.blocksscan.io/", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc7963447b34c3847b5ffeef2a178c1528dd0cd0f6" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdce2ef926d8c6f7773bb69b20f9a86f8dbe81145d9" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdca39598d6b4d9107ccc0f970e5b0f0ecbe18d5a59" | |
}, | |
{ | |
"tokenName": "YPUSDC", | |
"decimals": 6, | |
"contractAddress": "xdcfEe657401B5955B05E10FE47c9FBF0b607b25272" | |
} | |
] | |
} | |
}, | |
"cardano": { | |
"mainnet": { | |
"blockfrostAPIKey": "" | |
}, | |
"testnet": { | |
"blockfrostAPIKey": "" | |
} | |
}, | |
"ripple": { | |
"testnet": { | |
"httpProvider": "wss://s.altnet.rippletest.net:51233" | |
}, | |
"mainnet": { | |
"httpProvider": "wss://xrplcluster.com" | |
} | |
}, | |
"polygon": { | |
"mainnet": { | |
"httpProvider": "https://polygon-rpc.com", | |
"chainId": 137, | |
"gasPrice": 25000000000, | |
"gasStationApiUrl": "https://gasstation-mainnet.matic.network/v2", | |
"etherscanAPIUrl": "https://api.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc-mumbai.maticvigil.com", | |
"chainId": 80001, | |
"gasPrice": 20000000000, | |
"gasStationApiUrl": "https://gasstation-mumbai.matic.today/v2", | |
"etherscanAPIUrl": "https://api-testnet.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2058A9D7613eEE744279e3856Ef0eAda5FCbaA7e" | |
} | |
] | |
} | |
}, | |
"solana": {}, | |
"avalanche": { | |
"mainnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax.network", | |
"chainId": 43114, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
}, | |
"testnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax-test.network", | |
"chainId": 43113, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
} | |
}, | |
"terra": { | |
"mainnet": { | |
"httpProvider": "https://lcd.terra.dev/", | |
"chainId": "columbus-5", | |
"gasStationApiUrl": "https://fcd.terra.dev/", | |
"blocksScanUrl": "https://api.extraterrestrial.money/" | |
}, | |
"testnet": { | |
"httpProvider": "https://bombay-lcd.terra.dev/", | |
"chainId": "bombay-12", | |
"gasStationApiUrl": "https://bombay-fcd.terra.dev/", | |
"blocksScanUrl": "https://api-testnet.extraterrestrial.money/" | |
} | |
}, | |
"casper": { | |
"mainnet": { | |
"httpProvider": "https://node-clarity-mainnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-mainnet.make.services", | |
"chainName": "casper" | |
}, | |
"testnet": { | |
"httpProvider": "https://node-clarity-testnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-testnet.make.services", | |
"chainName": "casper-test" | |
} | |
}, | |
"elrond": { | |
"mainnet": { | |
"proxyProvider": "https://gateway.multiversx.com", | |
"apiProvier": "https://api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "1" | |
} | |
}, | |
"testnet": { | |
"proxyProvider": "https://testnet-gateway.multiversx.com", | |
"apiProvier": "https://testnet-api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "T" | |
} | |
} | |
}, | |
"zilliqa": { | |
"mainnet": { | |
"httpProvider": "https://api.zilliqa.com", | |
"devexHttpProvider": "https://devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil180v66mlw007ltdv8tq5t240y7upwgf7djklmwh" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1cuf78e3p37utekgk0gtcvd3hvkrqcgt06lrnty" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://dev-api.zilliqa.com", | |
"devexHttpProvider": "https://stg-devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil1tpmfqtras2pv3t84kdq8dfdv38l3tel8pqthnu" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1tjx464ayk4lxvq4qxa595eadqd3tuann97hglf" | |
} | |
] | |
} | |
}, | |
"near": { | |
"mainnet": { | |
"httpProvider": "https://rpc.near.org", | |
"apiHost": "https://nearblocks.io/api", | |
"backupApi": "https://api.kitwallet.app" | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.testnet.near.org", | |
"apiHost": "https://testnet.nearblocks.io/api", | |
"backupApi": "https://testnet-api.kitwallet.app" | |
} | |
}, | |
"tezos": { | |
"mainnet": { | |
"rpcUrl": "", | |
"apiUrl": "", | |
"gasLimit": 10600 | |
}, | |
"testnet": { | |
"rpcUrl": "https://rpc.ghostnet.teztnets.xyz", | |
"apiUrl": "https://api.ghostnet.tzkt.io", | |
"gasLimit": 10600 | |
} | |
}, | |
"polkadot": { | |
"mainnet": { | |
"httpProvider": "wss://rpc.polkadot.io", | |
"scanApiUrl": "https://polkadot.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://westend-rpc.polkadot.io", | |
"scanApiUrl": "https://westend.webapi.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"moonriver": { | |
"mainnet": { | |
"httpProvider": "wss://moonriver.public.blastapi.io", | |
"scanApiUrl": "https://moonriver.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://moonbase-alpha.public.blastapi.io", | |
"scanApiUrl": "https://moonbase.api.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"filecoin": { | |
"mainnet": { | |
"httpProvider": "https://api.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph.glif.link/query", | |
"filScanHttpProvider": "https://api.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
}, | |
"testnet": { | |
"httpProvider": "https://api.calibration.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph-calibration.glif.link/query", | |
"filScanHttpProvider": "https://calibration.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
} | |
}, | |
"algorand": { | |
"mainnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=", | |
"genesisId": "mainnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": {} | |
}, | |
"testnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=", | |
"genesisId": "testnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": { | |
"USDT": { | |
"assetId": 94115664, | |
"decimals": 6 | |
} | |
} | |
} | |
} | |
}, | |
"hpcs": { | |
"xdc": { | |
"deployer": { | |
"address": "process.env.HPCS_XDC_DEPLOYER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_DEPLOYER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_DEPLOYER_PUBLIC_KEY" | |
}, | |
"backOfficer": { | |
"address": "process.env.HPCS_XDC_BACKOFFICER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_BACKOFFICER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_BACKOFFICER_PUBLIC_KEY" | |
} | |
} | |
}, | |
"customerHolderForIssuance": { | |
"ERC20": "FRONT_OFFICE", | |
"XYM": "FRONT_OFFICE", | |
"NOP": "", | |
"XRC20": "HPCS" | |
}, | |
"midOfficeNotifications": { | |
"operationsMailId": "", | |
"notifyOperationsMail": false, | |
"notifyMidOfficersFromDatabase": true | |
}, | |
"etherScanAPIRateLimits": { | |
"perSecond": 5, | |
"perDay": 100000 | |
}, | |
"institution": { | |
"supportedTokens": { | |
"networks": ["Ethereum"], | |
"tokens": ["ETH", "USDT", "USDC"] | |
} | |
}, | |
"tatum": { "chainType": "mainnet", "apiUrl": "https://api.tatum.io/v4"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"database": { | |
"database": "web_portal", | |
"username": "root", | |
"password": "", | |
"port": 5432, | |
"host": "db.450939.com", | |
"dialect": "postgres" | |
}, | |
"server": { | |
"port": 5001, | |
"routePrefix": "", | |
"plugins": [], | |
"host": "venus-api.450939.com", | |
"protocol": "https", | |
"rejectUnauthorized": true | |
}, | |
"vendor": { | |
"rabbitmq": { | |
"host": "b-57fd6a0d-53d0-4dc3-8184-541135904502.mq.eu-west-1.amazonaws.com", | |
"port": 5671, | |
"username": "venus", | |
"password": "", | |
"defaultVHost": "cryptocore", | |
"exchangeName": "blockchain_adaptor_service", | |
"queueName": "action_request_queue", | |
"scheduledJobsExchangeName": "scheduled_jobs", | |
"scheduledJobsQueueName": "scheduled_jobs_queue", | |
"protocol": "amqps" | |
}, | |
"sentry": { | |
"dsn": "" | |
}, | |
"apollo": { | |
"apiKey": "", | |
"host": "https://api.multicoin.dev.01123581.com" | |
}, | |
"cloudWatch": { | |
"logGroup": "/ecs-sandbox-app/venus", | |
"region": "eu-west-1", | |
"accessKeyId": "", | |
"secretKey": "" | |
}, | |
"genesis": { | |
"host": "https://trading.uat.genesistrading.com" | |
}, | |
"redis": { | |
"host": "master.staging-redis.dobln6.euw1.cache.amazonaws.com", | |
"port": 6336, | |
"username": "default", | |
"password": "", | |
"protocol": "rediss" | |
} | |
}, | |
"hermesBaseUrl": "https://hermes.multicoin.dev.01123581.com/v1", | |
"blockchain": { | |
"issuanceAbi": "IssuanceCoin.json", | |
"proxyAbi": "OwnedUpgradeabilityProxy.json", | |
"multiSignatureAbi": "PropineMultiSigWallet.json", | |
"bitcoin": { | |
"bitcoin": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "main", | |
"backupApiHost": "https://api.bitaps.com/btc", | |
"medianTransactionSize": 226, | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
}, | |
"testnet": { | |
"apiHost": "https://api.blockcypher.com/v1/btc", | |
"apiChain": "test3", | |
"backupApiHost": "https://api.bitaps.com/btc/testnet", | |
"feeApi": "https://bitcoinfees.earn.com/api/v1/fees/recommended" | |
} | |
}, | |
"ethereum": { | |
"mainnet": { | |
"httpProvider": "https://mainnet.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 1, | |
"etherscanAPIUrl": "https://api.etherscan.io", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/1/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0xc00e94cb662c3520282e6f5717214004a7f26888" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0x514910771af9ca656af840dff83e8264ecf986ca" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x4Fabb145d64652a948d72533023f6E7A623C7C53" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x0000000000085d4780B73119b644AE5ecd22b376" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xD533a949740bb3306d119CC777fa900bA034cd52" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x41A3Dba3D677E573636BA691a70ff2D606c29666" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0xf8C3527CC04340b208C854E985240c02F7B7793f" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0xB37a769B37224449d92AAc57dE379E1267Cd3B00" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x57B946008913B82E4dF85f501cbAeD910e58D26C" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xe5D2e173B120341face9e9970889C9FE64081FfD" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xdB25f211AB05b1c97D595516F45794528a807ad8" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://sepolia.infura.io/v3/205d5ce96a0e4ca9a21eb808fa837703", | |
"chainId": 11155111, | |
"etherscanAPIUrl": "https://api-sepolia.etherscan.io/", | |
"feeApi": "https://gas-api.metaswap.codefi.network/networks/11155111/suggestedGasFees", | |
"backupFeeApi": "https://etherchain.org/api/gasPriceOracle", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 6, | |
"contractAddress": "0x5ab10C716716f6F1a2a0848BB6B36B89d7F5A24d" | |
}, | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0xD4778aA86D4EF3513A5A1c4d8d6e121F3Ba58236" | |
}, | |
{ | |
"tokenName": "COMP", | |
"decimals": 18, | |
"contractAddress": "0x477e27CeA73BEd7aa029cd67AbC4FD56ADF271F2" | |
}, | |
{ | |
"tokenName": "AAVE", | |
"decimals": 18, | |
"contractAddress": "0xF6cAc2f1DF51B8778212B71bBF0C5FB296189fDf" | |
}, | |
{ | |
"tokenName": "UNI", | |
"decimals": 18, | |
"contractAddress": "0x0cC1e4f68f270e21705F5D0102DaA46F4A079ece" | |
}, | |
{ | |
"tokenName": "MKR", | |
"decimals": 18, | |
"contractAddress": "0x744D577Cb9abA6Cbc3e3a839eAC6Bf2fda3ff276" | |
}, | |
{ | |
"tokenName": "SUSHI", | |
"decimals": 18, | |
"contractAddress": "0xEb01c20166eEbbFCeaD2b9d5eE8efc471a984FC4" | |
}, | |
{ | |
"tokenName": "CRO", | |
"decimals": 8, | |
"contractAddress": "0x7d615c9506E1e529f6ad17840BF39A2E1af49c95" | |
}, | |
{ | |
"tokenName": "LINK", | |
"decimals": 18, | |
"contractAddress": "0xf7F4286Cde036Ae2c6355B67801D59423F029115" | |
}, | |
{ | |
"tokenName": "MIM", | |
"decimals": 18, | |
"contractAddress": "0x23ADf51a8B82cf003Ed841AeCFde89b622E8B0d7" | |
}, | |
{ | |
"tokenName": "FTT", | |
"decimals": 18, | |
"contractAddress": "0xf8583bdbd2d3734b5cab490d251df2cd82a15433" | |
}, | |
{ | |
"tokenName": "MANA", | |
"decimals": 18, | |
"contractAddress": "0xa3228A0cE80D5Eb5Da30EEdfa7c350aaF1df4F75" | |
}, | |
{ | |
"tokenName": "WBTC", | |
"decimals": 8, | |
"contractAddress": "0x9e6E94d1c98194c948617c27623A922CbAF454e7" | |
}, | |
{ | |
"tokenName": "DAI", | |
"decimals": 18, | |
"contractAddress": "0x314bd3AcB98BB07C6fe628E94FBF686b28D3c34B" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0x2C251Fc8eD0ef450234A27D448e181d046B83556" | |
}, | |
{ | |
"tokenName": "UST", | |
"decimals": 18, | |
"contractAddress": "0x5775a01c75aCA9e0DF45FE072d8EF4EFAC6207c9" | |
}, | |
{ | |
"tokenName": "TUSD", | |
"decimals": 18, | |
"contractAddress": "0x373Ff71Ed002Cf19EC2FAa2616fc54B51F02136b" | |
}, | |
{ | |
"tokenName": "SAND", | |
"decimals": 18, | |
"contractAddress": "0xBaa9e0793E1eb20F71b3B927A4A450448aB81048" | |
}, | |
{ | |
"tokenName": "LEO", | |
"decimals": 18, | |
"contractAddress": "0x66181570Fb9616576DB867F11d96D20119dd614E" | |
}, | |
{ | |
"tokenName": "CRV", | |
"decimals": 18, | |
"contractAddress": "0xaebc216e7b9f1712d1b0b89a57171a6608e6eb82" | |
}, | |
{ | |
"tokenName": "CETH", | |
"decimals": 8, | |
"contractAddress": "0x64078a6189bf45f80091c6ff2fcee1b15ac8dbde" | |
}, | |
{ | |
"tokenName": "AXS", | |
"decimals": 18, | |
"contractAddress": "0x824eF5755CD8F6FB110a64A59946639430628069" | |
}, | |
{ | |
"tokenName": "SUPER", | |
"decimals": 18, | |
"contractAddress": "0x5d9C96bf6176f59b22fA0f7152A45FB8dD6daFc3" | |
}, | |
{ | |
"tokenName": "BLANK", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "MINT", | |
"decimals": 18, | |
"contractAddress": "0x9D178e77fb3C60dF40bEb92Ad497498B8E4e496D" | |
}, | |
{ | |
"tokenName": "FRONT", | |
"decimals": 18, | |
"contractAddress": "0x0f215467A06956FbfE82B6CB12D15FCcFfD79700" | |
}, | |
{ | |
"tokenName": "BAND", | |
"decimals": 18, | |
"contractAddress": "0x76C37b175a646E91f3073eFA01643820701e5015" | |
}, | |
{ | |
"tokenName": "BICO", | |
"decimals": 18, | |
"contractAddress": "0x4218A408D1536CC24d7c01A0Fa656D1AA8Ef9163" | |
}, | |
{ | |
"tokenName": "COVA", | |
"decimals": 18, | |
"contractAddress": "0x2F64eA91347C5941Eb2c2A2629faa1a65B221573" | |
}, | |
{ | |
"tokenName": "MARSH", | |
"decimals": 18, | |
"contractAddress": "0x810aC7FF4E2fFc3817E8762dC9FE5aA9217BcB06" | |
}, | |
{ | |
"tokenName": "TVK", | |
"decimals": 18, | |
"contractAddress": "0xAE1164BE42Dbf1ca9E7395A52c1BFBaF018B23af" | |
}, | |
{ | |
"tokenName": "ERN", | |
"decimals": 18, | |
"contractAddress": "0x0dd2D2490a193dDC046F455BC3899f5fA81e669e" | |
}, | |
{ | |
"tokenName": "REEF", | |
"decimals": 18, | |
"contractAddress": "0x834efFEC7daFDFEd79F63e8A09abfE64ab074204" | |
}, | |
{ | |
"tokenName": "PSP", | |
"decimals": 18, | |
"contractAddress": "0x7233Fd1187Dc9B5CD12Ab949508bF7e0ac0f7D6E" | |
}, | |
{ | |
"tokenName": "CERE", | |
"decimals": 10, | |
"contractAddress": "0xAd34a92D9071f6ee5fDecC89B88aDc9cE02284A4" | |
}, | |
{ | |
"tokenName": "POND", | |
"decimals": 18, | |
"contractAddress": "0x16bc6cE19718A0e71AA7a9Bf52cDA694D3e1C164" | |
}, | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "0x6d0A65a41d53A645503c4fa1a9E657eD4eC13C91" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "0x8e223477B09b8fce00a56E2424E131225e8730c2" | |
}, | |
{ | |
"tokenName": "BLU", | |
"decimals": 18, | |
"contractAddress": "0xb28865CD4F20C1b63EE38C69D24B7175c571f7f8" | |
}, | |
{ | |
"tokenName": "EURS", | |
"decimals": 2, | |
"contractAddress": "0xfBfC6c39E2E25c87DC251CCD6180a0795014CF46" | |
} | |
] | |
} | |
}, | |
"binance": { | |
"mainnet": { | |
"httpProvider": "https://bsc-dataseed.binance.org/", | |
"chainId": 56, | |
"bscScanUrl": "https://bscscan.com", | |
"apiURL": "https://api.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x55d398326f99059fF775485246999027B3197955" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://data-seed-prebsc-1-s1.binance.org:8545/", | |
"chainId": 97, | |
"bscScanUrl": "https://testnet.bscscan.com", | |
"apiURL": "https://api-testnet.bscscan.com", | |
"bep20Supported": [ | |
{ | |
"tokenName": "USDT", | |
"decimals": 18, | |
"contractAddress": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd" | |
}, | |
{ | |
"tokenName": "BUSD", | |
"decimals": 18, | |
"contractAddress": "0xeD24FC36d5Ee211Ea25A80239Fb8C4Cfd80f12Ee" | |
} | |
] | |
} | |
}, | |
"xinfin": { | |
"mainnet": { | |
"httpProvider": "https://rpc.xinfin.network", | |
"chainId": 50, | |
"gasPrice": 20000000000, | |
"blocksScanUrl": "https://xdc.blocksscan.io", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc5d5f074837f5d4618b3916ba74de1bf9662a3fed" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdcff7412ea7c8445c46a8254dfb557ac1e48094391" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdc8f9920283470f52128bf11b0c14e798be704fd15" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.apothem.network", | |
"chainId": 51, | |
"gasPrice": 250000000, | |
"blocksScanUrl": "https://apothem.blocksscan.io/", | |
"xrc20Supported": [ | |
{ | |
"tokenName": "SRX", | |
"decimals": 18, | |
"contractAddress": "xdc7963447b34c3847b5ffeef2a178c1528dd0cd0f6" | |
}, | |
{ | |
"tokenName": "PLI", | |
"decimals": 18, | |
"contractAddress": "xdce2ef926d8c6f7773bb69b20f9a86f8dbe81145d9" | |
}, | |
{ | |
"tokenName": "CGO", | |
"decimals": 18, | |
"contractAddress": "xdca39598d6b4d9107ccc0f970e5b0f0ecbe18d5a59" | |
}, | |
{ | |
"tokenName": "YPUSDC", | |
"decimals": 6, | |
"contractAddress": "xdcfEe657401B5955B05E10FE47c9FBF0b607b25272" | |
} | |
] | |
} | |
}, | |
"cardano": { | |
"mainnet": { | |
"blockfrostAPIKey": "" | |
}, | |
"testnet": { | |
"blockfrostAPIKey": "" | |
} | |
}, | |
"ripple": { | |
"testnet": { | |
"httpProvider": "wss://s.altnet.rippletest.net:51233" | |
}, | |
"mainnet": { | |
"httpProvider": "wss://xrplcluster.com" | |
} | |
}, | |
"polygon": { | |
"mainnet": { | |
"httpProvider": "https://polygon-rpc.com", | |
"chainId": 137, | |
"gasPrice": 25000000000, | |
"gasStationApiUrl": "https://gasstation-mainnet.matic.network/v2", | |
"etherscanAPIUrl": "https://api.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc-mumbai.maticvigil.com", | |
"chainId": 80001, | |
"gasPrice": 20000000000, | |
"gasStationApiUrl": "https://gasstation-mumbai.matic.today/v2", | |
"etherscanAPIUrl": "https://api-testnet.polygonscan.com", | |
"erc20Supported": [ | |
{ | |
"tokenName": "USDC", | |
"decimals": 6, | |
"contractAddress": "0x2058A9D7613eEE744279e3856Ef0eAda5FCbaA7e" | |
} | |
] | |
} | |
}, | |
"solana": {}, | |
"avalanche": { | |
"mainnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax.network", | |
"chainId": 43114, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
}, | |
"testnet": { | |
"protocol": "https", | |
"port": 443, | |
"host": "api.avax-test.network", | |
"chainId": 43113, | |
"rpcURI": "/ext/bc/C/rpc", | |
"covalent_API_URL": "https://api.covalenthq.com/v1", | |
"covalent_API_KEY": "" | |
} | |
}, | |
"terra": { | |
"mainnet": { | |
"httpProvider": "https://lcd.terra.dev/", | |
"chainId": "columbus-5", | |
"gasStationApiUrl": "https://fcd.terra.dev/", | |
"blocksScanUrl": "https://api.extraterrestrial.money/" | |
}, | |
"testnet": { | |
"httpProvider": "https://bombay-lcd.terra.dev/", | |
"chainId": "bombay-12", | |
"gasStationApiUrl": "https://bombay-fcd.terra.dev/", | |
"blocksScanUrl": "https://api-testnet.extraterrestrial.money/" | |
} | |
}, | |
"casper": { | |
"mainnet": { | |
"httpProvider": "https://node-clarity-mainnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-mainnet.make.services", | |
"chainName": "casper" | |
}, | |
"testnet": { | |
"httpProvider": "https://node-clarity-testnet.make.services/rpc", | |
"scanApiUrl": "https://event-store-api-clarity-testnet.make.services", | |
"chainName": "casper-test" | |
} | |
}, | |
"elrond": { | |
"mainnet": { | |
"proxyProvider": "https://gateway.multiversx.com", | |
"apiProvier": "https://api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "1" | |
} | |
}, | |
"testnet": { | |
"proxyProvider": "https://testnet-gateway.multiversx.com", | |
"apiProvier": "https://testnet-api.multiversx.com", | |
"config": { | |
"minGasLimit": 50000, | |
"minGasPrice": 1000000000, | |
"chainId": "T" | |
} | |
} | |
}, | |
"zilliqa": { | |
"mainnet": { | |
"httpProvider": "https://api.zilliqa.com", | |
"devexHttpProvider": "https://devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil180v66mlw007ltdv8tq5t240y7upwgf7djklmwh" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1cuf78e3p37utekgk0gtcvd3hvkrqcgt06lrnty" | |
} | |
] | |
}, | |
"testnet": { | |
"httpProvider": "https://dev-api.zilliqa.com", | |
"devexHttpProvider": "https://stg-devex-apollo.zilliqa.com", | |
"zrc20Supported": [ | |
{ | |
"tokenName": "XSGD", | |
"decimals": 6, | |
"contractAddress": "zil1tpmfqtras2pv3t84kdq8dfdv38l3tel8pqthnu" | |
}, | |
{ | |
"tokenName": "XIDR", | |
"decimals": 6, | |
"contractAddress": "zil1tjx464ayk4lxvq4qxa595eadqd3tuann97hglf" | |
} | |
] | |
} | |
}, | |
"near": { | |
"mainnet": { | |
"httpProvider": "https://rpc.near.org", | |
"apiHost": "https://nearblocks.io/api", | |
"backupApi": "https://api.kitwallet.app" | |
}, | |
"testnet": { | |
"httpProvider": "https://rpc.testnet.near.org", | |
"apiHost": "https://testnet.nearblocks.io/api", | |
"backupApi": "https://testnet-api.kitwallet.app" | |
} | |
}, | |
"tezos": { | |
"mainnet": { | |
"rpcUrl": "", | |
"apiUrl": "", | |
"gasLimit": 10600 | |
}, | |
"testnet": { | |
"rpcUrl": "https://rpc.ghostnet.teztnets.xyz", | |
"apiUrl": "https://api.ghostnet.tzkt.io", | |
"gasLimit": 10600 | |
} | |
}, | |
"polkadot": { | |
"mainnet": { | |
"httpProvider": "wss://rpc.polkadot.io", | |
"scanApiUrl": "https://polkadot.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://westend-rpc.polkadot.io", | |
"scanApiUrl": "https://westend.webapi.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"moonriver": { | |
"mainnet": { | |
"httpProvider": "wss://moonriver.public.blastapi.io", | |
"scanApiUrl": "https://moonriver.api.subscan.io", | |
"defaultFee": "157000000" | |
}, | |
"testnet": { | |
"httpProvider": "wss://moonbase-alpha.public.blastapi.io", | |
"scanApiUrl": "https://moonbase.api.subscan.io", | |
"defaultFee": "15700000000" | |
} | |
}, | |
"filecoin": { | |
"mainnet": { | |
"httpProvider": "https://api.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph.glif.link/query", | |
"filScanHttpProvider": "https://api.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
}, | |
"testnet": { | |
"httpProvider": "https://api.calibration.node.glif.io/rpc/v0", | |
"glifGraphqlProvider": "https://graph-calibration.glif.link/query", | |
"filScanHttpProvider": "https://calibration.filscan.io:8700/rpc/v1", | |
"defaultFee": "300000000000000" | |
} | |
}, | |
"algorand": { | |
"mainnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=", | |
"genesisId": "mainnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": {} | |
}, | |
"testnet": { | |
"minAssetBalance": 100000, | |
"genesisHash": "SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=", | |
"genesisId": "testnet-v1.0", | |
"maxFee": 10000, | |
"asaSupported": { | |
"USDT": { | |
"assetId": 94115664, | |
"decimals": 6 | |
} | |
} | |
} | |
} | |
}, | |
"hpcs": { | |
"xdc": { | |
"deployer": { | |
"address": "process.env.HPCS_XDC_DEPLOYER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_DEPLOYER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_DEPLOYER_PUBLIC_KEY" | |
}, | |
"backOfficer": { | |
"address": "process.env.HPCS_XDC_BACKOFFICER_ADDRESS", | |
"keystoreId": "process.env.HPCS_XDC_BACKOFFICER_KEYSTORE_ID", | |
"publicKey": "process.env.HPCS_XDC_BACKOFFICER_PUBLIC_KEY" | |
} | |
} | |
}, | |
"customerHolderForIssuance": { | |
"ERC20": "FRONT_OFFICE", | |
"XYM": "FRONT_OFFICE", | |
"NOP": "", | |
"XRC20": "HPCS" | |
}, | |
"midOfficeNotifications": { | |
"operationsMailId": "", | |
"notifyOperationsMail": false, | |
"notifyMidOfficersFromDatabase": true | |
}, | |
"signet": { | |
"host": "https://uat02-api.app.signet.com", | |
"sourceId": "PropineSignetUAT", | |
"audience": "PropineSignetUAT", | |
"clientId": "", | |
"clientSecret": "", | |
"apiConfirmCode": "SXtpmA", | |
"originatorId": "1580011361", | |
"internalAddress": "", | |
"genesis": { | |
"address": "" | |
} | |
}, | |
"etherScanAPIRateLimits": { | |
"perSecond": 5, | |
"perDay": 100000 | |
}, | |
"institution": { | |
"supportedTokens": { | |
"networks": ["Ethereum"], | |
"tokens": ["ETH", "USDT", "USDC"] | |
} | |
}, | |
"tatum": { "chainType": "testnet", "apiUrl": "https://api.tatum.io/v4"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/baseTheme/propine/header.hbs","entries":[{"id":"7EKT.hbs","timestamp":1694153266649},{"id":"0YJO.hbs","source":"moved.source","timestamp":1694156442611},{"id":"GLIA.hbs","source":"moved.source","timestamp":1694156445240},{"id":"kXkh.hbs","source":"moved.source","timestamp":1694159852407},{"id":"TOVu.hbs","source":"moved.source","timestamp":1694159863746},{"id":"V5pA.hbs","timestamp":1694161983395},{"id":"kIMe.hbs","timestamp":1694166992811},{"id":"9yok.hbs","timestamp":1694169228261},{"id":"KNq0.hbs","source":"moved.source","timestamp":1694169846567},{"id":"nSDX.hbs","source":"moved.source","timestamp":1694169861265},{"id":"DkGv.hbs","timestamp":1694177139280},{"id":"WYrF.hbs","timestamp":1694177463032},{"id":"bdIS.hbs","timestamp":1694177479625},{"id":"YTAq.hbs","timestamp":1695026129768},{"id":"zFyb.hbs","timestamp":1695026361044},{"id":"VrYd.hbs","timestamp":1695028299561}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/hooks/useCreatePortfolio.ts","entries":[{"id":"oD0M.ts","timestamp":1693225958658},{"id":"RMuN.ts","timestamp":1693226195045},{"id":"KwMM.ts","timestamp":1693226245155},{"id":"MXNn.ts","timestamp":1693226286392},{"id":"b8U8.ts","timestamp":1693226390076},{"id":"Odjx.ts","source":"Workspace Edit","timestamp":1693226393324},{"id":"ayPL.ts","timestamp":1693226868763},{"id":"HdCu.ts","source":"undoRedo.source","timestamp":1693226874758},{"id":"ehqt.ts","timestamp":1693226881205},{"id":"ldxs.ts","timestamp":1693228574533}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/loadtest/services/provider.ts","entries":[{"id":"YGLX.ts","timestamp":1701198084147},{"id":"XaLs.ts","source":"moved.source","timestamp":1701198200706},{"id":"9YE7.ts","source":"Workspace Edit","timestamp":1701198200829}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/defiTransfers.ts","entries":[{"id":"YZUW.ts","timestamp":1700713298680},{"id":"a5wO.ts","timestamp":1700723163369},{"id":"hoku.ts","timestamp":1700742920211},{"id":"X7mW.ts","timestamp":1700815037357}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/baseTheme/fortris/footer.hbs","entries":[{"id":"0G5R.hbs","timestamp":1695005216794},{"id":"qhgO.hbs","timestamp":1695005229984},{"id":"uHdh.hbs","timestamp":1695005412390},{"id":"ELo3.hbs","timestamp":1695005691637},{"id":"fO1Y.hbs","timestamp":1695005708183},{"id":"A9QH.hbs","timestamp":1695024510104},{"id":"Uwry.hbs","timestamp":1695024949372},{"id":"tsgX.hbs","timestamp":1695025859657},{"id":"dGZ7.hbs","timestamp":1695026438268},{"id":"69ri.hbs","timestamp":1695026490599},{"id":"NlDM.hbs","timestamp":1695026519195},{"id":"lyrg.hbs","timestamp":1695028272870},{"id":"ex69.hbs","timestamp":1695028358075},{"id":"ogSk.hbs","timestamp":1695028777007},{"id":"TfRk.hbs","timestamp":1698031410490},{"id":"eZ55.hbs","timestamp":1698045877032},{"id":"mvL3.hbs","timestamp":1698045898190},{"id":"GQTM.hbs","timestamp":1698197144455}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/.aws/credentials","entries":[{"id":"U3Ro","timestamp":1691991089896},{"id":"OoUm","timestamp":1691991169562},{"id":"GOFv","timestamp":1691991254228},{"id":"rQ98","timestamp":1697063570456},{"id":"rKLx","timestamp":1697063585166},{"id":"BAo3","timestamp":1698736845517},{"id":"ERzj","timestamp":1698736859454}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/litecoin/common/utils.ts","entries":[{"id":"hgRW.ts","timestamp":1696045223907},{"id":"G1Ci.ts","source":"Workspace Edit","timestamp":1696045229801},{"id":"rbKY.ts","timestamp":1696045448434},{"id":"nxp4.ts","timestamp":1696045498543},{"id":"0op8.ts","source":"moved.source","timestamp":1696045790912},{"id":"S6Db.ts","source":"renamed.source","timestamp":1696045827510}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/venus-codepipeline/data.tf","entries":[{"id":"rV6a.tf","source":"searchReplace.source","timestamp":1696893797722}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-production/poseidon-codepipeline/locals.tf","entries":[{"id":"O49g.tf","source":"searchReplace.source","timestamp":1696893797725},{"id":"cBxG.tf","source":"searchReplace.source","timestamp":1696893988768},{"id":"FaYm.tf","timestamp":1697094859763}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/polkadot/__test__/polkadot.test.ts","entries":[{"id":"8TUi.ts","timestamp":1696027774715},{"id":"2dGr.ts","timestamp":1696836793903},{"id":"1TXO.ts","timestamp":1696837047910},{"id":"yoI2.ts","source":"undoRedo.source","timestamp":1696837061457},{"id":"XRVo.ts","timestamp":1696837076073},{"id":"R2rW.ts","source":"undoRedo.source","timestamp":1696837262164}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/WelcomeEmailRegeneratedCodeText.hbs","entries":[{"id":"vWYv.hbs","timestamp":1694592703810},{"id":"zV6e.hbs","timestamp":1694592718061},{"id":"Dn0b.hbs","timestamp":1694592729931},{"id":"xLMR.hbs","timestamp":1694592858721},{"id":"z0yT.hbs","source":"moved.source","timestamp":1694593303739},{"id":"Rb1Z.hbs","timestamp":1694594138450},{"id":"nWC9.hbs","timestamp":1694594271210},{"id":"HLmf.hbs","timestamp":1694594730250},{"id":"M6tR.hbs","timestamp":1694595040682},{"id":"jrKj.hbs","timestamp":1694596970006},{"id":"TMqA.hbs","source":"undoRedo.source","timestamp":1694596992055},{"id":"EFsL.hbs","timestamp":1694613616039},{"id":"Gi2r.hbs","timestamp":1694615330823},{"id":"76xQ.hbs","source":"undoRedo.source","timestamp":1694615369784},{"id":"Ewlx.hbs","timestamp":1694654213074},{"id":"EuVR.hbs","timestamp":1694654271391},{"id":"p5Nh.hbs","timestamp":1694654319588},{"id":"O6Pp.hbs","timestamp":1694654955639},{"id":"kwba.hbs","source":"searchReplace.source","timestamp":1694664350016},{"id":"no94.hbs","timestamp":1694709804484},{"id":"bZgE.hbs","source":"searchReplace.source","timestamp":1694710181930},{"id":"Tkby.hbs","timestamp":1694710398331},{"id":"nqAM.hbs","timestamp":1698047146253},{"id":"daRM.hbs","timestamp":1698047174659},{"id":"MOoI.hbs","timestamp":1698047191511},{"id":"J4vI.hbs","timestamp":1698047217683},{"id":"wI5C.hbs","timestamp":1698047250169},{"id":"AlDW.hbs","timestamp":1698047327205},{"id":"8XBX.hbs","timestamp":1698284977557}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/bin/emails/__tests__/processorTestCases.ts","entries":[{"id":"3gWc.ts","timestamp":1691997044730},{"id":"cBBR.ts","timestamp":1691997065384},{"id":"T9H7.ts","timestamp":1691999279856},{"id":"6DiG.ts","timestamp":1691999807366},{"id":"CJkv.ts","timestamp":1692249184365},{"id":"H6B5.ts","timestamp":1692249680950},{"id":"BI2L.ts","timestamp":1692249719987},{"id":"F1lp.ts","timestamp":1692249808356},{"id":"l1gp.ts","source":"searchReplace.source","timestamp":1694730976990},{"id":"asB8.ts","source":"searchReplace.source","timestamp":1694731012324},{"id":"7DDa.ts","source":"searchReplace.source","timestamp":1694731033804},{"id":"oWmx.ts","source":"searchReplace.source","timestamp":1694731057370},{"id":"Itea.ts","source":"searchReplace.source","timestamp":1694731086520},{"id":"LPJN.ts","timestamp":1694731125780},{"id":"FfyN.ts","timestamp":1696389260708},{"id":"pNiL.ts","timestamp":1696487072636},{"id":"TBZ2.ts","timestamp":1696487092634},{"id":"nP3z.ts","timestamp":1696487121012},{"id":"Xg38.ts","timestamp":1696487146803},{"id":"j2fd.ts","timestamp":1696487165784},{"id":"OZVN.ts","timestamp":1696487180450},{"id":"hW9x.ts","timestamp":1696487196391},{"id":"tj4O.ts","timestamp":1696487403295},{"id":"0kA4.ts","timestamp":1696944848095},{"id":"OM2c.ts","timestamp":1696944883396},{"id":"aLtN.ts","timestamp":1696944894126},{"id":"bAuh.ts","timestamp":1696944929809},{"id":"drnq.ts","timestamp":1696944947979}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/activities/index.ts","entries":[{"id":"J4eu.ts","timestamp":1692070433207}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/litecoin/index.ts","entries":[{"id":"83XR.ts","timestamp":1695849944531},{"id":"IWql.ts","timestamp":1695850026925},{"id":"wZys.ts","timestamp":1695850122312},{"id":"e0WD.ts","timestamp":1695850167312},{"id":"EnnP.ts","source":"Workspace Edit","timestamp":1695850276375},{"id":"Jl2s.ts","timestamp":1695850329057},{"id":"ThyY.ts","timestamp":1695850439043},{"id":"eFzw.ts","timestamp":1695850777575},{"id":"ZmJQ.ts","timestamp":1695851437466},{"id":"OqoV.ts","timestamp":1695852363507},{"id":"EyCH.ts","timestamp":1695852676315},{"id":"JbSu.ts","timestamp":1695853334326},{"id":"144N.ts","timestamp":1695853404860},{"id":"hpp4.ts","timestamp":1695853717544},{"id":"L8WQ.ts","source":"Workspace Edit","timestamp":1695853781043},{"id":"R62O.ts","timestamp":1695853793765},{"id":"cHY0.ts","timestamp":1695863798907},{"id":"xfnG.ts","timestamp":1695872446945},{"id":"v8NC.ts","timestamp":1695873095411},{"id":"5XWZ.ts","timestamp":1695873278769},{"id":"Z79d.ts","timestamp":1695875229983},{"id":"5GGt.ts","timestamp":1695877507835},{"id":"PZ9j.ts","timestamp":1695881550775},{"id":"uPU3.ts","source":"Workspace Edit","timestamp":1695891461634},{"id":"lgt8.ts","source":"Workspace Edit","timestamp":1695891665568},{"id":"4M4n.ts","timestamp":1695902799211},{"id":"JEyc.ts","source":"Workspace Edit","timestamp":1695902802683},{"id":"vwfD.ts","timestamp":1695902865154},{"id":"a5sP.ts","timestamp":1695906924966},{"id":"aMV1.ts","source":"undoRedo.source","timestamp":1695907074109},{"id":"87Qp.ts","timestamp":1695938495987},{"id":"AoHi.ts","timestamp":1695938680867},{"id":"zq7q.ts","timestamp":1696047055558},{"id":"1fzH.ts","timestamp":1696047327619},{"id":"wM3v.ts","timestamp":1696047342445},{"id":"agHw.ts","source":"Workspace Edit","timestamp":1696047372056},{"id":"3arf.ts","timestamp":1696048141690},{"id":"XBdi.ts","source":"Workspace Edit","timestamp":1696048145425},{"id":"Rgz3.ts","timestamp":1696048749857},{"id":"YI4Y.ts","timestamp":1696302804614},{"id":"U7OF.ts","timestamp":1696302831402},{"id":"kSK1.ts","timestamp":1696302922687},{"id":"gqNf.ts","source":"Workspace Edit","timestamp":1696302927320},{"id":"1GuN.ts","timestamp":1696303014782},{"id":"Yn9h.ts","timestamp":1696407064935},{"id":"YX6T.ts","timestamp":1696407090433},{"id":"OSKm.ts","timestamp":1696407178555},{"id":"8hAb.ts","timestamp":1696407396998},{"id":"LRr8.ts","timestamp":1696407415108},{"id":"NBn7.ts","source":"Workspace Edit","timestamp":1696410975104}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/temporal/activities/depositMonitoring/activities.ts","entries":[{"id":"Htkw.ts","timestamp":1698186545667},{"id":"HGdJ.ts","timestamp":1698186701870},{"id":"ahDQ.ts","timestamp":1698186794890},{"id":"MTLp.ts","source":"undoRedo.source","timestamp":1698186815586},{"id":"OSb5.ts","timestamp":1698532617683},{"id":"JYOD.ts","timestamp":1698532637992},{"id":"dBdt.ts","timestamp":1699466584051},{"id":"NkJu.ts","timestamp":1699583874613},{"id":"nfww.ts","timestamp":1699590058138},{"id":"8drJ.ts","timestamp":1699590082279},{"id":"EElx.ts","timestamp":1699843971936},{"id":"dRjG.ts","timestamp":1699848990248},{"id":"FjsX.ts","timestamp":1699849371188},{"id":"FUs9.ts","timestamp":1699997774393},{"id":"Oe8E.ts","timestamp":1700001215093},{"id":"Ixxw.ts","timestamp":1700004400594},{"id":"RniQ.ts","timestamp":1700010450546},{"id":"QG10.ts","timestamp":1700127831146},{"id":"2LQI.ts","timestamp":1700148410498},{"id":"MuHm.ts","timestamp":1700197373153},{"id":"HX37.ts","timestamp":1700542310162}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-staging/apollo-codepipeline/locals.tf","entries":[{"id":"HQJ6.tf","timestamp":1694574188709}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/users/usersService.ts","entries":[{"id":"OxpV.ts","timestamp":1692236456304},{"id":"gEG4.ts","timestamp":1692237354776},{"id":"rnPH.ts","timestamp":1692237485332},{"id":"s4yA.ts","timestamp":1692589827665},{"id":"SMvM.ts","timestamp":1692589870413},{"id":"fUlI.ts","timestamp":1692590579518},{"id":"RULA.ts","timestamp":1692590758261},{"id":"q7Ly.ts","timestamp":1692591051236},{"id":"05zJ.ts","source":"Workspace Edit","timestamp":1692591055366},{"id":"4XCX.ts","timestamp":1692591120763},{"id":"XdKf.ts","timestamp":1692591446967},{"id":"u6xM.ts","timestamp":1692937959964},{"id":"bGHY.ts","timestamp":1692937981499},{"id":"WOGk.ts","timestamp":1693286241828},{"id":"2z3W.ts","timestamp":1693286415980},{"id":"weDZ.ts","timestamp":1693286502423},{"id":"yTh5.ts","timestamp":1693287580014},{"id":"L6k0.ts","timestamp":1693294945876},{"id":"6pJq.ts","timestamp":1693295170495},{"id":"l94B.ts","timestamp":1693360871996},{"id":"FWn4.ts","timestamp":1693360942759},{"id":"PTp0.ts","timestamp":1693361023660},{"id":"T6u0.ts","source":"Renaming includeDeleted to includeInactiveAndDeleted","timestamp":1694154175893},{"id":"mrdl.ts","timestamp":1694154191391},{"id":"Ttaw.ts","timestamp":1694154208761},{"id":"rRsP.ts","timestamp":1697429684216},{"id":"QOwE.ts","source":"undoRedo.source","timestamp":1697429708283},{"id":"ClFA.ts","timestamp":1697439641350},{"id":"581T.ts","timestamp":1697439653335},{"id":"TKcB.ts","timestamp":1698915556813},{"id":"AJAc.ts","timestamp":1698915714224},{"id":"7mwh.ts","timestamp":1699406943461},{"id":"prAp.ts","timestamp":1702529302423},{"id":"My11.ts","timestamp":1702529457671},{"id":"ym9x.ts","timestamp":1702529855696},{"id":"leZI.ts","timestamp":1702531247848}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/codepipeline/cryptocore-staging/venus-codepipeline/main.tf","entries":[{"id":"4xWZ.tf","timestamp":1694497672523},{"id":"UaGN.tf","source":"searchReplace.source","timestamp":1694498513758},{"id":"gmPU.tf","timestamp":1694766562152}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/s3/cryptocore-production/locals.tf","entries":[{"id":"DHwM.tf","timestamp":1696844005351}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/config-on-secret/cryptocore-production/hermes/main.tf","entries":[{"id":"goSM.tf","source":"searchReplace.source","timestamp":1696922430889}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/api/v3/assetTransferRequests/validators.ts","entries":[{"id":"hHVo.ts","source":"undoRedo.source","timestamp":1702523453834}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/configurations/institutions/fortris.config.ts","entries":[{"id":"p7ZW.ts","timestamp":1694155809427},{"id":"mOtV.ts","timestamp":1694156008283},{"id":"7n4T.ts","timestamp":1694156334869},{"id":"4lu7.ts","timestamp":1694156367132},{"id":"fcZA.ts","timestamp":1694170058279},{"id":"gzUT.ts","timestamp":1694710134524},{"id":"3yzP.ts","timestamp":1694750319741},{"id":"72yy.ts","timestamp":1695019243537},{"id":"kSMc.ts","timestamp":1695022910839},{"id":"nSuq.ts","timestamp":1695026309267},{"id":"jAmt.ts","timestamp":1695026319752},{"id":"VxbU.ts","timestamp":1695815425528},{"id":"01KO.ts","timestamp":1695815626183},{"id":"ANfn.ts","timestamp":1696390572121}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/NotEnoughFrozenBalanceForTopUpText.hbs","entries":[{"id":"keER.hbs","source":"searchReplace.source","timestamp":1694664209223},{"id":"CxRK.hbs","source":"undoRedo.source","timestamp":1694664268032},{"id":"hfAt.hbs","source":"searchReplace.source","timestamp":1694664297575},{"id":"O3pg.hbs","source":"searchReplace.source","timestamp":1694664350016},{"id":"GRh4.hbs","timestamp":1694664442630},{"id":"IBzC.hbs","source":"searchReplace.source","timestamp":1694710068458}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/athena/src/pages/mid-officer/requests/whitelist-crypto-account-requests/%5Bid%5D.page.tsx","entries":[{"id":"AI3Z.tsx","timestamp":1694008547790},{"id":"jVvZ.tsx","source":"Workspace Edit","timestamp":1694008550128},{"id":"vri0.tsx","timestamp":1694008562138},{"id":"oCP7.tsx","timestamp":1694008597403},{"id":"6K6C.tsx","timestamp":1694008767014},{"id":"eS0E.tsx","timestamp":1694008789313},{"id":"uJL5.tsx","source":"Workspace Edit","timestamp":1694008795086}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/apollo/src/services/portfolios/users/service.ts","entries":[{"id":"jL8l.ts","timestamp":1692771536323},{"id":"Vjxj.ts","source":"undoRedo.source","timestamp":1692771614474},{"id":"zTqZ.ts","timestamp":1693230472782},{"id":"wyra.ts","source":"Workspace Edit","timestamp":1693230477953},{"id":"W2UR.ts","timestamp":1699495168230},{"id":"kqQW.ts","timestamp":1699495275440},{"id":"Xfuk.ts","timestamp":1699496577927},{"id":"Etb1.ts","timestamp":1699496769235},{"id":"ljDS.ts","timestamp":1699496792298}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/cryptocore_production_aws_credentials","entries":[{"id":"H6kz","timestamp":1696985996372},{"id":"TETI","timestamp":1696986031270}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/AssetTransferIntent.hbs","entries":[{"id":"XAY4.hbs","timestamp":1694587464344},{"id":"4avp.hbs","source":"moved.source","timestamp":1694593303638},{"id":"W45D.hbs","timestamp":1694594042323},{"id":"wY3p.hbs","timestamp":1694666184097},{"id":"zvys.hbs","source":"searchReplace.source","timestamp":1694710068457},{"id":"Z99g.hbs","source":"searchReplace.source","timestamp":1694710085380}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/contents/FiatBankAccountDeactivateActionText.hbs","entries":[{"id":"xnXG.hbs","timestamp":1694662857842},{"id":"jmCn.hbs","source":"undoRedo.source","timestamp":1694662859349},{"id":"ozzs.hbs","timestamp":1694663018671},{"id":"LyXq.hbs","source":"renamed.source","timestamp":1694663460640},{"id":"rNmW.hbs","source":"searchReplace.source","timestamp":1694710068457}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/terraform-fortris/config-on-secret/cryptocore-production/poseidon/main.tf","entries":[{"id":"JgBP.tf","source":"searchReplace.source","timestamp":1696922430893}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/venus/src/services/blockchain/zilliqa/ZilliqaService.ts","entries":[{"id":"seSW.ts","timestamp":1700719722289},{"id":"6s7k.ts","timestamp":1700719736237},{"id":"Ldvh.ts","source":"Workspace Edit","timestamp":1700719758716},{"id":"R8Zf.ts","timestamp":1700719803736},{"id":"MrGP.ts","timestamp":1700722758137},{"id":"Y8o3.ts","source":"searchReplace.source","timestamp":1700727913957}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///etc/hosts","entries":[{"id":"6G7i","timestamp":1692012766515},{"id":"yJTH","timestamp":1692014191488},{"id":"iKrN","timestamp":1692075460382},{"id":"nbFS","timestamp":1692151155072},{"id":"8ykk","timestamp":1695094343774},{"id":"cOtC","timestamp":1695853301580},{"id":"uHPr","timestamp":1699935391707},{"id":"be3s","timestamp":1699948194650}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/pet/crypto-experiment/src/eip1559/loadtest/getHistories.ts","entries":[{"id":"CHgk.ts","timestamp":1701483639755},{"id":"8PWd.ts","timestamp":1701483662837},{"id":"QkJ1.ts","source":"undoRedo.source","timestamp":1701483693218},{"id":"0FCy.ts","timestamp":1701483694342},{"id":"tsYf.ts","timestamp":1701483749015}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/taile/propine/zeus/src/lib/awsSes/resources/templates/getFile.ts","entries":[{"id":"kqYl.ts","timestamp":1694705409767},{"id":"dPER.ts","timestamp":1694705424512},{"id":"0ZSB.ts","timestamp":1694705481478},{"id":"D0Ip.ts","timestamp":1694705517713},{"id":"4E8O.ts","timestamp":1694705575917}]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment