| Job Position and Company | Posted | Location | Salary | Tags |
|---|---|---|---|---|
| $105k - $180k | ||||
| $90k - $95k | ||||
| $63k - $90k | ||||
| $81k - $84k | ||||
ISO 9001 Certified | 400+ students | Learn more | by Metana | ||
| $81k - $84k | ||||
| $81k - $84k | ||||
| $82k - $118k | ||||
| $81k - $84k | ||||
| $81k - $84k | ||||
| $81k - $84k | ||||
| $81k - $84k | ||||
| $81k - $84k | ||||
| $81k - $84k | ||||
| $90k - $120k | ||||
| $114k - $127k |
Software Engineer, Digital Assets / Tokenization
Preferred Location: Southlake. Austin is a backup (on-site 4 days per week)
Role Summary
Client is seeking a Web3 Engineer to help design, build, and scale the next generation of blockchain and tokenization infrastructure. This role will focus on engineering reusable Web3 platform capabilities across smart contracts, token lifecycle services, blockchain connectivity, wallets, custody integrations, transaction orchestration, event indexing, and production-grade distributed systems.
This engineer will work across Ethereum/EVM, Hyperledger Besu, Canton/Daml, permissioned blockchains, public blockchains, private/consortium networks, and emerging tokenization protocols. The role requires a hands-on builder who can move from architecture and prototyping into secure, scalable, production ready Web3 infrastructure.
Key Responsibilities
Web3 Platform Engineering
• Design and build reusable Web3 platform services for tokenization, transaction processing, blockchain connectivity, wallet integration, event ingestion, indexing, and token lifecycle management.
• Build backend services that interact with blockchain nodes, smart contracts, signing systems, custody platforms, and off-chain systems.
• Develop common blockchain abstraction layers that can support multiple networks, including Besu, Canton, Ethereum/EVM, Layer 2 networks, permissioned chains, and future enterprise blockchain platforms.
• Build integrations with Hyperledger Besu, Ethereum-compatible networks, and permissioned EVM chains.
• Implement blockchain connectivity using JSON-RPC, WebSocket subscriptions, ABI encoding/decoding, event logs, transaction submission, transaction status tracking, and smart-contract queries.
• Support engineering patterns for Canton/Daml-based blockchain networks, including validator or participant connectivity, application package lifecycle, transaction authorization, and workflow integration.
• Work with Daml application concepts, including DAR package deployment, versioning, installation validation, and application enablement.
• Build or integrate services that support Canton->
• Partner with platform, infrastructure, and operations teams to evaluate Canton validator strategies, including self-hosted and provider-operated models where applicable.
Smart Contract & Tokenization Integration Engineering
• Design, develop, integrate, and review smart contracts for tokenized asset and programmable workflow use cases.
• Work with Solidity, EVM token standards, upgradeable contracts, proxy patterns, access-control models, permissioned-token designs, and contract event models.
• Build smart-contract interaction layers that manage ABI encoding, calldata construction, transaction simulation, event decoding, and contract state reads.
• Establish engineering standards for smart-contract development, testing, deployment, versioning, rollback planning, and production change governance.
• Support smart-contract security practices, including threat modeling, static analysis, fuzzing, invariant testing, and secure deployment pipelines.
Wallet, Signing & Transaction Orchestration Integration
• Integrate with institutional wallet, custody, signing, and authorization platforms that support tokenized asset workflows.
• Design transaction orchestration workflows covering request validation, policy checks, approval routing, signing, submission, confirmation tracking, retries, exception handling, and audit logging.
• Support address or account registration, transaction limits, allowlists, signing policies, approval workflows, an operational controls.
Required Qualifications
• 5+ years of software engineering experience building distributed systems, backend platforms, financial systems, blockchain infrastructure, custody platforms, trading systems, or high-scale transaction systems.
• Strong hands-on Web3 engineering experience.
• Deep understanding of Ethereum/EVM, including smart contracts, ABI encoding, transaction lifecycle, gas/fee handling, nonce management, logs/events, confirmations, and finality.
• Experience building backend services that interact with blockchain nodes, wallets, smart contracts, signing systems, or custody platforms.
• Experience with JSON-RPC, WebSocket subscriptions, blockchain event indexing, smart-contract integration, transaction monitoring, and blockchain data models.
• Strong understanding of wallet infrastructure, transaction signing, address management, custody concepts, and key-management patterns.
• Strong backend engineering skills in one or more languages such as Java, Go, Kotlin, TypeScript, Rust, Python, or C++.
• Experience with APIs, microservices, event-driven architecture, messaging systems, cloud-native engineering, and production operations.
• Ability to independently own complex engineering problems from design through production delivery.
• Experience with Canton, Daml, validator/participant concepts, DAR deployment, or institutional blockchain workflows.
________________________________________
Preferred Qualifications
• Experience with Hyperledger Besu, permissioned EVM networks, or private blockchain deployments.
• Experience with Canton, Daml, validator/participant concepts, DAR deployment, or institutional blockchain workflows.
• Experience with smart-contract audits, fuzz testing, invariant testing, static analysis, formal verification, or secure smart-contract deployment.
• Experience building blockchain indexers, transaction orchestration systems, custody integrations, token lifecycle platforms, or wallet-policy engines.
• Experience with token standards such as ERC-20, ERC-721, ERC-1155, ERC-1400, ERC-3643, or other permissioned-token frameworks.
• Experience building systems in regulated, security-sensitive, or high-value transaction environments.
• Relevant blockchain certifications or training are a plus, including Besu training/certification and Digital Asset Daml/Canton-related certification paths
“Mindlance is an Equal Opportunity Employer and does not discriminate in employment on the basis of – Minority/Gender/Disability/Religion/LGBTQI/Age/Veterans.”
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.