Statement
No wallet connected- PRINT held
- —
- Pending
- —
- Received
- —
// pre-launch Contracts are not deployed yet. The press below runs a simulation on live Chainlink prices from Ink.
Real stocks, printed to every wallet that holds PRINT.
Next print in --:--
Last prints, newest first.
Simplified from Printer.sol. Anyone can call it, nobody can point it anywhere else, and a lot that the market prices badly simply waits.
function print() external {
hook.collect(); // the toll: 1% to the operator, 4% here
require(now >= lastPrint + 5 minutes);
require(balance >= 0.1 ether); // less than a lot waits for more trades
uint minOut = 0.1 ether * ethUsd / nvdaUsd * 97 / 100;
// priced by Chainlink, not by the pool
uint got = pool.swap(WETH, wNVDAx, 0.1 ether);
require(got >= minOut); // a pushed pool cannot fill the lot
PRINT.notify(got); // released to every holder over 5 minutes
}