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 |
| |||
Qredo | Madrid, Spain | $90k - $100k | |||
Joint NFT | India | $86k - $115k | |||
Qredo | London, United Kingdom | $54k - $60k | |||
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 | Miami, FL, United States | $63k - $90k | |||
Intuition Machines, Inc. | Buenos Aires, Argentina | $43k - $56k | |||
Atato | Singapore, Singapore | $60k - $67k | |||
IOVLabs | Remote | $112k - $120k | |||
Heera Digital | Austin, TX, United States | $58k - $87k | |||
Altered State Machine | Auckland, New Zealand | $63k - $70k | |||
Animoca Brands Limited | Hong Kong, Hong Kong | $72k - $90k | |||
Venture Studio | New York, NY, United States | $150k - $200k | |||
Improbable | Remote | $45k - $80k | |||
Animoca Brands Limited | Hong Kong, Hong Kong | $105k - $111k | |||
MoonPay | United Kingdom | $45k - $50k |
Qredo
This job is closed
Infrastructure Architect
Madrid, Spain /
Information Technology – Infrastructure /
Full-time 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.
At Qredo we are developing state of the art cryptographic services to solve the problem of private key management in Tier 1 blockchains. Specifically, we are using Multi-Party Computation Threshold signature scheme (MPC-TSS) for ECDSA and EdDSA to run a distributed, highly available network of signing nodes.
*** This is a remote opportunity. We welcome candidates around the globe to apply! ***
Responsibilities
- Plan, design and implement solutions; implement best practices with various cloud providers like AWS, Azure or GCP
- Participate to develop and manage ongoing enterprise architecture governance structure on basis of business plus IT and security strategies
- Promote organizational architecture process and results
- Lead and direct governance principles to guide decision making pertinent to infrastructure architecture
- Ensure optimal governance structure and comply with activities related to infrastructure architecture adherence
- Enforce infrastructure architecture execution as well as ongoing refinement tasks
- Consult project teams to fit infrastructure architecture assignments and identify need to modify infrastructure architecture to attain project requirements
- Identify enterprise requirements for structures, resources and cultural changes required to support infrastructure architecture
- Ensure documentation of entire architecture design and evaluation work
- Advises teams of IT technology standard requirements, methodology and processes
- Participates in proof of concepts to assist in defining technology direction and enabling business strategy.
- Conducts end-to-end technical plan design
- Design and develop infrastructure blueprints for the implementation of new solutions
- Communicates and validates program architecture with DevOps team and other departments
- Responsible for impact analysis and design modifications to existing systems to support new solutions
- Maintain a common documentation library of standardized procedures and configurations
- Create and facilitate Disaster Recovery plans
- Main focus will be SLAs, monitoring and availability of new projects/environments
- Creation of design patterns, blueprints and architecture/flow diagrams
Requirements
- Excellent English communication skill
- 6+ years’ experience in a production IT environment managing enterprise IT infrastructure, hardware, hosting service and network areas
- Ability to write and review architectural design documents
- Knowledge and understanding of industry trends and new technologies and translate them to actionable requirements
- In depth experience with containerization systems like Docker and Kubernetes
- Knowledge of Architectural frameworks like SABSA
- Knowledge of Software design principles
- Experience with automation technologies like Jenkins,Bitbucket,Rundeck,Ansible, Puppet,Chef,Terraform,AWS SDK,Azure DevOps
- Experience with segmentation of microservices
- Experience to API architecture
- Security mindset
- Good teamwork and communication skills
- Exposure to crypto technologies
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.