| Tree | Size | Index | Real |
|-------------------------------------------------+------+-------+------|
| StakedEthToken | | | |
| --- OwnablePausableUpgradeable | | | |
| ------- PausableUpgradeable | | | |
| ----------- Initializable | | | |
| --------------- bool _initialized | 1/32 | 0 | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { ethers } from "hardhat"; | |
| import { Signer } from "ethers"; | |
| async function main() { | |
| let admin: Signer = await ethers.getSigners().then(xs => xs[0]); | |
| const message: Uint8Array = ethers.toUtf8Bytes("mindless"); | |
| const digest: Uint8Array = ethers.getBytes(ethers.keccak256(message)); | |
| const signature: string = await admin.signMessage(digest); |
- Структури от данни
- Линейни
- Масив + списък
- Бинарно търсене
- Упражнения: Наков
- Свързан списък
- Стек
- Масив + списък
- Линейни
- Опашка
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from std/os import sleep | |
| from std/times import epochTime | |
| from strutils import format | |
| type | |
| Timer = object | |
| point: float | |
| elapsed: float |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int find_index(char s[], char element) | |
| { | |
| int i; | |
| for (i = 0; s[i] != '\0'; i++) | |
| { | |
| if (s[i] == element) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PyDoc_STRVAR_shared(_Py_title__doc__, | |
| "B.title() -> copy of B\n\ | |
| \n\ | |
| Return a titlecased version of B, i.e. ASCII words start with uppercase\n\ | |
| characters, all remaining cased characters have lowercase."); | |
| void | |
| _Py_bytes_title(char *result, const char *s, Py_ssize_t len) | |
| { | |
| Py_ssize_t i; |
- Pool: 0xeA6b7151b138c274eD8d4D61328352545eF2D4b7
- Pool Escrow: 0xa57C8861d923B57A09BC9270fA76198c8cDCB002
- Pool Validators: [0x270Ad793b7BB315A9fd07F1FFFd8AB1e3621dF7E](https://etherscan.io/address/0x270ad793b7bb315a9f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useEffect, useState } from 'react'; | |
| interface Wallet { | |
| accounts: Array<string>; | |
| } | |
| function App(): React.JSX.Element { | |
| // Provider | |
| const [ | |
| hasProvider, |