Skip to content

velas/velas-legacy-address-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Libraries for en/decoding address to velas/ether format

Functions arguments must be in string format with \ without prefixes "0x", "V"

Encoding

To show user's address of his wallet, we take the address in the ether format and encode with the function ethToVlx / EthToVlx / eth_to_vlx

Example

const addr = "0x32Be343B94f860124dC4fEe278FDCBD38C102D88";

console.log ("Encoded address:", ethToVlx (addr)); // V5dJeCa7bmkqmZF53TqjRbnB4fG6hxuu4f

Decoding

To send user's transactions, we take the address in velas format and decode with the function vlxToEth / VlxToEth / vlx_to_eth

Example

const addr = "V5dJeCa7bmkqmZF53TqjRbnB4fG6hxuu4f";

console.log ("Decoded address:", vlxToEth (addr)); // 0x32be343b94f860124dc4fee278fdcbd38c102d88

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published