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

feat: support TX type CONTEND_SLOTS & RELEASE_SLOTS #52

Open
josephzxy opened this issue Jan 26, 2022 · 0 comments
Open

feat: support TX type CONTEND_SLOTS & RELEASE_SLOTS #52

josephzxy opened this issue Jan 26, 2022 · 0 comments

Comments

@josephzxy
Copy link
Contributor

Description

Currently, VSYS has 10 TX types as shown below.

class TxType(enum.Enum):
    """
    TxType is the enum class for transaction types
    """

    GENESIS = 1
    PAYMENT = 2
    LEASE = 3
    LEASE_CANCEL = 4
    MINTING = 5
    CONTEND_SLOTS = 6
    RELEASE_SLOTS = 7
    REGISTER_CONTRACT = 8
    EXECUTE_CONTRACT_FUNCTION = 9
    DB_PUT = 10

For py-v-sdk, TX types below are not required to support.

  • GENSIS
  • MINTING

As of de5ceda, below Tx types are not yet supported.

  • CONTEND_SLOTS
  • RELEASE_SLOTS

We need to support them but the priority is relatively low as they are nice to have.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant