Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Lukso | New York, NY, United States | $86k - $90k | |||
Lukso | International | $36k - $90k | |||
Lukso | International | $86k - $90k | |||
Lukso | New York, NY, United States | $36k - $90k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Lukso | New York, NY, United States | $86k - $90k | |||
Kastech Software Solutions Group | Charlotte, NC, United States | $72k - $78k | |||
Minutes to Seconds | New York, NY, United States | $39k - $65k | |||
CodeQuadrat | Remote | $0k | |||
Animoca Brands Limited | Hong Kong, Hong Kong | $36k - $54k | |||
Momento USA LLC | New York, NY, United States | $39k - $65k | |||
Zodiac Solutions, Inc | New York, NY, United States | $72k - $78k | |||
Synechron | New York, NY, United States | $120k - $130k | |||
Absinthe Labs | Remote | $100k - $150k | |||
Block | Remote | $91k - $100k | |||
Internet Game | Remote | $100k - $150k |
The LUKSO Tech Team is seeking a dynamic and visionary Head of Marketing & Technical Communications to play a pivotal role in shaping and executing our marketing strategies for Universal Profiles and LUKSOâs revolutionary smart contract standards (LSPs). This role will focus on nurturing a vibrant ecosystem for all participants of the New Creative Economies, while also attracting top-tier developers.We are looking for a forward-thinking individual who can stay on top of industry trends, leveraging them to build an engaged community as well as spotlight LUKSO's technology within the Web3 space, by overseeing comprehensive marketing and communications efforts aligned with our project's vision and objectives. Weâre focused on bringing blockchain technology to its next frontier with new tools and standards that are revolutionising the way the world interacts with blockchain. Creators and users will be able to have seamless Web3 experiences with LUKSO's future-proof solutions and we welcome talent around the world to join us in building the most innovative tools for the New Creative Economies.LUKSO was Co-Founded by Chief Blockchain Architect, Fabian Vogelsteller, author of ERC-20, ERC-725, Web3.js, Mist Browser and former Lead Dapp developer of Ethereum and Marjorie Hernandez, an early blockchain strategist working with Ethereum, IOTA Foundation and world-renowned brands, who also Co-Founded THE DEMATERIALISED. LUKSO is now being developed by 40+ people around the globe and we are looking for motivated and passionate people who are up to the task of joining us in building out the foundation for the New Creative Economies and the apps that power it.
In one year youâll know you were successful if youâveâŚ
Establishing a clear growth marketing strategy around Universal Profiles (UPs), LUKSO Standard Proposals (LSPs) in the LUKSOs ecosystem, including identifying and defining target user and developer personas. Set up and work within a budget plan for marketing and communication initiatives. Implement a communications strategy, leveraging existing networks with media outlets and your industry knowledge. Establish a KPI tracking system in collaboration with the Head of Partnerships to measure ecosystem and community growth and strength. Collaborate across teams to ensure marketing and communications objectives are in sync with technical development and product releases.
A background like this helps:
Proven leadership in senior marketing roles within blockchain or Web3 projects. Successful track record in community building and engagement within the blockchain, Web3 space or/and the Ethereum ecosystem. Strong strategic mindset aligning marketing efforts with project vision and objectives. Extensive experience in managing outward-facing communications, media relations, and collaborations. Autonomous with leadership skills, in-depth knowledge of blockchain, Web3 technologies, and excellent communication skills.
What We Offer:Â
Innovation-driven working environment, where youâll be part of a project that aims to set new standards in the industry and change the world we live in: doc.lukso.tech Team lunches and social activities Frequent conference attendance & company-wide off-sites Regular in-office health & sporting activities Collaborative squads and a flat structure, with a renowned team of industry experts Work fully remote CEST +/-3h or from our picturesque LUKSO office located in Berlin spread over three floors (community, tech & creative) overlooking the Spree River.
LUKSO is the blockchain for the New Creative Economies. As a next-generation layer-1 EVM blockchain, LUKSO has introduced new tools and standards that will bring blockchain technology to its next frontier. The building blocks for the New Creative Economies will revolutionize the way users and creators interact with the blockchain. From Fashion, Art, Music, Entertainment, Gaming, Social Media and more, we welcome you to explore our open and interoperable blueprint for the physical and digital worlds.LUKSO has introduced new standards called LUKSO Standard Proposals (LSPs), which are the building blocks for the New Creative Economies. These building blocks can be used to create user-friendly dApps and lower the barriers of entry in Web3 for all creators and users. Universal Profiles bring social identity to blockchain and improve the overall user experience in Web3. With upgradable security, these platform-agnostic smart-contract-based accounts empower users and creators and allow for true ownership, interoperability, transaction relay services and more. LUKSOâs new standards allow for flexible NFTs that are extensible and directly compatible with Universal Profiles. NFTs 2.0 are updatable, safer, can store unlimited metadata, support batch transfers and even better IDs.LUKSO is bringing blockchain beyond DeFi with Cultural Currencies. The future of blockchain is social, and LUKSOâs essential, future-proof solutions are reshaping the way the world interacts with the blockchain.You belong here. At LUKSO, we welcome applicants from around the world of all abilities, race, ethnicity, gender/gender expression and age to explore our solutions and join us in building out the foundation for the New Creative Economies. We look forward to meeting you!
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.