blob: 3c19661f2f493cc6b4907cc5a9d10a1e26e86fc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import Icon from 'ts/icons/logos/trace.svg';
import { ContextInterface } from './index';
export const context: ContextInterface = {
title: 'sol-trace',
name: 'trace',
subtitle: 'Human-readable stack traces',
docLink: 'https://0x.org/docs/sol-trace',
tagline: 'Immediately locate Solidity errors and rapidly debug failed transactions',
icon: Icon,
colors: {
main: '#4F76FF',
secondary: '#CDD8FF',
secondary_alt: '#BFCDFF',
type: '#7090FF',
type_alt: '#355CE5',
dark: '#2A4ABC',
},
};
|