ai analyst backend bitcoin blockchain community manager crypto cryptography cto customer support dao data science defi design developer relations devops discord economy designer entry level erc erc 20 evm front end full stack gaming ganache golang hardhat intern java javascript layer 2 marketing mobile moderator nft node non tech open source openzeppelin pay in crypto product manager project manager react refi research ruby rust sales smart contract solana solidity truffle web3 py web3js zero knowledge
Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Qredo | Madrid, Spain | $84k - $156k | |||
Gnosis | Portugal |
| |||
Apex Digital - Web3 Fund | United States | $90k - $150k | |||
Bright Vision Technologies | United States | $39k - $65k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Qredo | Madrid, Spain | $64k - $87k | |||
Qredo | Madrid, Spain | $67k - $102k | |||
Qredo | Lisbon, Portugal | $77k - $100k | |||
Seedify | Remote | $72k - $93k | |||
Seedify | Remote | $72k - $93k | |||
Qredo | Paris, France | $90k - $150k | |||
Qredo | Madrid, Spain | $63k - $80k | |||
Qredo | Lisbon, Portugal | $57k - $112k | |||
Qredo | Lisbon, Portugal | $31k - $81k | |||
Qredo | Amsterdam, Netherlands | $98k - $120k | |||
Qredo | Madrid, Spain | $81k - $90k |
Qredo
$84k - $156k estimated
This job is closed
DevOps Engineer
Madrid, Spain /
Information Technology – DevOps /
Full-time Remote
/ Remote
Apply for this job
Qredo is a decentralized digital asset management infrastructure and product suite designed to unlock new opportunities for institutional investors in digital assets and decentralized finance. Qredo's Layer 2 blockchain protocol enables users to seamlessly transfer and settle BTC, ETH, and ERC-20 tokens. Assets are secured by Qredo’s advanced Gen 2.0 multi-party computation (MPC), which provides tier-1 bank security and institutional-grade governance.
*** This is a remote opportunity. We welcome candidates around the globe to apply! ***
Responsibilities
- Design, automate and operate CICD & testing environments and infrastructure.
- Monitor and improve processes, systems and tools used in delivery process (from git repository to deployment).
- Develop and maintain automation CI/CD solutions for the company's products and services.
- Proactively collaborate with other teams and collect feedback to improve existing solutions.
- Evaluate new technology options and vendor products to improve the company's automation capabilities.
Requirements
- Strong experience with AWS.
- Strong knowledge of containerization technologies like Docker and Kubernetes.
- Proficiency in scripting languages like Bash, Python, or PowerShell.
- Strong knowledge of infrastructure-as-code (IaC) principles using tools like Terraform or CloudFormation.
- Familiarity with configuration management tools like Ansible.
- Strong understanding of version control systems such as Git.
- Experience with monitoring and logging tools like Prometheus, ELK stack, Grafana or Splunk.
- Proficiency in Continuous Integration and Continuous Deployment (CI/CD) tools like GitLab CI, Github Actions.
- Knowledge of networking concepts and protocols.
- Knowledge of databases, caching systems and message bus technologies.
- Understanding of security best practices and experience in implementing security measures in DevOps workflows.
- Experience with Infrastructure-as-Code (IaC) tools other than Terraform or CloudFormation, such as Pulumi or AWS CDK.
- Familiarity with serverless computing and technologies like AWS Lambda or Azure Functions.
- Proficiency in additional programming languages like Java, Ruby, or Go, depending on the technology stack used.
- Understanding of microservices architecture and experience in deploying and managing microservices.
- Proficiency in building and managing highly available and scalable architectures.
- Experience with GitOps tooling such as Flux, ArgoCD.
Nice to have
Qredo offers
- Flexibility to work from anywhere and possibility for international transfer.
- Assistance with home office setup as well as offsite team building allowance.
- Culturally diverse work environment (we speak 33 languages!).
- Great career development opportunities in a growing company.
- Competitive compensation and benefits package within the industry.
Apply for this job
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.