aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/context/profiler.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx')
-rw-r--r--packages/dev-tools-pages/ts/context/profiler.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx
new file mode 100644
index 000000000..5ccfa5b4c
--- /dev/null
+++ b/packages/dev-tools-pages/ts/context/profiler.tsx
@@ -0,0 +1,19 @@
+import Icon from 'ts/icons/logos/profiler.svg';
+
+import { ContextInterface } from './index';
+
+export const context: ContextInterface = {
+ title: 'sol-profiler',
+ name: 'profiler',
+ subtitle: 'Gas profiling for Solidity',
+ tagline: "Implement data-guided optimizations by profiling your contract's gas usage",
+ icon: Icon,
+ colors: {
+ main: '#FF7144',
+ secondary: '#FED7CB',
+ secondary_alt: '#FECEBE',
+ type: '#EB8666',
+ type_alt: '#D16745',
+ dark: '#985C49',
+ },
+};