- Multivitamin
- Vitamin D
- Whey Protein
- Creatine
- Fish Oil
This file contains 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: MIT | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | |
import "@identity.com/gateway-protocol-eth/contracts/Gated.sol"; | |
import "./MasterNodeFundCertificate.sol"; | |
contract MasterNodeFund is Gated, MasterNodeFundCertificate { |
This file contains 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: MIT | |
pragma solidity ^0.8.9; | |
import {IGatewayTokenVerifier} from "./interfaces/IGatewayTokenVerifier.sol"; | |
contract Gated { | |
address private _gatewayTokenContract; | |
uint256 private _gatekeeperNetwork; | |
/// The gateway token is not valid. |
This file contains 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
// set the site we are modifying | |
const site = 'www.example.com'; | |
// do this on a fetch | |
addEventListener('fetch', event => { | |
const request = event.request | |
const url = new URL(request.url) | |
event.respondWith(handleRequest(request)) | |
}); |
This file contains 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
// was | |
if (isEmbedsLoading && !isEmbedsLoading) { | |
this.handleResetLocalChanges(); | |
} | |
// probably the intended | |
if (isEmbedsLoading && !prevProps.isEmbedsLoading) { | |
this.handleResetLocalChanges(); | |
} |
This file contains 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
function getPageName(url) { | |
var index = url.lastIndexOf("/") + 1; | |
var filenameWithExtension = url.substr(index); | |
var filename = filenameWithExtension.split(".")[0]; | |
return filename; | |
} | |
var url = window.location.href; | |
var fileName = getPageName(url); |
This file contains 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
// this is @Lukeed's 'sublet' with some small changes to allow for automatic dependency tracking as well as | |
// explicit registering of change effects | |
// prob should use a weakMap for these | |
const reactionsMap = {}; | |
const contextMap = {}; | |
let ctx; | |
export const setContext = id => { | |
ctx = id; |
- multiple timer events on promo cards
- screen from wallet to profile doing that weird dance
- wallet graph being visible on the profile screen
- graph date selectors being visible when transactions are extended ( that is actually according to the mockup, but I had planned to fix that)
- smooth out transactions extending thing
This file contains 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
const Info = ({ title, img, alt, message, details, className, buttonText = 'Done', handleClick = () => {} }) => ( | |
<div className={className !== undefined ? `${styles['acc__info']} ${styles[className]}` : styles['acc__info']}> | |
<h2>{title}</h2> | |
<div className={styles.card}> | |
<div className={styles['acc__info__container']}> | |
<img src={img} alt={alt} /> | |
</div> | |
<h4>{message}</h4> | |
<p>{details}</p> | |
</div> |
This file has been truncated, but you can view the full file.
This file contains 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
[ | |
{ | |
"id": 5402626308964352, | |
"name": "A.J. Applegate", | |
"nickNames": [], | |
"imageKeyIds": [ | |
4659648506363904, | |
5653361667866624, | |
6170424375246848, | |
6560949142028288, |
NewerOlder