MyCrypto/common/utils/consoleAdvertisement.ts
William O'Beirne 6be50f74b5 More MEW -> MyCrypto Changes (#1043)
* Replace all language instances of MYCRYPTO LLC

* Fix disclaimer LLC

* Fix console advert link, adjust logo and make it easier to edit.

* Update coinbase URL.

* Fix trezor and ledger component links and text.

* Misc. cleanup.

* Update unlock guide at the end of generate.

* Fix onboarding translation string

* Change salt hash from mew to mycrpyto.
2018-02-10 13:24:05 -06:00

34 lines
3.0 KiB
TypeScript

// Simply importing this file will do the console log conditionally
// prettier-ignore
export default function consoleAdvertisement() {
console.log(
`%c
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ ┃
┃ ,:;;;;;;;;;;;, ┃
┃ ;;;;;;;;;;;;;;;;;;;;; ┃
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;, ┃
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;. ┃
┃ ;;;;;;;;;;'';;;;;;;;;'';;;;;;;;;; ┃
┃ .;;;;;;;;: ;;;;; :;;;;;;;; ┃
┃ ;;;;;;;: ' ;;;;;;;; _ _ _ _ _ ┃
┃ ;;;;;;; ;;;; ;;;; ;;;;;;: | | (_) | | | | | | ┃
┃ ';;;;;;; ;;;;;;;; ;;;;;;;; ;;;;;;; | | ___ _ _ __ | | | |___| | ┃
┃ :;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; _ | |/ _ \\| | '_ \\ | | | / __| | ┃
┃ ,;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |__| | (_) | | | | | | |__| \\__ \\_| ┃
┃ ;;;;;;;;;;;; ;;;;;;;;; ;;;;;;;;;;;; \\____/ \\___/|_|_| |_| \\____/|___(_) ┃
┃ ;;;;;;;;;;;; ;;;;; ;;;;;;;;;;;, ┃
┃ ;;;;;;;;;;;;: :;;;;;;;;;;;; https://github.com/MyCrypto/MyCrypto ┃
┃ ;;;;;;;;;;;;;: :;;;;;;;;;;;;; ┃
┃ ;;;;;;;;;;;;;;: :;;;;;;;;;;;;;; ┃
┃ ';;;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
┃ ';;;;;;;;;;;;;;;;;;;;;;;;; ┃
┃ ';;;;;;;;;;;;;;;;;;;' ┃
┃ :;;;;;;;;;: ┃
┃ ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
`,
'background: #163151; color: #FFF;'
);
}