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
[ | |
{ "name": "Financials", "id": "40", "parentId": null }, | |
{ "name": "Information Technology", "id": "45", "parentId": null }, | |
{ "name": "Banks", "id": "4010", "parentId": "40" }, | |
{ "name": "Diversified Financials", "id": "4020", "parentId": "40" }, | |
{ "name": "Insurance", "id": "4030", "parentId": "40" }, | |
{ "name": "Software & Services", "id": "4510", "parentId": "45" }, | |
{ "name": "Technology Hardware & Equipment", "id": "4520", "parentId": "45" }, | |
{ | |
"name": "Semiconductors & Semiconductor Equipment", |
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
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"newContract","type":"address"}],"name":"Deployed","type":"event"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseTokenURI_","type":"string"},{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint256","name":"royaltyBps_","type":"uint256"},{"internalType":"uint256","name":"initialSupply_","type":"uint256"},{"internalType":"address","name":"initialSupplyReceiver_","type":"address"},{"internalType":"address","name":"contractOwner_","type":"address"},{"internalType":"address","name":"gaslessListingManager_","type":"address"}],"name":"createERC721Burnable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpay |
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 busboy = Busboy({ headers: req.headers }); | |
busboy.on<"file">("file", function (name, stream, info) { | |
console.log("File [" + name + "]: filename: " + JSON.stringify(info)); | |
stream.on("data", function (data) { | |
invariant(Buffer.isBuffer(data), "data is not a buffer"); | |
console.log(data); | |
console.log( |
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
$ curl --verbose http://localhost:3000/cookie-test | |
* Trying [::1]:3000... | |
* Connected to localhost (::1) port 3000 | |
> GET /cookie-test HTTP/1.1 | |
> Host: localhost:3000 | |
> User-Agent: curl/8.4.0 | |
> Accept: */* | |
> | |
< HTTP/1.1 200 OK | |
< vary: RSC, Next-Router-State-Tree, Next-Router-Prefetch, Next-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
Ethereum | |
Polygon | |
Optimism | |
Arbitrum | |
Avalanche | |
Near Aurora | |
BSC | |
Base | |
Gnosis | |
Linea |
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
// WebView | |
(function () { | |
var eventHandlers = {}; | |
var locationHash = ''; | |
try { | |
locationHash = location.hash.toString(); | |
} catch (e) {} | |
var initParams = urlParseHashParams(locationHash); |
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
import { | |
bytesToString, | |
decodeFunctionData, | |
encodeAbiParameters, | |
encodeFunctionResult, | |
encodePacked, | |
keccak256, | |
parseAbi, | |
parseAbiItem, | |
serializeSignature, |
OlderNewer