0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Flow Fees

Last updated at Posted at 2024-12-26

Previous << Service Account
Next >> Staking Table

Flow Fees Contract

FlowFees

FlowFeesコントラクトは、徴収されたFlowフィーがすべて集められる場所です。

Source: FlowFees.cdc

Network Contract Address
Emulator 0xe5a8b7f23e8b548f
Cadence Testing Framework 0x0000000000000004
Testnet 0x912d5440f7e3769e
Mainnet 0xf919ee77447b7497

Events

FlowFeesの重要なイベントは次のとおりです。

/* Event that is emitted when tokens are deposited to the fee vault */
access(all) event TokensDeposited(amount: UFix64)

/* Event that is emitted when tokens are withdrawn from the fee vault */
access(all) event TokensWithdrawn(amount: UFix64)

/* Event that is emitted when fees are deducted */
access(all) event FeesDeducted(amount: UFix64, inclusionEffort: UFix64, executionEffort: UFix64)

/* Event that is emitted when fee parameters change */
access(all) event FeeParametersChanged(surgeFactor: UFix64, inclusionEffortCost: UFix64, executionEffortCost: UFix64)

FlowStorageFees

FlowStorageFeesコントラクトは、ストレージ料金のパラメータとユーティリティメソッドを定義します。

Source: FlowStorageFees.cdc

Network Contract Address
Emulator 0xf8d6e0586b0a20c7
Cadence Testing Framework 0x0000000000000001
Testnet 0x8c5303eaa26202d6
Mainnet 0xe467b9dd11fa00df

Events

FlowStorageFeesの重要なイベントは次のとおりです。

/* Emitted when the amount of storage capacity an account has per reserved Flow token changes */
access(all) event StorageMegaBytesPerReservedFLOWChanged(_ storageMegaBytesPerReservedFLOW: UFix64)

/* Emitted when the minimum amount of Flow tokens that an account needs to have reserved for storage capacity changes. */
access(all) event MinimumStorageReservationChanged(_ minimumStorageReservation: UFix64)

Last updated on Dec 17, 2024 by j pimmel

翻訳元


Previous << Service Account

Flow BlockchainのCadence version1.0ドキュメント (Flow Fees)

Next >> Staking Table

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?