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
| using Sitecore.Diagnostics; | |
| using Sitecore.ExperienceForms.Models; | |
| using Sitecore.ExperienceForms.Mvc.Models.SubmitActions; | |
| using Sitecore.ExperienceForms.Mvc.Processing.SubmitActions; | |
| using Sitecore.ExperienceForms.Processing; | |
| using Sitecore.Reflection; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Mail; |
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 { useState, useEffect, useCallback } from 'react'; | |
| const initializeFb = () => | |
| // eslint-disable-next-line no-unused-vars | |
| new Promise((resolve, _reject) => { | |
| if (typeof FB !== 'undefined') { | |
| resolve(); | |
| } else { | |
| // eslint-disable-next-line func-names | |
| window.fbAsyncInit = function() { |
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
| pragma solidity ^0.4.23; | |
| contract Wallet{ | |
| address public contractFactoryAddress; | |
| address public walletOwnerAddress; | |
| constructor(address _walletOwnerAddress) public{ | |
| contractFactoryAddress = msg.sender; | |
| walletOwnerAddress = _walletOwnerAddress; |
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
| pragma solidity ^0.4.0; | |
| contract KengCoins | |
| { | |
| //Address of the Coin Creator | |
| address public ico_owner; | |
| struct WalletHolder | |
| { | |
| bytes16 fname; |