Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/wallet token supply change #1272

Merged
merged 11 commits into from
Oct 24, 2023
Merged

Conversation

OBorce
Copy link
Contributor

@OBorce OBorce commented Oct 13, 2023

Add support for the v1 tokens in the Wallet

  • track the total supply of the issued tokens
  • add new commands for mint/unmint of tokens and locking the token supply
  • existing issue token command now issues the v1 tokens and has an extra argument for token supply
  • ignore all v0 tokens, they are filtered out in all operations, e.g. not show up in getbalance
  • new tests

closes #1237

@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch 2 times, most recently from e0f449f to 29f1a3c Compare October 13, 2023 17:29
@azarovh azarovh mentioned this pull request Oct 15, 2023
@OBorce OBorce marked this pull request as ready for review October 16, 2023 17:54
@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch from b2c63c7 to b085273 Compare October 16, 2023 18:01
@TheQuantumPhysicist
Copy link
Contributor

Does this fix #1237?

@OBorce
Copy link
Contributor Author

OBorce commented Oct 16, 2023

Does this fix #1237?

Yes, updated the description.

self.broadcast_to_mempool(tx).await
}

pub async fn lock_tokens(&mut self, token_id: TokenId) -> Result<(), ControllerError<T>> {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please call this function and all its dependents "lock_tokens_supply". The phrase "lock_tokens" is very ambiguous.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

renamed

Comment on lines 240 to 241
PerThousand::from_decimal_str(value_str).ok_or(WalletCliError::InvalidInput(format!(
"Failed to parse {variable_name} the decimal that must be in the range [0.001,1.000] or [0.1%,100%]",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Failed to parse {variable_name}. The decimal must be in the range..."

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

self.generate_block()
assert_in("Success", await wallet.sync())

tokens_to_mint = 10000
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we randomize this test? I'm OK with making another copy that would do the randomization.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

specified the --randomseed for the functional tests, and randomized 10 mints/unimts with random amounts

@TheQuantumPhysicist
Copy link
Contributor

Looking good, besides the comments!

@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch 2 times, most recently from 85de415 to 2456eb9 Compare October 18, 2023 16:44
@OBorce OBorce marked this pull request as draft October 18, 2023 18:01
@OBorce OBorce marked this pull request as ready for review October 18, 2023 21:26
@azarovh
Copy link
Member

azarovh commented Oct 19, 2023

btw there is one more piece of commented code in the test/functional/wallet_nfts.py

@OBorce OBorce marked this pull request as draft October 19, 2023 09:32
@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch from 3d39e5f to 734e2de Compare October 19, 2023 12:25
@OBorce OBorce marked this pull request as ready for review October 19, 2023 14:21
@azarovh azarovh force-pushed the feat/increase_tokens_supply branch 2 times, most recently from 9768935 to 6cd5f00 Compare October 23, 2023 13:46
Base automatically changed from feat/increase_tokens_supply to master October 23, 2023 20:27
@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch from 734e2de to a6fe57e Compare October 23, 2023 22:38
return await self._write_command(f"unminttokens {token_id} {amount}\n")

async def lock_token_suply(self, token_id: str) -> str:
return await self._write_command(f"locktokensuply {token_id}\n")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

supply

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

#[case(Seed::from_entropy())]
fn check_tokens_v0_are_ignored(#[case] seed: Seed) {
let mut rng = make_seedable_rng(seed);
let chain_config = Arc::new(create_mainnet());
Copy link
Contributor

@TheQuantumPhysicist TheQuantumPhysicist Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason why we're using mainnet here? Just understand that this config can change in the future when creating mainnet.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no particular reason, I will change it

@TheQuantumPhysicist
Copy link
Contributor

minor things I mentioned, all good! Let's merge this today.

@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch from a6fe57e to ee55e7e Compare October 24, 2023 11:32
@OBorce OBorce force-pushed the feature/wallet-token-supply-change branch from 602b4aa to 8d0d1b3 Compare October 24, 2023 12:14
@OBorce OBorce merged commit f879707 into master Oct 24, 2023
@OBorce OBorce deleted the feature/wallet-token-supply-change branch October 24, 2023 15:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support TokensV1 in wallet
3 participants