2021-06-07 09:04:17 +02:00
|
|
|
|
import os
|
|
|
|
|
import unittest
|
|
|
|
|
import json
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
|
|
# external imports
|
|
|
|
|
from chainlib.eth.constant import ZERO_ADDRESS
|
|
|
|
|
from chainlib.eth.nonce import RPCNonceOracle
|
|
|
|
|
from chainlib.eth.tx import receipt
|
|
|
|
|
from chainlib.eth.block import (
|
|
|
|
|
block_latest,
|
|
|
|
|
block_by_number,
|
|
|
|
|
)
|
|
|
|
|
from chainlib.eth.address import to_checksum_address
|
|
|
|
|
from hexathon import (
|
|
|
|
|
strip_0x,
|
|
|
|
|
add_0x,
|
|
|
|
|
)
|
2023-02-10 11:05:10 +01:00
|
|
|
|
from dexif import to_fixed
|
2021-06-07 09:04:17 +02:00
|
|
|
|
|
|
|
|
|
# local imports
|
|
|
|
|
from erc20_demurrage_token import DemurrageToken
|
2023-02-10 07:21:32 +01:00
|
|
|
|
from erc20_demurrage_token import DemurrageRedistribution
|
2021-06-07 09:04:17 +02:00
|
|
|
|
|
|
|
|
|
# test imports
|
2023-02-10 07:21:32 +01:00
|
|
|
|
from erc20_demurrage_token.unittest import TestDemurrageDefault
|
2021-06-07 09:04:17 +02:00
|
|
|
|
|
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
|
logg = logging.getLogger()
|
|
|
|
|
|
|
|
|
|
testdir = os.path.dirname(__file__)
|
|
|
|
|
|
|
|
|
|
|
2023-02-10 07:21:32 +01:00
|
|
|
|
class TestRedistribution(TestDemurrageDefault):
|
2021-06-07 09:04:17 +02:00
|
|
|
|
|
2022-05-27 13:10:31 +02:00
|
|
|
|
|
2021-06-08 14:58:58 +02:00
|
|
|
|
# TODO: move to "pure" test file when getdistribution is implemented in all contracts
|
2022-05-27 13:10:31 +02:00
|
|
|
|
def test_distribution_direct(self):
|
2021-06-08 14:58:58 +02:00
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc)
|
|
|
|
|
c = DemurrageToken(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
|
|
2021-06-08 17:41:49 +02:00
|
|
|
|
demurrage = (1 - (self.tax_level / 1000000)) * (10**28)
|
2021-06-08 14:58:58 +02:00
|
|
|
|
supply = self.default_supply
|
|
|
|
|
|
2023-02-10 07:21:32 +01:00
|
|
|
|
#o = c.get_distribution(self.address, supply, demurrage, sender_address=self.accounts[0])
|
|
|
|
|
o = c.get_distribution(self.address, supply, to_fixed(self.tax_level / 1000000), sender_address=self.accounts[0])
|
2021-06-08 14:58:58 +02:00
|
|
|
|
r = self.rpc.do(o)
|
|
|
|
|
distribution = c.parse_get_distribution(r)
|
|
|
|
|
expected_distribution = self.default_supply * (self.tax_level / 1000000)
|
2023-02-10 07:21:32 +01:00
|
|
|
|
self.assert_within(distribution, expected_distribution, 100)
|
2021-06-08 14:58:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_distribution_from_redistribution(self):
|
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc)
|
|
|
|
|
c = DemurrageToken(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
|
|
2022-05-27 14:51:10 +02:00
|
|
|
|
demurrage = (1 - (self.tax_level / 100000)) * (10**28)
|
2022-05-27 13:10:31 +02:00
|
|
|
|
|
2021-06-08 14:58:58 +02:00
|
|
|
|
supply = self.default_supply
|
|
|
|
|
|
2023-02-10 07:21:32 +01:00
|
|
|
|
o = c.to_redistribution(self.address, 0, to_fixed(self.tax_level / 1000000), supply, 2, sender_address=self.accounts[0])
|
2021-06-08 14:58:58 +02:00
|
|
|
|
redistribution = self.rpc.do(o)
|
|
|
|
|
|
2022-05-27 14:51:10 +02:00
|
|
|
|
o = c.get_distribution_from_redistribution(self.address, redistribution, self.accounts[0])
|
2021-06-08 14:58:58 +02:00
|
|
|
|
r = self.rpc.do(o)
|
|
|
|
|
distribution = c.parse_get_distribution(r)
|
2023-02-10 07:21:32 +01:00
|
|
|
|
expected_distribution = (self.default_supply * (self.tax_level / 1000000))
|
2022-05-27 13:10:31 +02:00
|
|
|
|
logg.debug('distribution {} supply {}'.format(distribution, self.default_supply))
|
2023-02-10 07:21:32 +01:00
|
|
|
|
self.assert_within(distribution, expected_distribution, 1000)
|
2021-06-08 14:58:58 +02:00
|
|
|
|
|
|
|
|
|
|
2022-05-27 14:02:27 +02:00
|
|
|
|
def test_single_step_basic(self):
|
2021-06-08 14:58:58 +02:00
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc)
|
|
|
|
|
c = DemurrageToken(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
|
|
|
|
|
|
mint_amount = 100000000
|
|
|
|
|
|
|
|
|
|
(tx_hash, o) = c.mint_to(self.address, self.accounts[0], self.accounts[1], mint_amount)
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
self.backend.time_travel(self.start_time + self.period_seconds)
|
|
|
|
|
|
|
|
|
|
(tx_hash, o) = c.change_period(self.address, self.accounts[0])
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
expected_balance = int(mint_amount - ((self.tax_level / 1000000) * mint_amount))
|
|
|
|
|
|
2022-05-27 14:02:27 +02:00
|
|
|
|
o = c.balance_of(self.address, ZERO_ADDRESS, sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
|
|
|
|
balance = c.parse_balance(r)
|
|
|
|
|
|
|
|
|
|
logg.debug('balance {}'.format(balance))
|
|
|
|
|
|
2021-06-08 14:58:58 +02:00
|
|
|
|
o = c.balance_of(self.address, self.accounts[1], sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2021-06-28 11:46:05 +02:00
|
|
|
|
balance = c.parse_balance(r)
|
2021-06-08 14:58:58 +02:00
|
|
|
|
|
|
|
|
|
self.assertEqual(balance, expected_balance)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_single_step_multi(self):
|
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc)
|
|
|
|
|
c = DemurrageToken(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
|
|
|
|
|
|
mint_amount = 100000000
|
|
|
|
|
|
|
|
|
|
for i in range(3):
|
|
|
|
|
(tx_hash, o) = c.mint_to(self.address, self.accounts[0], self.accounts[i+1], mint_amount)
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
self.backend.time_travel(self.start_time + self.period_seconds)
|
|
|
|
|
|
|
|
|
|
(tx_hash, o) = c.change_period(self.address, self.accounts[0])
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
expected_balance = int(mint_amount - ((self.tax_level / 1000000) * mint_amount))
|
|
|
|
|
|
|
|
|
|
for i in range(3):
|
|
|
|
|
o = c.balance_of(self.address, self.accounts[i+1], sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2021-06-28 11:46:05 +02:00
|
|
|
|
balance = c.parse_balance(r)
|
2021-06-08 14:58:58 +02:00
|
|
|
|
self.assertEqual(balance, expected_balance)
|
|
|
|
|
|
|
|
|
|
|
2021-06-08 11:16:56 +02:00
|
|
|
|
def test_single_step_transfer(self):
|
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc)
|
|
|
|
|
c = DemurrageToken(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
|
|
2023-02-10 07:21:32 +01:00
|
|
|
|
mint_amount = self.default_supply
|
2021-06-08 11:16:56 +02:00
|
|
|
|
half_mint_amount = int(mint_amount / 2)
|
|
|
|
|
|
|
|
|
|
(tx_hash, o) = c.mint_to(self.address, self.accounts[0], self.accounts[1], mint_amount)
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
(tx_hash, o) = c.mint_to(self.address, self.accounts[0], self.accounts[2], mint_amount)
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[1], self.rpc)
|
|
|
|
|
c = DemurrageToken(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
|
(tx_hash, o) = c.transfer(self.address, self.accounts[1], self.accounts[3], half_mint_amount)
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
|
|
|
|
self.backend.time_travel(self.start_time + self.period_seconds)
|
|
|
|
|
|
|
|
|
|
(tx_hash, o) = c.change_period(self.address, self.accounts[1])
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
o = receipt(tx_hash)
|
|
|
|
|
r = self.rpc.do(o)
|
|
|
|
|
self.assertEqual(r['status'], 1)
|
|
|
|
|
|
2021-06-08 13:06:32 +02:00
|
|
|
|
# check that we have crossed into new period, this will throw if not
|
|
|
|
|
o = c.redistributions(self.address, 1, sender_address=self.accounts[0])
|
|
|
|
|
self.rpc.do(o)
|
|
|
|
|
|
2021-06-08 11:16:56 +02:00
|
|
|
|
demurrage_amount = int((self.tax_level / 1000000) * mint_amount)
|
|
|
|
|
|
|
|
|
|
expected_balance = mint_amount - demurrage_amount
|
|
|
|
|
o = c.balance_of(self.address, self.accounts[2], sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2021-06-28 11:46:05 +02:00
|
|
|
|
balance = c.parse_balance(r)
|
2023-02-10 07:21:32 +01:00
|
|
|
|
self.assert_within(balance, expected_balance, 10)
|
2021-06-08 11:16:56 +02:00
|
|
|
|
|
|
|
|
|
half_demurrage_amount = int((self.tax_level / 1000000) * half_mint_amount)
|
|
|
|
|
|
|
|
|
|
expected_balance = half_mint_amount - half_demurrage_amount
|
|
|
|
|
o = c.balance_of(self.address, self.accounts[1], sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2021-06-28 11:46:05 +02:00
|
|
|
|
balance = c.parse_balance(r)
|
2021-06-08 11:16:56 +02:00
|
|
|
|
self.assertEqual(balance, expected_balance)
|
|
|
|
|
|
|
|
|
|
o = c.balance_of(self.address, self.accounts[3], sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2021-06-28 11:46:05 +02:00
|
|
|
|
balance = c.parse_balance(r)
|
2021-06-08 11:16:56 +02:00
|
|
|
|
self.assertEqual(balance, expected_balance)
|
|
|
|
|
|
|
|
|
|
o = c.total_supply(self.address, sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
|
|
|
|
supply = c.parse_total_supply(r)
|
|
|
|
|
|
|
|
|
|
o = c.redistributions(self.address, 0, sender_address=self.accounts[0])
|
|
|
|
|
redistribution = self.rpc.do(o)
|
|
|
|
|
o = c.to_redistribution_supply(self.address, redistribution, sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
|
|
|
|
supply = c.parse_to_redistribution_item(r)
|
|
|
|
|
o = c.to_redistribution_demurrage_modifier(self.address, redistribution, sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2023-02-10 07:21:32 +01:00
|
|
|
|
#demurrage = c.parse_to_redistribution_item(r)
|
|
|
|
|
#logg.debug('\nrediistribution {}\ndemurrage {}\nsupply {}'.format(redistribution, demurrage, supply))
|
|
|
|
|
redistro_item = DemurrageRedistribution(redistribution)
|
|
|
|
|
logg.debug('redistribution {}'.format(redistro_item))
|
2021-06-08 11:16:56 +02:00
|
|
|
|
|
|
|
|
|
expected_balance = int(supply * (self.tax_level / 1000000))
|
|
|
|
|
expected_balance_tolerance = 1
|
|
|
|
|
|
|
|
|
|
o = c.balance_of(self.address, self.sink_address, sender_address=self.accounts[0])
|
|
|
|
|
r = self.rpc.do(o)
|
2021-06-28 11:46:05 +02:00
|
|
|
|
balance = c.parse_balance(r)
|
2021-06-08 13:06:32 +02:00
|
|
|
|
self.assert_within_lower(balance, expected_balance, 1000)
|
2021-06-08 11:16:56 +02:00
|
|
|
|
|
2021-06-07 09:04:17 +02:00
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
unittest.main()
|