Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Ephemera | Remote | $235k - $275k | |||
Scion Staffing | United States | $124k - $138k | |||
SMASH | San Jose, CA, United States | $96k - $112k | |||
SMASH | San Jose, CA, United States | $72k - $100k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Molecule | New York, NY, United States | $90k - $115k | |||
Molecule | New York, NY, United States | $72k - $90k | |||
molecule.xyz | Berlin, Germany | $85k - $115k | |||
molecule.xyz | New York, NY, United States | $77k - $105k | |||
CillarCoin | New York, NY, United States | $90k - $162k | |||
Biostate AI | Dallas, TX, United States | $133k - $135k | |||
Molecule | United States | $84k - $120k | |||
molecule.xyz | United States | $76k - $112k | |||
molecule.xyz | United States | $90k - $150k | |||
SMASH | United States | $98k - $105k | |||
D3 | San Francisco, CA, United States | $122k - $150k |
Join Ephemera, Build the Future of Onchain Messaging
We are seeking an experienced Staff-level Smart Contracts Engineer to lead the design, development, and maintenance of mission-critical blockchain systems with a focus on tokenomics. You will own the end-to-end lifecycle of smart contracts - from architecture and implementation to audits, deployment, and upgrades.
What Youâll Be Working On
Writing and deploying smart contracts that govern the economics of the XMTP protocol
Working with the team to design novel incentive models to reward offchain node operators and collect messaging fees
Design & Implement Tokenomics Contracts: Lead the development of complex token contracts (ERC-20, staking, governance, vesting, distribution, liquidity management) tailored to evolving protocol needs
Upgradability & Governance: Architect upgradeable contracts (e.g., via OpenZeppelin proxy patterns) ensuring safe, controlled, and transparent change management
Security & Audits: Champion security best practices, lead internal reviews, coordinate with third-party auditors, and implement continuous monitoring of deployed contracts
Production-Grade Operations: Manage large-scale funds in production environments, ensuring availability, integrity, and protection of treasury and user assets
Cross-Functional Leadership: Partner with economics, product, and legal teams to translate tokenomics know-how into practical, deployable smart contract systems
Mentorship & Standards: Establish engineering best practices for smart contract development, mentor other engineers, and raise the bar for security, efficiency, and maintainability
Your Experience
Minimum of 7+ years of professional experience as a software engineer, staff level
-
Extensive experience designing, building, and maintaining cryptoeconomic systems
Architected and designed complex protocols onchain
Experience working with auditors to find vulnerabilities
Writing well-tested Solidity code
Qualifications
Technical Expertise
5+ years of software engineering experience, with at least 3 years focused on Solidity / EVM-based smart contracts
Proven track record of deploying and maintaining production-grade contracts managing significant funds
Deep familiarity with tokenomics mechanisms: staking, bonding curves, vesting, emissions schedules, treasury management
Strong understanding of EVM internals, gas optimization, and advanced contract design patterns
Hands-on experience with upgradable contracts, proxy patterns, and governance-controlled upgrade systems
Security Focus
Prior experience working with formal verification, fuzzing, or static analysis tools
Contributions to audits, incident response, or security-critical systems
Leadership
Ability to balance long-term protocol sustainability with near-term delivery needs
Nice-to-Haves
Experienced simulating economic systems using deterministic and/or stochastic modeling techniques
Experience working in open source and communicating with the public
Experience working as an auditor
About You
You are passionate about decentralized technology and believe in an onchain future
You love to win and are fueled by solving hard problems
You are self-directed, see opportunities and are inspired by challenges and helping solve them
You have a small team mindset and are focused on where you can have the greatest impact
You love to learn, are not afraid of changing your opinion or being wrong
Benefits
Competitive compensation package, Base + Equity
Salary range between $235kâ$275k base (depending on experience + location)
Remote-first environment with semi-yearly gatherings to connect IRL
Fully paid Medical, Dental, Vision insurance in the US
Parental Leave
IT Equipment and WFH setup
Monthly Wellness and Life>
Personal assistant
Unlimited time off
What is ERC20 example?
ERC20 is a standard for fungible tokens on the Ethereum blockchain
Here is an example of an ERC20 token
Let's say we create a new ERC20 token called ABC Token with a total supply of 1,000,000 tokens
Each token will be divisible up to 18 decimal places
To implement the ERC20 standard, we will need to define several functions, including:
- balanceOf(address): Returns the token balance of a specific address.
- transfer(address to, uint256 value): Transfers tokens from the caller's address to the specified address.
- approve(address spender, uint256 value): Approves a specific address to spend a certain amount of tokens on behalf of the caller.
- allowance(address owner, address spender): Returns the amount of tokens approved by the owner that the spender can transfer.
- User1 owns 500,000 ABC Tokens.
- User2 wants to buy 100 ABC Tokens from User1.
- User1 approves User2 to spend up to 100 ABC Tokens on her behalf.
- User2 calls the transferFrom() function with User1's address, his own address, and the value of 100 tokens.
- The transferFrom() function deducts 100 tokens from User1's balance and adds them to User2's balance.