| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- constant "Mint" {
- EcFixedPointShort VALUE_COMMIT_VALUE,
- EcFixedPoint VALUE_COMMIT_RANDOM,
- EcFixedPointBase NULLIFIER_K,
- }
- contract "Mint" {
- Base pub_x,
- Base pub_y,
- Base value,
- Base token,
- Base serial,
- Base coin_blind,
- Scalar value_blind,
- Scalar token_blind,
- }
- circuit "Mint" {
- # Poseidon hash of the coin
- C = poseidon_hash(pub_x, pub_y, value, token, serial, coin_blind);
- constrain_instance(C);
- # Pedersen commitment for coin's value
- vcv = ec_mul_short(value, VALUE_COMMIT_VALUE);
- vcr = ec_mul(value_blind, VALUE_COMMIT_RANDOM);
- value_commit = ec_add(vcv, vcr);
- # Since the value commit is a curve point, we fetch its coordinates
- # and constrain them:
- value_commit_x = ec_get_x(value_commit);
- value_commit_y = ec_get_y(value_commit);
- constrain_instance(value_commit_x);
- constrain_instance(value_commit_y);
- # Pedersen commitment for coin's token ID
- tcv = ec_mul_base(token, NULLIFIER_K);
- tcr = ec_mul(token_blind, VALUE_COMMIT_RANDOM);
- token_commit = ec_add(tcv, tcr);
- # Since token_commit is also a curve point, we'll do the same
- # coordinate dance:
- token_commit_x = ec_get_x(token_commit);
- token_commit_y = ec_get_y(token_commit);
- constrain_instance(token_commit_x);
- constrain_instance(token_commit_y);
- # At this point we've enforced all of our public inputs.
- }
|