We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c518b51 commit 451901cCopy full SHA for 451901c
contracts/PiStable.sol
@@ -7,7 +7,7 @@ import "@openzeppelin/contracts/access/Ownable.sol";
7
contract PiStable is ERC20, Ownable {
8
// The value of the stablecoin in USD (pegged to $314.159)
9
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
+ uint256 public constant TOTAL_SUPPLY = 100000000000 * (10 ** decimals()); // 100 billion tokens
11
12
// Event to emit when the value is updated
13
event ValueUpdated(uint256 newValue);
0 commit comments