Trade

Difference between revisions from 2024/04/09 18:37 and 2024/03/04 17:35.
{html}
<iframe width="100%" height="800" frameBorder="0" scrolling="no" src="https://coinbrain.com/coins/bnb-0x2bf2141ed175f3236903cf07de33d7324871802d/lite?theme=dark&padding=16&currency=USD"></iframe>
<div style="background-color: #161727; display: flex; justify-content: center; padding: 16px; margin-top: -20px">
    <div style="flex-basis: 480px; margin: 16px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); box-sizing: border-box;">
        <h2 style="color: white;">Entry</h2>
        <iframe width="100%" height="640" frameBorder="0" scrolling="no" src="https://coinbrain.com/embed/trade?theme=dark&padding=16&chainId=56&inputAddress=0x55d398326f99059ff775485246999027b3197955&outputAddress=0x2bf2141eD175F3236903Cf07De33d7324871802d"></iframe>
    </div>
    <div style="flex-basis: 480px; margin: 16px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); box-sizing: border-box;">
        <h2 style="color: white;">Exit</h2>
        <iframe width="100%" height="640" frameBorder="0" scrolling="no" src="https://coinbrain.com/embed/trade?theme=dark&padding=16&chainId=56&inputAddress=0x2bf2141ed175f3236903cf07de33d7324871802d&outputAddress=0x55d398326f99059ff775485246999027b3197955&inputLocked=1"></iframe>
    </div>
</div>
{/html}

You{html}
You can also buy Immortality at any of these links <a href="https://pancakeswap.finance/swap?inputCurrency=BNB&outputCurrency=0x2bf2141ed175f3236903cf07de33d7324871802d" target="_blank">PancakeSwap</a>,target="_blank">PancakeSwap</a><!-- <a href="https://app.1inch.io/#/56/classic/swap/BNB/0x2bf2141ed175f3236903cf07de33d7324871802d" target="_blank">1inch</a></li>, <a href="https://julswap.com/#/swap?inputCurrency=0xe9e7cea3dedca5984780bafc599bd69add087d56&outputCurrency=0x2bf2141ed175f3236903cf07de33d7324871802d" target="_blank">JulSwap</a><!--,target="_blank">JulSwap</a>, <a href="https://cheeseswap.app/#/swap?inputCurrency=0xe9e7cea3dedca5984780bafc599bd69add087d56&outputCurrency=0x2bf2141ed175f3236903cf07de33d7324871802d" target="_blank">CheeseSwap</a>-->. Downloadtarget="_blank">CheeseSwap</a> -->, download a crypto wallet to hold your crypto, such as <a href="https://metamask.io/" target="_blank">Metamask</a>. <a href="https://imt.cx/guide.html">Click here</a> for an extended guide. Download Metamask or your favorite wallet and save your public and private key pair to a safe place and save your wallet access username and password and password challenge along with your keys. Chart is provided by a non-affiliated, independent party. You are trading using your own wallet over Coinbrain and PancakeSwap. Trade using your own wallet.
{/html}

        <script>
       /*     function reload() {
                document.getElementById("ifr").src = "https://coinbrain.com/embed/0x2bf2141ed175f3236903cf07de33d7324871802d?theme=dark&chart=1&trades=1"
            }

            setInterval(reload, 60000) */
        </script>
<p>
<iframe id="dextools-widget"
    title="DEXTools Trading Chart"
    width="100%" height="400"
    src="https://www.dextools.io/widget-chart/en/bnb/pe-light/0xfa56e9abcaa45207be5e43cf475ee061768ca915?theme=light&chartType=2&chartResolution=30&drawingToolbars=false"></iframe>

<iframe width="100%" height="540" frameBorder="0" scrolling="no" src="https://coinbrain.com/embed/bnb-0x2bf2141ed175f3236903cf07de33d7324871802d?theme=light&padding=1&chart=1&trades=0"></iframe>
</p>
{/html}
{html}

  			  	<script<script src="https://imt.cx/assets/js/web3.min.js"></script>       


