Script Bitcoin represent number > 16 The 2019 Stack Overflow Developer Survey Results Are InHow do I read a script? How does the processor separate “data” from “commands”?Maximum number of op_codes in scriptAny Innovations in altcoin tech for Bitcoin’s Script language?Bitcoin library vs script to develop applicationConvert plaintext script into hex-encoded script in pythonWhy does this script return an error ?Decode Input-Script NumberBitcoin's script expressivityError while sending transaction with script OP_TRUE (Script evaluated without error but finished with a false/empty top stack element)Sending P2SH transaction with non-standard script
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
Relationship between Gromov-Witten and Taubes' Gromov invariant
Mathematics of imaging the black hole
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
What do these terms in Caesar's Gallic wars mean?
Falsification in Math vs Science
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
Is it safe to harvest rainwater that fell on solar panels?
Can you cast a spell on someone in the Ethereal Plane, if you are on the Material Plane and have the True Seeing spell active?
Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?
Is an up-to-date browser secure on an out-of-date OS?
What's the name of these plastic connectors
APIPA and LAN Broadcast Domain
What is preventing me from simply constructing a hash that's lower than the current target?
Does HR tell a hiring manager about salary negotiations?
Can withdrawing asylum be illegal?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Why can't devices on different VLANs, but on the same subnet, communicate?
Button changing its text & action. Good or terrible?
Are spiders unable to hurt humans, especially very small spiders?
Why isn't the circumferential light around the M87 black hole's event horizon symmetric?
How to notate time signature switching consistently every measure
If a sorcerer casts the Banishment spell on a PC while in Avernus, does the PC return to their home plane?
Accepted by European university, rejected by all American ones I applied to? Possible reasons?
Script Bitcoin represent number > 16
The 2019 Stack Overflow Developer Survey Results Are InHow do I read a script? How does the processor separate “data” from “commands”?Maximum number of op_codes in scriptAny Innovations in altcoin tech for Bitcoin’s Script language?Bitcoin library vs script to develop applicationConvert plaintext script into hex-encoded script in pythonWhy does this script return an error ?Decode Input-Script NumberBitcoin's script expressivityError while sending transaction with script OP_TRUE (Script evaluated without error but finished with a false/empty top stack element)Sending P2SH transaction with non-standard script
I'm studying Script language, but I don't understand How can I rappresent the number > 16, for instance 210
I want to do a simple sum
OP_10 210 OP_ADD
how I have to represent 210?
I'm trying with OP_PUSHDATA1 without lucky.
transactions bitcoin-core development script
add a comment |
I'm studying Script language, but I don't understand How can I rappresent the number > 16, for instance 210
I want to do a simple sum
OP_10 210 OP_ADD
how I have to represent 210?
I'm trying with OP_PUSHDATA1 without lucky.
transactions bitcoin-core development script
add a comment |
I'm studying Script language, but I don't understand How can I rappresent the number > 16, for instance 210
I want to do a simple sum
OP_10 210 OP_ADD
how I have to represent 210?
I'm trying with OP_PUSHDATA1 without lucky.
transactions bitcoin-core development script
I'm studying Script language, but I don't understand How can I rappresent the number > 16, for instance 210
I want to do a simple sum
OP_10 210 OP_ADD
how I have to represent 210?
I'm trying with OP_PUSHDATA1 without lucky.
transactions bitcoin-core development script
transactions bitcoin-core development script
asked 8 hours ago
monkeyUsermonkeyUser
1637
1637
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You only need to use OP_PUSHDATA1 if you are trying to push more than 75 bytes of data onto the stack.
For pushing smaller sized values onto the stack, you can use the opcodes 0x01 to 0x4b to indicate the number of bytes being pushed. Thus, to push a single byte of value 210 (0xD2) onto the stack, you would use the byte sequence 0x01 0xd2
.
To push a 16-bit number, such as 1000 onto the stack, you would use the sequence of bytes 0x02 0xe8 0x03
. Note that little-endian byte ordering is used. You can do similarly for a 24-bit number, or 32-bit number.
The minimum size should always be used when pushing a value - meaning the most significant byte of the pushed value should never be zero.
The value pushed will internally be zero-extended to a represent a 32-bit signed integer. All of the numeric operations in bitcoin script are limited to 32-bit integers. The result returned by a numeric operation can be treated as a signed 64-bit value, but values which overflow the 32-bit integer range may not be used in subsequent numeric operation.
On OP_PUSHDATA1, this is used for pushing arbitrary binary data onto the stack which may be used as arguments for operations such as OP_SHA256. This works by having the first byte of the sequence being OP_PUSHDATA1, the second byte being the length of the pushed data, and the remaining bytes being the content. For data more than 255 bytes, OP_PUSHDATA2 is used, where the second and third bytes of the sequence represent the length, and so on. The minimum size rule applies to all of the kinds of pushes, including that you should not try to push a single byte <=16 onto the stack using 2 bytes, but should instead use the OP_N single-byte opcodes.
add a comment |
To push data to the stack, if there is no opcode (i.e. there is no opcode for the number 210, but there are for the numbers 1-16: OP_1 - OP_16
), you need to provide a push op. Since 210 can be represented in a single byte:
OP_10 0x01 210 OP_ADD
^ ^ ^ ^
| | | | pop the top 2 items, add, and return result
| | | Push number 210 to the stack
| | The next 1 byte is pushed to the stack
| Push 10 to the stack
See https://en.bitcoin.it/wiki/Script#Constants
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "308"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f85989%2fscript-bitcoin-represent-number-16%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You only need to use OP_PUSHDATA1 if you are trying to push more than 75 bytes of data onto the stack.
For pushing smaller sized values onto the stack, you can use the opcodes 0x01 to 0x4b to indicate the number of bytes being pushed. Thus, to push a single byte of value 210 (0xD2) onto the stack, you would use the byte sequence 0x01 0xd2
.
To push a 16-bit number, such as 1000 onto the stack, you would use the sequence of bytes 0x02 0xe8 0x03
. Note that little-endian byte ordering is used. You can do similarly for a 24-bit number, or 32-bit number.
The minimum size should always be used when pushing a value - meaning the most significant byte of the pushed value should never be zero.
The value pushed will internally be zero-extended to a represent a 32-bit signed integer. All of the numeric operations in bitcoin script are limited to 32-bit integers. The result returned by a numeric operation can be treated as a signed 64-bit value, but values which overflow the 32-bit integer range may not be used in subsequent numeric operation.
On OP_PUSHDATA1, this is used for pushing arbitrary binary data onto the stack which may be used as arguments for operations such as OP_SHA256. This works by having the first byte of the sequence being OP_PUSHDATA1, the second byte being the length of the pushed data, and the remaining bytes being the content. For data more than 255 bytes, OP_PUSHDATA2 is used, where the second and third bytes of the sequence represent the length, and so on. The minimum size rule applies to all of the kinds of pushes, including that you should not try to push a single byte <=16 onto the stack using 2 bytes, but should instead use the OP_N single-byte opcodes.
add a comment |
You only need to use OP_PUSHDATA1 if you are trying to push more than 75 bytes of data onto the stack.
For pushing smaller sized values onto the stack, you can use the opcodes 0x01 to 0x4b to indicate the number of bytes being pushed. Thus, to push a single byte of value 210 (0xD2) onto the stack, you would use the byte sequence 0x01 0xd2
.
To push a 16-bit number, such as 1000 onto the stack, you would use the sequence of bytes 0x02 0xe8 0x03
. Note that little-endian byte ordering is used. You can do similarly for a 24-bit number, or 32-bit number.
The minimum size should always be used when pushing a value - meaning the most significant byte of the pushed value should never be zero.
The value pushed will internally be zero-extended to a represent a 32-bit signed integer. All of the numeric operations in bitcoin script are limited to 32-bit integers. The result returned by a numeric operation can be treated as a signed 64-bit value, but values which overflow the 32-bit integer range may not be used in subsequent numeric operation.
On OP_PUSHDATA1, this is used for pushing arbitrary binary data onto the stack which may be used as arguments for operations such as OP_SHA256. This works by having the first byte of the sequence being OP_PUSHDATA1, the second byte being the length of the pushed data, and the remaining bytes being the content. For data more than 255 bytes, OP_PUSHDATA2 is used, where the second and third bytes of the sequence represent the length, and so on. The minimum size rule applies to all of the kinds of pushes, including that you should not try to push a single byte <=16 onto the stack using 2 bytes, but should instead use the OP_N single-byte opcodes.
add a comment |
You only need to use OP_PUSHDATA1 if you are trying to push more than 75 bytes of data onto the stack.
For pushing smaller sized values onto the stack, you can use the opcodes 0x01 to 0x4b to indicate the number of bytes being pushed. Thus, to push a single byte of value 210 (0xD2) onto the stack, you would use the byte sequence 0x01 0xd2
.
To push a 16-bit number, such as 1000 onto the stack, you would use the sequence of bytes 0x02 0xe8 0x03
. Note that little-endian byte ordering is used. You can do similarly for a 24-bit number, or 32-bit number.
The minimum size should always be used when pushing a value - meaning the most significant byte of the pushed value should never be zero.
The value pushed will internally be zero-extended to a represent a 32-bit signed integer. All of the numeric operations in bitcoin script are limited to 32-bit integers. The result returned by a numeric operation can be treated as a signed 64-bit value, but values which overflow the 32-bit integer range may not be used in subsequent numeric operation.
On OP_PUSHDATA1, this is used for pushing arbitrary binary data onto the stack which may be used as arguments for operations such as OP_SHA256. This works by having the first byte of the sequence being OP_PUSHDATA1, the second byte being the length of the pushed data, and the remaining bytes being the content. For data more than 255 bytes, OP_PUSHDATA2 is used, where the second and third bytes of the sequence represent the length, and so on. The minimum size rule applies to all of the kinds of pushes, including that you should not try to push a single byte <=16 onto the stack using 2 bytes, but should instead use the OP_N single-byte opcodes.
You only need to use OP_PUSHDATA1 if you are trying to push more than 75 bytes of data onto the stack.
For pushing smaller sized values onto the stack, you can use the opcodes 0x01 to 0x4b to indicate the number of bytes being pushed. Thus, to push a single byte of value 210 (0xD2) onto the stack, you would use the byte sequence 0x01 0xd2
.
To push a 16-bit number, such as 1000 onto the stack, you would use the sequence of bytes 0x02 0xe8 0x03
. Note that little-endian byte ordering is used. You can do similarly for a 24-bit number, or 32-bit number.
The minimum size should always be used when pushing a value - meaning the most significant byte of the pushed value should never be zero.
The value pushed will internally be zero-extended to a represent a 32-bit signed integer. All of the numeric operations in bitcoin script are limited to 32-bit integers. The result returned by a numeric operation can be treated as a signed 64-bit value, but values which overflow the 32-bit integer range may not be used in subsequent numeric operation.
On OP_PUSHDATA1, this is used for pushing arbitrary binary data onto the stack which may be used as arguments for operations such as OP_SHA256. This works by having the first byte of the sequence being OP_PUSHDATA1, the second byte being the length of the pushed data, and the remaining bytes being the content. For data more than 255 bytes, OP_PUSHDATA2 is used, where the second and third bytes of the sequence represent the length, and so on. The minimum size rule applies to all of the kinds of pushes, including that you should not try to push a single byte <=16 onto the stack using 2 bytes, but should instead use the OP_N single-byte opcodes.
answered 7 hours ago
Mark HMark H
94919
94919
add a comment |
add a comment |
To push data to the stack, if there is no opcode (i.e. there is no opcode for the number 210, but there are for the numbers 1-16: OP_1 - OP_16
), you need to provide a push op. Since 210 can be represented in a single byte:
OP_10 0x01 210 OP_ADD
^ ^ ^ ^
| | | | pop the top 2 items, add, and return result
| | | Push number 210 to the stack
| | The next 1 byte is pushed to the stack
| Push 10 to the stack
See https://en.bitcoin.it/wiki/Script#Constants
add a comment |
To push data to the stack, if there is no opcode (i.e. there is no opcode for the number 210, but there are for the numbers 1-16: OP_1 - OP_16
), you need to provide a push op. Since 210 can be represented in a single byte:
OP_10 0x01 210 OP_ADD
^ ^ ^ ^
| | | | pop the top 2 items, add, and return result
| | | Push number 210 to the stack
| | The next 1 byte is pushed to the stack
| Push 10 to the stack
See https://en.bitcoin.it/wiki/Script#Constants
add a comment |
To push data to the stack, if there is no opcode (i.e. there is no opcode for the number 210, but there are for the numbers 1-16: OP_1 - OP_16
), you need to provide a push op. Since 210 can be represented in a single byte:
OP_10 0x01 210 OP_ADD
^ ^ ^ ^
| | | | pop the top 2 items, add, and return result
| | | Push number 210 to the stack
| | The next 1 byte is pushed to the stack
| Push 10 to the stack
See https://en.bitcoin.it/wiki/Script#Constants
To push data to the stack, if there is no opcode (i.e. there is no opcode for the number 210, but there are for the numbers 1-16: OP_1 - OP_16
), you need to provide a push op. Since 210 can be represented in a single byte:
OP_10 0x01 210 OP_ADD
^ ^ ^ ^
| | | | pop the top 2 items, add, and return result
| | | Push number 210 to the stack
| | The next 1 byte is pushed to the stack
| Push 10 to the stack
See https://en.bitcoin.it/wiki/Script#Constants
edited 31 mins ago
answered 7 hours ago
JBaczukJBaczuk
4,8741322
4,8741322
add a comment |
add a comment |
Thanks for contributing an answer to Bitcoin Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f85989%2fscript-bitcoin-represent-number-16%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown