radixdlt-scrypto icon indicating copy to clipboard operation
radixdlt-scrypto copied to clipboard

Scrypto is the asset-oriented smart contract programming language of the Radix network. It allows you to quickly build secure and composable dApps.

Results 73 radixdlt-scrypto issues
Sort by recently updated
recently updated
newest added

Separated `Decimal` -> decimal.rs and `PreciseDecimal` -> precise_decimal.rs Now no macro is used to construct these types as requested by Josh, because it slowed down the dev environment. This branch...

This PR introduces the execution trace module, which is used to trace some specific events that happen inside the engine and extract the information out into the receipt. Initially, it's...

Fixes conversion problem arising from using BigInt as a tool of conversion, that used float logic which was rejected by radix engine. All the `From `and `TryFrom `methods, and all...

This PR adds support for the safe math types (`U8`-`U512` and `I8`-`I512`) and `PreciseDecimal` to resim's manifest builder and to the transaction manifest. Here is some example syntax for what...

Changes: - Renamed flag `with_type` to `with_static_info` * Static info includes type IDs and static sizes * Although, in the future, we may introduce dynamic type ID to support `Any`...

The square root of a Decimal. Uses a standard Babylonian method. Referring to [this](https://docs.rs/rust_decimal/latest/src/rust_decimal/maths.rs.html#328) implementation. Related to #431

Continuing the discussion started in #406 @0xOmarA There are a few different related ideas. I'll try to restate much of what I said in the other PR but maybe a...

enhancement

This feature adds two new functions to the Resource Manager for Non-Fungible Tokens: `shroud` and `is_shrouded`. The `shroud` feature prevents Components from accessing the data of an NFT within a...

This is an implementation of the ideas I put forward in #285. The high level summary: Caller's can optionally use an AuthZone which will be visible to Callee's. The callee's...

I would really like to see the `Proof`s from the caller's `AuthZone` which matched an `AccessRule` on a method call be available at the callee method as an alternative to...