Sending sSCRT using Keplr Wallet

This executes a live transaction on mainnet!

Keplr wallet must be connected and wallet must have sufficient funds or transaction will fail.

Address:
sSCRT

Creating this page with SvelteKit requires the @keplr-wallet/types package to be installed.

$ npm i @keplr-wallet/types

Create a file called window.d.ts within src.

The window.d.ts file should hold the contents of this file, also shown here:

import { Window as KeplrWindow } from "@keplr-wallet/types";

declare global {
  // eslint-disable-next-line @typescript-eslint/no-empty-interface
  interface Window extends KeplrWindow {}
}