I hereby claim:
- I am skozin on github.
- I am skozin (https://keybase.io/skozin) on keybase.
- I have a public key ASCzPBYXCHROn8QsqDgjEkkay8bu_foNjDJ5Mz5ffmWGDQo
To claim this, I am signing this object:
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.9; | |
interface IMultiLocate { | |
function a() external view returns (address); | |
function b() external view returns (address); | |
function c() external view returns (address); | |
function d() external view returns (address); | |
function e() external view returns (address); | |
function f() external view returns (address); |
pragma solidity 0.4.24; | |
contract ValueTypeArrayDemo { | |
bytes32 internal constant MEMBERS_ARRAY_POSITION = keccak256("org.test.storagedemo.members"); | |
function getMember(uint256 _index) public view returns (address) { | |
return _getMember(_index, MEMBERS_ARRAY_POSITION); | |
} | |
pragma solidity 0.4.24; | |
contract SimpleMappingDemo { | |
bytes32 internal constant SHARES_MAPPING_POSITION = keccak256("org.test.storagedemo.shares"); | |
function getShares(address _address) public view returns (uint256) { | |
return _getShares(_address, SHARES_MAPPING_POSITION); | |
} | |
pragma solidity ^0.6.0; | |
contract StructMappingDemo { | |
bytes32 internal constant NOP_MAPPING_POSITION = keccak256("org.test.storagedemo.nopMapping"); | |
struct NodeOperator { | |
bool active; | |
address rewardAddress; | |
string name; | |
} |
pragma solidity 0.4.24; | |
import "./UnstructuredStorage.sol"; | |
import "./Proxy.sol"; | |
interface ICounter { | |
function incrementCounter(uint256 _increment) external returns (uint256 prevValue, uint256 newValue); | |
} | |
contract CounterStorage { |
I hereby claim:
To claim this, I am signing this object:
package | |
{ | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.events.TimerEvent; | |
import flash.text.TextField; | |
import flash.text.TextFieldAutoSize; | |
import flash.text.TextFormat; | |
import flash.utils.Timer; | |
import flash.utils.getTimer; |
/** | |
* SVG <use> and cascading test | |
*/ |
/** | |
* SVG cascading test | |
*/ | |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.cont { | |
width: 80%; | |
height: 200px; | |
margin: 20px auto; | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); |