> For the complete documentation index, see [llms.txt](https://docs.resmic.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.resmic.com/resmic-sdk/getting-started/installation.md).

# Installation

Install Resmic from NPM

```bash

npm install resmic

```

### The Gist

{% code fullWidth="false" %}

```jsx

import {CryptoPayment, Tokens, Chains} from 'resmic'

function App() {

  return (
      <div>
        <CryptoPayment 
             Address={{EVM:"YOUR_WALLET_ADDRESS", STARKNET:"YOUR_WALLET_ADDRESS"}} // Wallet Address to receive Funds.
             Chains={[ Chains.Ethereum, Chains.Polygon, Chains.Starknet, Chains.Sepolia ]}
             Tokens ={[Tokens.STARK, Tokens.ETH, Tokens.USDT ]} 
             Amount={100} // Amount in USD
        />
        
      </div>
  )
}

```

{% endcode %}

{% hint style="info" %}
**Important**

Visit list of [supported](/resmic-sdk/support.md) tokens and blockchains for more details.
{% endhint %}
