Skip to content

Commit 451901c

Browse files
authored
Update PiStable.sol
1 parent c518b51 commit 451901c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/PiStable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "@openzeppelin/contracts/access/Ownable.sol";
77
contract PiStable is ERC20, Ownable {
88
// The value of the stablecoin in USD (pegged to $314.159)
99
uint256 public constant STABLE_COIN_VALUE = 314159000000000000000; // 314.159 in wei (1e18 = 1 token)
10-
uint256 public constant TOTAL_SUPPLY = 200000000000 * (10 ** decimals()); // 200 billion tokens
10+
uint256 public constant TOTAL_SUPPLY = 100000000000 * (10 ** decimals()); // 100 billion tokens
1111

1212
// Event to emit when the value is updated
1313
event ValueUpdated(uint256 newValue);

0 commit comments

Comments
 (0)