Skip to content
View icodragon's full-sized avatar
🐉
🐉

Organizations

@stakeme-team

Block or report icodragon

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Script that converts from an ethereu... Script that converts from an ethereum address to a ethermint cosmos project address
    1
    const { bech32 } = require('bech32')
    2
    
                  
    3
    function convertToDipAddress(eip55Address, prefix) {
    4
        const words = convertBits(hex2a(eip55Address), 8, 5, false);
    5
        return bech32.encode(prefix, words);