<button onclick="checkConnection()" style="padding: 10px">➡️ Check Wallet Connection</button>
<button onclick="connectToBSC()" style="padding: 10px">➡️ Connect to Binance Smart Chain</button>
<button onclick="addCustomToken()" style="padding: 10px">➡️ Add Immortality Token</button>

<div id="status"></div>

<!-- MetaMask Installation Links -->
<p id="installLinks"></p>
<ul id="installLinksList">
  <li><a href="https://metamask.io/" target="_blank">Install Metamask through the official homepage</a></li>
</ul>

<script>
  async function checkConnection() {
    const statusElement = document.getElementById('status');
    const installLinksElement = document.getElementById('installLinks');
    const installLinksListElement = document.getElementById('installLinksList');

    // Check if MetaMask is installed
    if (typeof window.ethereum === 'undefined') {
      statusElement.textContent = 'MetaMask or a similar wallet is not installed.';
      installLinksElement.style.display = 'block'; // Show installation links
      installLinksListElement.style.display = 'block'; // Show installation links list
      return;
    }

    installLinksElement.style.display = 'none'; // Hide installation links
    installLinksListElement.style.display = 'none'; // Hide installation links list

    const web3 = new Web3(window.ethereum);

    try {
      await window.ethereum.enable(); // Request user to connect their wallet
      const accounts = await web3.eth.getAccounts();
      if (accounts.length === 0) {
        statusElement.textContent = 'No wallet connected.';
      } else {
        const address = accounts[0];
        statusElement.textContent = `Wallet connected.`; // | Address: ${address}`;
      }
    } catch (error) {
      console.error('Error connecting to wallet:', error.message);
      statusElement.textContent = 'Error connecting to the wallet.';
    }
  }

  async function connectToBSC() {
    try {
      // Add Binance Smart Chain to MetaMask
      await window.ethereum.request({
        method: 'wallet_addEthereumChain',
        params: [
          {
            chainId: '0x38',
            chainName: 'Binance Smart Chain',
            nativeCurrency: {
              name: 'BNB',
              symbol: 'BNB',
              decimals: 18,
            },
            rpcUrls: ['https://bsc-dataseed.binance.org/'],
            blockExplorerUrls: ['https://bscscan.com/'],
          },
        ],
      });

      // Switch to Binance Smart Chain
      await window.ethereum.request({
        method: 'wallet_switchEthereumChain',
        params: [
          {
            chainId: '0x38', // BSC chainId
          },
        ],
      });

      // Notify user about the network switch
      alert('Connected to Binance Smart Chain');
    } catch (error) {
      console.error('Error connecting to Binance Smart Chain:', error.message);
      alert('Error connecting to Binance Smart Chain.');
    }
  }

  async function addCustomToken() {
    try {
      // Add custom token to MetaMask
      await window.ethereum.request({
        method: 'wallet_watchAsset',
        params: {
          type: 'ERC20',
          options: {
            address: '0x2bf2141ed175f3236903cf07de33d7324871802d', // Replace with the actual token address
            symbol: 'IMT',       // Replace with the actual token symbol
            decimals: 18,
            image: 'https://imt.cx/imtmm.png',     // Replace with the actual token image URL
          },
        },
      });

      alert('Immortality token added to MetaMask');
    } catch (error) {
      console.error('Error adding Immortality:', error.message);
      alert('Error adding Immortality.');
    }
  }
</script>

{/html}

{html}
<table width="100%">
<tr><td valign="top" width="50%">
<p>Promote your investment, promote Immortality everyday. Watch, Like, Subscribe, Comment, Tweet and Tell your friends.</p><p>Our official channels.</p>
<a href="https://www.youtube.com/channel/UCyRzjFMdYx8PPXBThO1SYoA" target="_blank"><img src="kb/images/yt.png"></a>
<a href="https://twitter.com/Immortality_IMT" target="_blank"><img src="kb/images/x.png"></a>
</td></tr></table>
{/html}

  

 📜 ⏱️  ⬆️