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
| [ | |
| { | |
| "appName": "token-approval-tracker", | |
| "doc": "https://docs.li.fi/smart-contracts/deployments#mainnet", | |
| "chainsData": { | |
| "5": { | |
| "overallInfo": { | |
| "verifiedNumber": 1, | |
| "totalContractsNumber": 1, | |
| "solidityScanContractsNumber": 1, |
This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "appName": "furucombo", | |
| "doc": "https://docs.furucombo.app/resources/deployed-contracts", | |
| "chainsData": { | |
| "10": { | |
| "overallInfo": { | |
| "verifiedNumber": 7, | |
| "totalContractsNumber": 7, | |
| "solidityScanContractsNumber": 7, |
This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "appName": "furucombo", | |
| "doc": "https://docs.furucombo.app/resources/deployed-contracts", | |
| "chainsData": { | |
| "optimism": { | |
| "overallInfo": { | |
| "verifiedNumber": 7, | |
| "totalContractsNumber": 7, | |
| "solidityScanContractsNumber": 7, |
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
| [ | |
| { | |
| "author": "Hop", | |
| "id": "hop-exchange", | |
| "title": "Hop", | |
| "logo": "https://blockscout-content.s3.amazonaws.com/hop.png", | |
| "categories": ["Bridge"], | |
| "shortDescription": "Hop is a scalable rollup-to-rollup general token bridge. It allows users to send tokens from one rollup or sidechain to another almost immediately without having to wait for the networks challenge period.", | |
| "site": "https://help.hop.exchange/hc/en-us/articles/4405172445197-What-is-Hop-Protocol-", | |
| "description": "Hop is a scalable rollup-to-rollup general token bridge. It allows users to send tokens from one rollup or sidechain to another almost immediately without having to wait for the networks challenge period.", |
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
| #!/bin/sh | |
| ssh root@$IP_ADDRESS << HERE | |
| wget "https://dist.ipfs.io/go-ipfs/v0.4.20/go-ipfs_v0.4.20_linux-amd64.tar.gz" | |
| tar xvfz go-ipfs_v0.4.20_linux-amd64.tar.gz | |
| cd go-ipfs/ | |
| ./install.sh | |
| ipfs init -p server | |
| ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["*"]' | |
| ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods '["PUT", "GET", "POST"]' |
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 ListUtils BoolUtils | |
| library First | |
| let one_msg = | |
| fun (msg : Message) => | |
| let nil_msg = Nil {Message} in | |
| Cons {Message} msg nil_msg |
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.25; | |
| contract Getter { | |
| function getDragonGenome(uint256) external view returns (uint8[30]); | |
| function getDragonTypes(uint256) external view returns (uint8[11]); | |
| function getDragonTactics(uint256) external view returns (uint8, uint8); | |
| function getDragonBattles(uint256) external view returns (uint16, uint16); | |
| function getDragonSkills(uint256) external view returns (uint32, uint32, uint32, uint32, uint32); | |
| function getDragonParents(uint256) external view returns (uint256[2]); | |
| function getDragonSpecialAttack(uint256) external view returns (uint8, uint32, uint8, uint8); |
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
| library SafeMath8 { | |
| function mul(uint8 a, uint8 b) internal pure returns (uint8) { | |
| if (a == 0) { | |
| return 0; | |
| } | |
| uint8 c = a * b; | |
| assert(c / a == b); | |
| return c; | |
| } |
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
| const dotenv = require('dotenv'); | |
| const { toWei } = require('web3-utils'); | |
| const HDWalletProvider = require('truffle-hdwallet-provider'); | |
| const NonceTrackerSubprovider = require('web3-provider-engine/subproviders/nonce-tracker'); | |
| const Web3 = require('web3'); | |
| dotenv.config(); | |
| dotenv.config({ path: '.env.local' }); |
NewerOlder