mirror of
https://github.com/grassrootseconomics/cic-go.git
synced 2024-11-13 18:36:47 +01:00
Mohamed Sohail
7731a23e35
* update: (cic_net) add new methods and tests * add: write tx methods and tests - add ci for testing - coveralls for coverage * ci: add test environment * ci: expose secrets to env * docs: add badges
110 lines
3.5 KiB
Go
110 lines
3.5 KiB
Go
package cic_net
|
|
|
|
import (
|
|
"context"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/lmittmann/w3"
|
|
"github.com/lmittmann/w3/module/eth"
|
|
"math/big"
|
|
)
|
|
|
|
type DemurrageTokenInfo struct {
|
|
DemurrageAmount big.Int
|
|
DemurrageTimestamp big.Int
|
|
MinimumParticipantSpend big.Int
|
|
ResolutionFactor big.Int
|
|
PeriodStart big.Int
|
|
PeriodDuration big.Int
|
|
TaxLevel big.Int
|
|
ActualPeriod big.Int
|
|
RedistributionCount big.Int
|
|
IsDemurrageToken bool
|
|
}
|
|
|
|
func (c *CicNet) DemurrageTokenInfo(ctx context.Context, tokenAddress common.Address) (DemurrageTokenInfo, error) {
|
|
var (
|
|
demurrageAmount big.Int
|
|
demurrageTimestamp big.Int
|
|
minimumParticipantSpend big.Int
|
|
resolutionFactor big.Int
|
|
periodStart big.Int
|
|
periodDuration big.Int
|
|
taxLevel big.Int
|
|
actualPeriod big.Int
|
|
redistributionCount big.Int
|
|
)
|
|
|
|
err := c.ethClient.CallCtx(
|
|
ctx,
|
|
eth.CallFunc(w3.MustNewFunc("demurrageAmount()", "uint128"), tokenAddress).Returns(&demurrageAmount),
|
|
eth.CallFunc(w3.MustNewFunc("demurrageTimestamp()", "uint256"), tokenAddress).Returns(&demurrageTimestamp),
|
|
eth.CallFunc(w3.MustNewFunc("minimumParticipantSpend()", "uint256"), tokenAddress).Returns(&minimumParticipantSpend),
|
|
eth.CallFunc(w3.MustNewFunc("resolutionFactor()", "uint256"), tokenAddress).Returns(&resolutionFactor),
|
|
eth.CallFunc(w3.MustNewFunc("periodStart()", "uint256"), tokenAddress).Returns(&periodStart),
|
|
eth.CallFunc(w3.MustNewFunc("periodDuration()", "uint256"), tokenAddress).Returns(&periodDuration),
|
|
eth.CallFunc(w3.MustNewFunc("taxLevel()", "uint256"), tokenAddress).Returns(&taxLevel),
|
|
eth.CallFunc(w3.MustNewFunc("actualPeriod()", "uint256"), tokenAddress).Returns(&actualPeriod),
|
|
eth.CallFunc(w3.MustNewFunc("redistributionCount()", "uint256"), tokenAddress).Returns(&redistributionCount),
|
|
)
|
|
|
|
if err != nil {
|
|
return DemurrageTokenInfo{}, err
|
|
}
|
|
|
|
return DemurrageTokenInfo{
|
|
DemurrageAmount: demurrageAmount,
|
|
DemurrageTimestamp: demurrageTimestamp,
|
|
MinimumParticipantSpend: minimumParticipantSpend,
|
|
ResolutionFactor: resolutionFactor,
|
|
PeriodStart: periodStart,
|
|
PeriodDuration: periodDuration,
|
|
TaxLevel: taxLevel,
|
|
ActualPeriod: actualPeriod,
|
|
RedistributionCount: redistributionCount,
|
|
}, nil
|
|
}
|
|
|
|
func (c *CicNet) BaseBalanceOf(ctx context.Context, tokenAddress common.Address, accountAddress common.Address) (big.Int, error) {
|
|
var balance big.Int
|
|
|
|
err := c.ethClient.CallCtx(
|
|
ctx,
|
|
eth.CallFunc(w3.MustNewFunc("baseBalanceOf(address _account)", "uint256"), tokenAddress, accountAddress).Returns(&balance),
|
|
)
|
|
if err != nil {
|
|
return big.Int{}, err
|
|
}
|
|
|
|
return balance, nil
|
|
}
|
|
|
|
func (c *CicNet) ChangePeriod(ctx context.Context, txData WriteTx) (common.Hash, error) {
|
|
sig := w3.MustNewFunc("changePeriod()", "bool")
|
|
input, err := sig.EncodeArgs()
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
|
|
txHash, err := c.signAndCall(ctx, input, txData)
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
|
|
return txHash, nil
|
|
}
|
|
|
|
func (c *CicNet) ApplyDemurrageLimited(ctx context.Context, rounds int64, txData WriteTx) (common.Hash, error) {
|
|
sig := w3.MustNewFunc("applyDemurrageLimited(uint256 _rounds)", "bool")
|
|
input, err := sig.EncodeArgs(big.NewInt(rounds))
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
|
|
txHash, err := c.signAndCall(ctx, input, txData)
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
|
|
return txHash, nil
|
|
}
|