Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aptos-move/framework/aptos-framework/doc/coin.md
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ The TransferRefReceipt does not match the TransferRef to be returned.



<pre><code><b>const</b> <a href="coin.md#0x1_coin_MAX_COIN_SYMBOL_LENGTH">MAX_COIN_SYMBOL_LENGTH</a>: u64 = 10;
<pre><code><b>const</b> <a href="coin.md#0x1_coin_MAX_COIN_SYMBOL_LENGTH">MAX_COIN_SYMBOL_LENGTH</a>: u64 = 32;
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion aptos-move/framework/aptos-framework/doc/fungible_asset.md
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ Provided withdraw function type doesn't meet the signature requirement.



<pre><code><b>const</b> <a href="fungible_asset.md#0x1_fungible_asset_MAX_SYMBOL_LENGTH">MAX_SYMBOL_LENGTH</a>: u64 = 10;
<pre><code><b>const</b> <a href="fungible_asset.md#0x1_fungible_asset_MAX_SYMBOL_LENGTH">MAX_SYMBOL_LENGTH</a>: u64 = 32;
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion aptos-move/framework/aptos-framework/sources/coin.move
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module aptos_framework::coin {
//

const MAX_COIN_NAME_LENGTH: u64 = 32;
const MAX_COIN_SYMBOL_LENGTH: u64 = 10;
const MAX_COIN_SYMBOL_LENGTH: u64 = 32;

/// Core data structures

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ module aptos_framework::fungible_asset {
//

const MAX_NAME_LENGTH: u64 = 32;
const MAX_SYMBOL_LENGTH: u64 = 10;
const MAX_SYMBOL_LENGTH: u64 = 32;
const MAX_DECIMALS: u8 = 32;
const MAX_URI_LENGTH: u64 = 512;

Expand Down