add: (feat) erc20 total supply

This commit is contained in:
Mohamed Sohail 2022-05-23 12:47:10 +03:00
parent a3052d9e21
commit 9a7dc6457e
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 10 additions and 6 deletions

View File

@ -10,9 +10,10 @@ import (
) )
type ERC20Token struct { type ERC20Token struct {
Name string Name string
Symbol string Symbol string
Decimals big.Int Decimals big.Int
TotalSupply big.Int
} }
func (c *CicNet) ERC20TokenInfo(ctx context.Context, tokenAddress common.Address) (ERC20Token, error) { func (c *CicNet) ERC20TokenInfo(ctx context.Context, tokenAddress common.Address) (ERC20Token, error) {
@ -20,6 +21,7 @@ func (c *CicNet) ERC20TokenInfo(ctx context.Context, tokenAddress common.Address
tokenName string tokenName string
tokenSymbol string tokenSymbol string
tokenDecimals big.Int tokenDecimals big.Int
totalSupply big.Int
) )
err := c.provider.EthClient.CallCtx( err := c.provider.EthClient.CallCtx(
@ -27,15 +29,17 @@ func (c *CicNet) ERC20TokenInfo(ctx context.Context, tokenAddress common.Address
eth.CallFunc(w3.MustNewFunc("name()", "string"), tokenAddress).Returns(&tokenName), eth.CallFunc(w3.MustNewFunc("name()", "string"), tokenAddress).Returns(&tokenName),
eth.CallFunc(w3.MustNewFunc("symbol()", "string"), tokenAddress).Returns(&tokenSymbol), eth.CallFunc(w3.MustNewFunc("symbol()", "string"), tokenAddress).Returns(&tokenSymbol),
eth.CallFunc(w3.MustNewFunc("decimals()", "uint256"), tokenAddress).Returns(&tokenDecimals), eth.CallFunc(w3.MustNewFunc("decimals()", "uint256"), tokenAddress).Returns(&tokenDecimals),
eth.CallFunc(w3.MustNewFunc("totalSupply()", "uint256"), tokenAddress).Returns(&totalSupply),
) )
if err != nil { if err != nil {
return ERC20Token{}, err return ERC20Token{}, err
} }
return ERC20Token{ return ERC20Token{
Name: tokenName, Name: tokenName,
Symbol: tokenSymbol, Symbol: tokenSymbol,
Decimals: tokenDecimals, Decimals: tokenDecimals,
TotalSupply: totalSupply,
}, nil }, nil
} }
func (c *CicNet) BalanceOf(ctx context.Context, tokenAddress common.Address, accountAddress common.Address) (big.Int, error) { func (c *CicNet) BalanceOf(ctx context.Context, tokenAddress common.Address, accountAddress common.Address) (big.Int, error) {