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
Address | Starknet ID | STRK allocation | |
---|---|---|---|
0x49fb4281d13e1f5f488540cd051e1507149e99cc2e22635101041ec5e4e4557 | realmsworld.stark | 0 | |
0x44c0d80799aca566a792c5ef2491ba5e36391dd7fceffd9afe2824335ab55e1 | mimesis.stark | 1200 | |
0x680afd6b0843e7851390521d87e849f010babbc608ba53dcff02b1c0fcd6fa | 1800 | ||
0x3f60afe30844f556ac1c674678ac4447840b1c6c26854a2df6a8a3d2c015610 | sendmoodz.stark | 91800 | |
0x79b6f2012e8fc8b94b79d81e24fcf41d5cc3b84cd98e3ba6fd715ba0d2037fa | computerbleu.stark | 0 | |
0x3c22c9daf71cc2c9cdb6018bccd3903b94ca0ce74ba048a4f8ee4ccd7451e83 | chenzs.stark | 1200 | |
0x2c36503c8ed3a54daed4b7d1870593329aa144c6fb389d3afd86659384773a0 | 0 | ||
0x7266c8d2cf45ecba9221e7691f80fb3e6c4ff30b09f6a3a1097341a2f3f14de | e.stark | 0 | |
0x6e14b28449c412a336e7a5a3473da083b9159e6845be4d02ee50f6095a5b3ce | 1200 |
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
/** | |
* Returns a promise that has a cancelled method that will cause the callbacks not to fire when it resolves or rejects | |
* @param promise to wrap | |
* @returns new promise that will only resolve or reject if cancel is not called | |
*/ | |
export default function cancellable(promise) { | |
var cancelled = false; | |
const toReturn = new Promise((resolve, reject) => { | |
promise.then(() => { |
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 org.jsoup.Jsoup; | |
import org.jsoup.nodes.Document; | |
import org.jsoup.nodes.Element; | |
import org.jsoup.select.Elements; | |
import java.util.HashMap; | |
import java.util.HashSet; | |
import java.util.Set; | |
import java.util.StringTokenizer; | |
import java.util.logging.Level; |
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
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity =0.8.12; | |
type TransientStorageProxy is address; | |
library TransientStorage { | |
function init() internal returns (TransientStorageProxy proxy) { | |
// initCode == bytecode from `yarn compile-tsp` | |
bytes | |
memory initCode = hex'602980600d600039806000f3fe366020811460135760408114602057600080fd5b600035b360005260206000f35b602035600035b450'; |
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
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.13; | |
/// @notice The canonical ERC20 interface | |
interface IERC20 { | |
function balanceOf(address account) external view returns (uint256); | |
function transfer(address recipient, uint256 amount) external returns (bool); | |
function transferFrom( |
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 { render, unmountComponentAtNode } from 'react-dom'; | |
export function renderText(component) { | |
const _el = document.createElement('div'); | |
document.body.appendChild(_el); | |
render(component, _el); | |
const text = _el.innerText; | |
unmountComponentAtNode(_el); | |
document.body.removeChild(_el); | |
return text; |
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, { Component, PropTypes } from 'react'; | |
/** | |
* Only ever render one of these per page | |
* | |
* TODO: improve with react-side-effect to better handle multiple instances of this being rendered at once so we can | |
* nest the component in forms | |
*/ | |
export default class PreventLeaveRoute extends Component { | |
static contextTypes = { |
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 { expect } from 'chai'; | |
import preventDuplicateAsync from '../src/util/prevent-duplicate-async'; | |
function testPromise<T>(): { promise: Promise<T>; resolve: (T) => void; reject: (Error) => void; } { | |
let rslv, rjct; | |
const promise = new Promise<T>((resolve, reject) => { | |
rslv = resolve; | |
rjct = reject; |
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
interface IDataType { | |
type: 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'object'; | |
readOnly?: true; | |
writeOnly?: true; | |
} | |
interface IStringType extends IDataType { | |
type: 'string'; | |
format?: 'date' | 'date-time' | 'password' | 'byte' | 'binary' | 'uuid' | 'email' | 'uri' | 'hostname' | 'ipv4' | 'ipv6'; |
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
commands: | |
000_dd: | |
test: test ! -e /swapfile | |
command: dd if=/dev/zero of=/swapfile bs=1M count=2048 && chmod 600 /swapfile | |
001_mkswap: | |
command: mkswap /swapfile | |
ignoreErrors: true | |
002_swapon: | |
command: swapon /swapfile | |
ignoreErrors: true |
NewerOlder