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

@xiti/terpsnap

v0.2.5

Published

The Terp extension for your Metamask wallet.

Downloads

9

Readme

Cosmos MetaMask Snap

Cosmos Metamask Snap aims to add full support of Metamask, a highly popular Ethereum wallet, to all Cosmos SDK blockchains, potentially opening the door to over 30 million Ethereum users and stimulating growth for every project in the Cosmos ecosystem.

Developer Preview Software

Please note, to develop this Metamask Snap you need to use Metamask Flask, a canary distribution for developers that provides access to upcoming features wihtin Metamask.

Contribution

Your contributions are always welcome! Please have a look at the contribution guidelines first.

Install & Initialize

// Check if the Snap is installed
let result = await window.ethereum.request({ method: 'wallet_getSnaps' });
const installed = Object.keys(result).includes("npm:@cosmsnap/snap");

// Install Snap
if (!installed) {
    const result = await window.ethereum.request({
        method: 'wallet_requestSnaps',
        params: {
            'npm:@cosmsnap/snap': {
            version: '^0.1.0',
            },
        },
    });
}

// Initialize the Snap with default chains
await ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'initialize',
        },
    },
});

Check If Initialized

// Boolean is returned
const initialized = await ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'initialized',
        },
    },
});

Suggest Chain

This Snap has default support for coin types 118, 564, 60, 459, 529, 330, 494, 639, 483, 4444, 701, 990, 394, 852, 7777777, 880, 931, 371, 370, 505, 234, 5555. All the coin types within the chain registry. If you need any other please add an issue to the repo here and we will gladly add it.

Chain info is structured like in the chain registry (i.e Agoric)

// chainInfo should be structured like this https://github.com/cosmos/chain-registry/tree/master/agoric
await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'addChain',
            params: {
                chain_info: JSON.stringify(chainInfo),
            }
        },
    },
});

Get Chains

const chains = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'getChains'
        },
    },
});

Delete Chain

const chain = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'deleteChain',
            params: {
                chain_id: 'morocco-1',
            }
        },
    },
});

Send Transaction

This will sign and broadcast the transaction.

const msgs = [
    {
        typeUrl: "/cosmos.bank.v1beta1.MsgSend",
        value: {
            fromAddress: senderAddress,
            toAddress: recipientAddress,
            amount: [{
                denom: "uatom",
                amount: "500000"
            }],
        },
    }
];
const fees = {
    amount: [{
        denom: "uatom",
        amount: "500"
    }],
    gas: "200000"
};
const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'transact',
            params: {
                chain_id: 'morocco-1',
                msgs: JSON.stringify(msgs),
                // Optional: Uses default fees for chain if not specified
                fees: JSON.stringify(fees)
            }
        },
    },
});

Sign Transaction

This will sign the transaction and return the transaction bytes. NOTE: This does not broadcast the transaction.

const msgs = [
    {
        typeUrl: "/cosmos.bank.v1beta1.MsgSend",
        value: {
            fromAddress: senderAddress,
            toAddress: recipientAddress,
            amount: [{
                denom: "uatom",
                amount: "500000"
            }],
        },
    }
];
const fees = {
    amount: [{
        denom: "uatom",
        amount: "500"
    }],
    gas: "200000"
};
const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'signTx',
            params: {
                chain_id: 'morocco-1',
                msgs: JSON.stringify(msgs),
                // Optional: Uses default fees for chain if not specified
                fees: JSON.stringify(fees)
            }
        },
    },
});

Add Address (Address Book)

const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'addAddress',
            params: {
                chain_id: 'morocco-1',
                address: 'cosmos123456789',
                name: 'John Cosmos'
            }
        },
    },
});

Get Addresses (Address Book)

const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'getAddresses'
        },
    },
});

Delete Address (Address Book)

const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'deleteAddress',
            params: {
                address: 'cosmos123456789'
            }
        },
    },
});

Get Bech32 Address

const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'getChainAddress',
            params: {
                chain_id: 'morocco-1',
            }
        },
    },
});

Get Bech32 Addresses

const address = await window.ethereum.request({
    method: 'wallet_invokeSnap',
    params: {
        snapId: 'npm:@cosmsnap/snap',
        request: {
            method: 'getChainAddresses'
        },
    },
});