
Research
/Security News
11 Malicious NuGet Tools Pose as Game Cheats to Drop a Windows Host-Surveillance Payload
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.
@daml/react
Advanced tools
React framework for Daml applications
Comprehensive documentation for @daml/react can be found here.
The best way to get you started quickly is to use the create-daml-app template:
daml new --template=create-daml-app my-project-name
and to read the Quickstart Guide.
To get an overview on how to build a Daml application, please read the application architecture overview.
To use @daml/react your application needs to be connected to the JSON API of a Daml ledger. If
your JSON API server for the ledger runs on the local host on port 7575, set
"proxy": "http://localhost:7575"
in your package.json and wrap your main component in the DamlLedger component of @daml/react
import DamlLedger from @daml/react
const App: React.FC = () => {
<DamlLedger
token: <your authentication token>
httpBaseUrl?: <optional http base url>
wsBaseUrl?: <optional websocket base url>
reconnectThreshold?: <optional delay in ms>
party: <the logged in party>
>
<MainScreen />
</DamlLedger>
};
Now you can use the following React hooks to interact with a Daml ledger:
usePartyuseParty returns the party, for which commands are currently send to the ledger.
const party = useParty();
useLedgeruseLedger returns an instance of the Ledger class of @daml/ledger to interact with the Daml
ledger.
const ledger = useLedger();
const newContract = await ledger.create(ContractTemplate, arguments);
const archiveEvent = await Ledger.archive(ContractTemplate, contractId);
const [choiceReturnValue, events] = await ledger.exercise(ContractChoice, contractId, choiceArguments);
useQueryuseQuery returns the contracts matching a given query. The query matches for a given contract
template and specified field values of the contracts of that template.
const {contracts, loading} = useQuery(ContractTemplate, () => {field: value}, [dependency1,
dependency2, ...]);
If the query is omitted, all visible contracts of the given template are returned.
const {contracts, loading} = useQuery(ContractTemplate);
useReloaduseReload returns a function to reload the results of queries.
const reload = useReload();
const onClick = reload;
useStreamQueryDeprecated: prefer
useStreamQueries
useStreamQuery has the same signature as useQuery, but it constantly refreshes the results.
const {contracts, loading} = useStreamQuery(ContractTemplate, () => {field: value}, [dependency1,
dependency2, ...]);
If the query is omitted, all visible contracts of the given template are returned.
const {contracts, loading} = useStreamQuery(ContractTemplate);
useStreamQueriesuseStreamQueries is similar to useQuery, except that:
useQuery, if no factory function is provided, or if the provided
function returns an empty array, the set will contain all contracts of that
template.const {contracts, loading} = useStreamQueries(ContractTemplate,
() => [{field: value}, ...],
[dependency1, dependency2, ...]);
You can additionally pass in an extra function to handle WebSocket connection failures.
useFetchByKeyuseFetchByKey returns the unique contract of a given template and a given contract key.
const {contract, loading} = useFetchByKey(ContractTemplate, () => key, [dependency1, dependency2, ...]);
useStreamFetchByKeyDeprecated: prefer
useStreamFetchByKeys
useStreamFetchByKey has the same signature as useFetchByKey, but it constantly keeps refreshing
the result.
const {contract, loading} = useStreamFetchByKey(ContractTemplate, () => key, [dependency1, dependency2, ...]);
useStreamFetchByKeysuseStreamFetchByKeys takes a template and a factory that returns a list of
keys, and returns a list of contracts that correspond to those keys (or null if
no contract matches the corresponding key). This hook will keep an open
WebSocket connection and listen for any change to the corresponding contracts.
If the factory function returns an empty array, the hook will similarly produce an empty array of contracts.
const {contracts, loading} = useStreamFetchByKeys(ContractTemplate,
() => [key1, key2, ...],
[dependency1, dependency2, ...]);
You can additionally pass in an extra function to handle WebSocket connection failures.
In order to interact as multiple parties or to connect to several ledgers, one needs to create an extra
DamlLedger contexts specific to your requirement.
createLedgerContextcreateLedgerContext returns another DamlLedger context and associated hooks (useParty, useLedger ... etc)
that will look up their connection within that returned context.
https://github.com/digital-asset/daml.
FAQs
React framework to interact with a Daml ledger
We found that @daml/react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.

Research
/Security News
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.