In this repo I'm going to solve every Capture the Ether challenges.
I would like to thanks Christoph Michel, I've forked his own capture-the-ether repository to setup mine.
| // SPDX-License-Identifier: Unlicense | |
| pragma solidity ^0.8.13; | |
| contract Require { | |
| event Logme(); | |
| constructor() {} |
In this repo I'm going to solve every Capture the Ether challenges.
I would like to thanks Christoph Michel, I've forked his own capture-the-ether repository to setup mine.
| /* eslint-disable no-process-env */ | |
| import * as Sentry from '@sentry/react'; | |
| import {Integrations} from '@sentry/tracing'; | |
| if ( | |
| process.env.REACT_APP_ENVIRONMENT === 'production' || | |
| process.env.REACT_APP_ENVIRONMENT === 'staging' | |
| ) { | |
| Sentry.init({ | |
| environment: process.env.REACT_APP_ENVIRONMENT, |
| import { enableProdMode } from '@angular/core'; | |
| import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | |
| import * as Sentry from '@sentry/angular'; | |
| import { Integrations } from '@sentry/tracing'; | |
| import { AppModule } from './app/app.module'; | |
| import { environment } from './environments/environment'; | |
| if (environment.production) { | |
| Sentry.init({ | |
| environment: environment.environment, |
| Name | Description |
|---|---|
| setSelectDialogTitle | Set the SelectDialog Title |
| setSelectDialogNoDataText | Set the SelectDialog text when there's no item available |
| setSelectDialogMultiSelect | Set the SelectDialog multiselect mode |
| setSelectDialogGrowingThreshold | Set the SelectDialog growing threshold |
| setSelectDialogContentWidth | Set the SelectDialog content width |
| setSelectDialogRememberSelections | Set if the SelectDialog should remember selections |
| setSelectDialogContentHeight | Set the SelectDialog content height |
| existToken | Check if a Token already exists in the MultiInput |
| Name | Type | Default | Description |
|---|---|---|---|
| selectDialogFilterKeys | string[] | null | List of keys to filter select dialog items with |
| selectDialogMode | String | CheckSelected | HideSelected |
| <df:MultiInputDialog | |
| suggestionItems="{oData>/Customers}" | |
| tokens="{oDataModel>/tokens}" | |
| tokenUpdate="onTokenUpdate" | |
| selectDialogItems="{oData>/Customers}" | |
| selectDialogFilterKeys="ContactName,ContactTitle" | |
| selectDialogMultiSelect="true"> | |
| <df:suggestionItems> | |
| <core:Item | |
| key="{oData>CustomerID}" |
| "sap.ui5": { | |
| ... | |
| "dependencies": { | |
| "minUI5Version": "1.30.0", | |
| "libs": { | |
| ... | |
| "it.designfuture.multiinputdialog": {} | |
| } | |
| }, | |
| "resourceRoots": { |
| Name | Description |
|---|---|
| info | Show an info toast |
| success | Show a success toast |
| warning | Show an warning toast |
| error | Show an error toast |
| clearToast | Clear a specific toast |
| clearLastToast | Clear the last toast showed |
| clearAllToast | Clear all the toasts stacked |
| Name | Type | Default | Description |
|---|---|---|---|
| closeButton | boolean | false | Optionally enable a close button |
| debug | boolean | false | Show more debug informations |
| progressBar | boolean | false | Visually indicate how long before a toast expires. |
| preventDuplicates | boolean | false | Rather than having identical toasts stack, set the preventDuplicates property to true. Duplicates are matched to the previous toast based on their message content. |
| tapToDismiss | boolean | true | Tap toast to dismiss it |
| newestOnTop | boolean | true | Show newest toast at bottom |
| showEasing | boolean | "swing" | Animation easing |
| hideEasing | boolean | "linear" | Animation easing |