npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dea-sg/layerzero

v1.4.3

Published

layer zero modules

Downloads

67

Readme

Layer Zero base contract

disclaimer

We do not guarantee the validity or accuracy of the sources. Use at your own risk.

how to use

install command

yarn add @dea-sg/layerzero
or
npm install @dea-sg/layerzero

create contract

If you want to create a LayerZero compliant ERC20

import "@dea-sg/layerzero/contracts/ERC20/OmniERC20Upgradeable.sol";

contract Token is OmniERC20Upgradeable {
	function initialize(
		string memory _name,
		string memory _symbol,
		address _endpoint
	) external initializer {
		__OmniERC20_init(_name, _symbol, _endpoint);
	}
}

If you want to create a LayerZero compliant ERC721

import "@dea-sg/layerzero/contracts/ERC721/OmniERC721Upgradeable.sol";

contract Nft is OmniERC721Upgradeable {
	function initialize(
		string memory _name,
		string memory _symbol,
		address _endpoint
	) external initializer {
		__OmniERC721_init(_name, _symbol, _endpoint);
	}
}

After creating the contract, deploy it to the required chain. Note that this contract supports the proxy pattern.

initialize

After deployment, execute the initialize function for each contract.

Set name and symbol to anything you like, and endpoint to here.

For example, for Rinkeby, set 0x79a63d6d8BBD5c6dfc774dA79bCcD948EAcb53FA.

setTrustedRemote

Execute the setTrustedRemote function. This function is used to set the trusted remote.

For example, if you deploy to Ethereum rinkeby or Polygon mumbai, the setTrustedRemote of the contract deployed to rinkeby sets the mumbai chain ID and the address of the contract deployed to mumbai.

The setTrustedRemote of the contract deployed in mumbai is set to the chain ID of rinkeby and the address of the contract deployed in rinkeby.

The chain ID for rinkeby is 10001 and for mumbai is 10009.

how to move

Executing the sendFrom function sends the token to another chain.

Naturally, the balance must be in the wallet where the send function is executed. Please mint in advance.

The send function is payable, For example, when you send a token from Ethreum mainnet to polygon, you should grant 0.1ether and run it.

This is the gas cost to move the destination chain. If it is too much, it will be returned to _refundAddress.

Argument information is as follows

_from: from address

_dstChainId:chain ID

_toAddress:Address of the destination chain

_amount:Number of tokens to be sent

_refundAddress:destination chain

_zroPaymentAddress:This is for future functionality extensions. For now, set a null address.

_adapterParams:This is for future functionality. Leave it as 0x for now.