// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract UlascanSenturk {
struct ContactInfo {
string linkedin;
string email;
string discord;
}
string public title;
ContactInfo public contact;
constructor() {
title = "software & blockchain developer/ ethereum evangelist / human being";
contact = ContactInfo({
linkedin: "ulascansenturk",
email: "[email protected]",
discord: "kernelpanic#4413",
twitter: "0xUlascan"
});
}
function getTitle() public view returns (string memory) {
return title;
}
function getContactInfo() public view returns (string memory, string memory, string memory) {
return (contact.linkedin, contact.email, contact.discord);
}
}
Pinned Loading
-
gas-price-dynamic-fees
gas-price-dynamic-fees PublicUniswap V4 - Dynamic swap fees based on gas price
Solidity
-
banking-service-temporal
banking-service-temporal PublicThis repository contains a Go-based financial service that handles money transfers between accounts. The codebase uses Temporal for workflow orchestration, GORM for database operations, and follows…
Go
-
ethereum-blockchain-parser
ethereum-blockchain-parser PublicThis repository contains a Go-based Ethereum blockchain parser designed to monitor and extract transactions for subscribed addresses. The parser enables users to track incoming and outgoing transac…
Go 1
-
swapslots
swapslots PublicThis repository implements a slot machine game as a Uniswap v4 hook. The hook transforms token swaps into slot machine plays, where users can win rewards based on randomized outcomes.
Solidity
-
dotfiles-ankh
dotfiles-ankh PublicThis repository contains my personal configuration files for my macOS system, including my .alacritty.yml, .zshrc, skhdrc, and yabairc files. These files are designed to work together to provide a …
Shell 2
-
weather-service
weather-service PublicA high-performance weather aggregation service built in Go that efficiently handles concurrent requests for weather data. This service fetches temperature information from multiple weather API prov…
Go
If the problem persists, check the GitHub status page or contact support.