We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DeFiCh/ain:1.7.x
Similar to #108
Implementation of 1.7.x Custom DfTx https://github.com/DeFiCh/ain/blob/6428ac0ca470dd16f973d62b74a1ec0b9e5444a8/src/masternodes/mn_checks.h#L62-L67
enum class CustomTxType : uint8_t { AppointOracle = 'o', RemoveOracleAppoint = 'h', UpdateOracleAppoint = 't', SetOracleData = 'y', }
in
packages/jellyfish-transaction/src/script/defi/*
All CustomTX has a starting signature of DfTx in utf8 or 0x44665478. It is as it is, don't need to convert from BE to LE.
DfTx
0x44665478
They are structured as a
VarUInt
OP_RETURN
TYPES[CxTxType]
6a
44665478
Refer to #108 for a detailed implementation guide
The text was updated successfully, but these errors were encountered:
Will implement RemoveOracleAppoint as RemoveOracle and UpdateOracleAppoint as UpdateOracle to be in line with RPC calls and make more sense in general
Sorry, something went wrong.
monstrobishi
Successfully merging a pull request may close this issue.
Similar to #108
Implementation of 1.7.x Custom DfTx
https://github.com/DeFiCh/ain/blob/6428ac0ca470dd16f973d62b74a1ec0b9e5444a8/src/masternodes/mn_checks.h#L62-L67
in
All CustomTX has a starting signature of
DfTx
in utf8 or0x44665478
. It is as it is, don't need to convert from BE to LE.They are structured as a
VarUInt
+ [OP_RETURN
+DfTx
+TYPES[CxTxType]
+ ...]VarUInt
+6a
+44665478
+ Type + ...Refer to #108 for a detailed implementation guide
The text was updated successfully, but these errors were encountered: