Browse Source

New translations values.md (Spanish)

translation_master
Jonathon Hammond 3 years ago
parent
commit
36654f295c
  1. 4
      src/pages/es/write-smart-contracts/values.md

4
src/pages/es/write-smart-contracts/values.md

@ -96,10 +96,10 @@ Clarity supports both integers and unsigned integers.
```typescript
const i: IntCV = intCV(-10);
// { type: ClarityType.Int, value: } }
// { type: ClarityType.Int, value: BN { ... } }
const u: UIntCV = uintCV(10);
// { type: ClarityType.UInt, value: } }
// { type: ClarityType.UInt, value: BN { ... } }
```
Clarity value ints store their underlying data as `BigNum` values from the [bn.js](https://github.com/indutny/bn.js/) library.

Loading…
Cancel
Save