Compare commits

...

4 Commits

Author SHA1 Message Date
Mohamed Sohail dbcc03d1e8
Update README.md 2022-08-09 15:02:00 +03:00
DeepSource Bot 5d2daa2c8e Add .deepsource.toml 2022-06-21 07:38:06 +00:00
Mohamed Sohail 2070f9afcd
Merge pull request #7 from grassrootseconomics/sohail/total-supply
add: (feat) erc20 total supply
2022-05-23 12:49:40 +03:00
Mohamed Sohail 9a7dc6457e
add: (feat) erc20 total supply 2022-05-23 12:47:10 +03:00
3 changed files with 21 additions and 7 deletions

8
.deepsource.toml Normal file
View File

@ -0,0 +1,8 @@
version = 1
[[analyzers]]
name = "go"
enabled = true
[analyzers.meta]
import_root = "github.com/grassrootseconomics/cic-go"

View File

@ -1,3 +1,5 @@
> DEPRECATED: Use https://github.com/grassrootseconomics/cic-go-sdk
[![Go Reference](https://pkg.go.dev/badge/github.com/grassrootseconomics/cic_go.svg)](https://pkg.go.dev/github.com/grassrootseconomics/cic_go)
[![Go](https://github.com/grassrootseconomics/cic_go/actions/workflows/go.yml/badge.svg)](https://github.com/grassrootseconomics/cic_go/actions/workflows/go.yml)
[![Coverage Status](https://coveralls.io/repos/github/grassrootseconomics/cic_go/badge.svg?branch=sohail/cic_net_updates)](https://coveralls.io/github/grassrootseconomics/cic_go?branch=sohail/cic_net_updates)
@ -22,4 +24,4 @@ import (
cic_meta "github.com/grassrootseconomics/cic-go/meta"
cic_net "github.com/grassrootseconomics/cic-go/net"
)
```
```

View File

@ -10,9 +10,10 @@ import (
)
type ERC20Token struct {
Name string
Symbol string
Decimals big.Int
Name string
Symbol string
Decimals big.Int
TotalSupply big.Int
}
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
tokenSymbol string
tokenDecimals big.Int
totalSupply big.Int
)
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("symbol()", "string"), tokenAddress).Returns(&tokenSymbol),
eth.CallFunc(w3.MustNewFunc("decimals()", "uint256"), tokenAddress).Returns(&tokenDecimals),
eth.CallFunc(w3.MustNewFunc("totalSupply()", "uint256"), tokenAddress).Returns(&totalSupply),
)
if err != nil {
return ERC20Token{}, err
}
return ERC20Token{
Name: tokenName,
Symbol: tokenSymbol,
Decimals: tokenDecimals,
Name: tokenName,
Symbol: tokenSymbol,
Decimals: tokenDecimals,
TotalSupply: totalSupply,
}, nil
}
func (c *CicNet) BalanceOf(ctx context.Context, tokenAddress common.Address, accountAddress common.Address) (big.Int, error) {