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

@atomicport/evm

v0.0.1

Published

Support Cross-Chain-Swap with HTLC on any blockchains

Downloads

46

Readme

Go to top

@atomic-port/evm

This package is for HTLC transactions between the any blockchains. HTLC allows direct transactions between different chains. Usage and examples are shown below.

Test is now open to the public.

Transactions on each chain in this library are currently available only on the testnet. If you wish to use it in a production environment, please change the network and other parameters.

Deployed Contracts

Sepolia (TestNet)

native
  • Endpoint: https://sepolia.infura.io/v3/85eb73cb20fc46058b5044657ed33efd
  • Contract address: 0x549DEC2d00C3db272F337Ac4874503Ecf5205955
ERC20
  • Endpoint: https://sepolia.infura.io/v3/85eb73cb20fc46058b5044657ed33efd
  • Contract address: 0xbD674927a77f4Ca6f01Ac470A33747E060C3Ccd0
ERC721
  • Endpoint: https://sepolia.infura.io/v3/85eb73cb20fc46058b5044657ed33efd
  • Contract address: 0x4Bf07078493464447732B2a23126697b1C85DF9F

Rinkeby (TestNet)

native
  • Endpoint: https://rpc.ankr.com/eth_rinkeby
  • Contract address: 0x97ED40C207bf3B6dE4DB27E37E1989f3756E71f4
ERC20
  • Endpoint: https://rpc.ankr.com/eth_rinkeby
  • Contract address: 0x5F30A927063AA056Ee8BA93Be1175f7485c89Cac
ERC721
  • Endpoint: https://rpc.ankr.com/eth_rinkeby
  • Contract address: 0x3b1B7AB12c115148B4bbe14E8327Da6c1DfD70cd

Matic (TestNet)

native
  • Endpoint: https://rpc-mumbai.maticvigil.com
  • Contract address: 0x6003028E5C3FB11c5F002902dDa1E18cF6a5D34B
ERC20
  • Endpoint: https://rpc-mumbai.maticvigil.com
  • Contract address: 0xa66ffa7b45d9138e6A93bBa1f29a580bd559E5cC
ERC721
  • Endpoint: https://rpc-mumbai.maticvigil.com
  • Contract address: 0x6003028E5C3FB11c5F002902dDa1E18cF6a5D34B

Introduction

Install the necessary libraries

npm

npm install --save web3 @atomic-port/evm

yarn

yarn add web3 @atomic-port/evm

HTLC issues a secret and key in advance and uses this to issue a secret lock. When both parties agree to the transaction, the secret and key are exchanged separately, and the key is used to receive a token. This is how the cross-chain swap is performed.

Issue a secret lock

You can publish using this package with the following operations. The output hashPair contains a secret and a proof. The secret is shared in advance, and the proof is issued at a mutually agreed timing.

native/lock.ts erc20/lock.ts erc721/lock.ts erc20JPYC/lock.ts erc20Polygon/lock.ts

Unlocking by Proof

With a secret lock, locked assets are withdrawn through a secret proof transaction.

native/withDraw.ts erc20/withDraw.ts erc721/withDraw.ts erc20JPYC/withDraw.ts erc20Polygon/lock.ts

For more detailed examples, please check the sample collection below examples

More Documents