Ramestta
  • 🤝Welcome To Ramestta
    • Overview
    • Ramestta Pos Chain
    • Building on Ramestta
    • Architecture
      • Heimdall
      • Bor
      • Contracts
        • Genesis contracts
        • Delegation via validator shares
        • Staking manager
        • Burns
    • Bridge
      • Core
        • Polygon To Ramestta
        • Ramestta To Polygon
      • Plasma
        • Deposit
        • Withdraw
      • PoS
        • Deposit
        • Withdraw
      • PoS vs Plasma Bridge
    • Node Setup
      • Sentry Node
        • Mainnet
        • Testnet
      • Validator Node
        • Mainnet
        • Testnet
      • Heimdall and Bor Snapshots
    • Security models
    • Staking - Validators and Delegators
    • Validate
      • Validator Responsibilities
      • Maintaining your validator node
      • How to Become a Validator(Testnet)
    • Delegate
      • FAQ's
    • Deploy smart contracts
    • MetaMask Installation & Set up Web3 RPC URL
  • 🪙Blockchain Fundamental
    • Introduction
      • What is a Blockchain?
      • Types of Blockchain
      • Consensus Mechanism
    • Bitcoin
    • Ethereum
      • Accounts
      • Solidity
      • Proof of Stake
      • Transactions
      • Gas
    • Layer2 Blockchain
      • Side Chain
      • Rollup
  • ⚙️Ramestta SDK
    • Rama.js
      • Plasma
        • RAMA20
        • RAMA721
        • Common Methods
      • POS
        • RAMA20
        • RAMA721
        • RAMA1155
        • Common Methods
      • setProofApi
Powered by GitBook
On this page
  1. Blockchain Fundamental
  2. Ethereum

Transactions

The term transaction refers to the transfer of funds between two accounts. The payload can be binary data or ether.

Blockchain transactions are transfers of value. Transactions are when one person gives another a certain amount of cryptocurrency they own.

For crypto transactions on the blockchain, you need a wallet, a program that keeps track of your crypto and enables you to transact with it, and which is linked to the blockchain. An individual wallet is protected by a special cryptographic method based on a pair of unique but connected keys: a private key and a public key.

For a user to receive funds, a public key (also known as an address) must be shared. Contrary to public keys, private keys must be kept secret, just like the pin number on your bank card, since they authorize the spending of funds.

By using their wallet, users can authorize, sign, and transfer value to new owners. After broadcasting, the transaction is added to the blockchain.

A transaction consists of three main components:

The term transaction refers to the transfer of funds between two accounts. The payload can be binary data or ether.

Blockchain transactions are transfers of value. Transactions are when one person gives another a certain amount of cryptocurrency they own.

For crypto transactions on the blockchain, you need a wallet, a program that keeps track of your crypto and enables you to transact with it, and which is linked to the blockchain. An individual wallet is protected by a special cryptographic method based on a pair of unique but connected keys: a private key and a public key.

For a user to receive funds, a public key (also known as an address) must be shared. Contrary to public keys, private keys must be kept secret, just like the pin number on your bank card, since they authorize the spending of funds.

By using their wallet, users can authorize, sign, and transfer value to new owners. After broadcasting, the transaction is added to the blockchain.

A transaction consists of three main components:

  • The input: Alice’s private coin address, where she is currently holding the coins she wants to spend.

  • The output: Bob’s public key or coin address.

  • Amounts: the amount of coins Alice wants to spend.

PreviousProof of StakeNextGas

Last updated 1 year ago

🪙