![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
interstellar-network
Advanced tools
The interstellar-network module provides communication layer between Interstellar application and Stellar network.
interstellar-network
The interstellar-network
module is part of the Interstellar Module System.
It provides a communication layer between Interstellar applications and the Stellar network.
Quick start to developing in the Interstellar eco-system:
- Read
Getting started
doc.- Install
interstellar-workspace
.- Contribute to our open-source modules or develop your own.
{
"horizon": {
"secure": true,
"hostname": "horizon-testnet.stellar.org",
"port": 443
}
}
Read more about modules configuration.
None
None
interstellar-network.AccountObservable
serviceinterstellar-network.AccountObservable
provides a shared space for accounts state and events. Let's say there are 2 widgets displaying a current balance. Without interstellar-network.AccountObservable
each of them would have to make it's own requests to horizon server in order to get balance data. This service saves a recently fetched account information in the internal cache so every widget can get the latest information about the account without having to make requests to horizon.
getBalances(address)
methodReturns the cached balance data for address
. If there is no cache data will be requested from horizon and then returned.
AccountObservable.getBalances(address)
.then(balances => {
console.log(balances);
});
Returns a Promise
.
getTransactions(address)
methodReturns the transactions list for address
. This data will not be cached so it will be requested from horizon every time it's used.
AccountObservable.getTransactions(address)
.then(transactions => {
console.log(transactions);
});
Returns a Promise
.
registerBalanceChangeListener(address, callback)
methodRegisters listener for balance changes. callback
function will be called every time there is a change in one or more user balances.
AccountObservable.registerBalanceChangeListener(address, balances => {
console.log(balances);
});
registerTransactionListener(address, callback)
methodRegisters listener for new transactions. callback
function will be called every time there is a new transaction in address
.
AccountObservable.registerTransactionListener(address, transaction => {
console.log(transaction);
});
interstellar-network.Server
serviceinterstellar-network.Server
is a stellar-sdk Server object created using application configuration. For more information please read stellar-sdk documentation.
npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease]
npm publish
npm >=2.13.0 required. Read more about npm version.
FAQs
The interstellar-network module provides communication layer between Interstellar application and Stellar network.
The npm package interstellar-network receives a total of 7 weekly downloads. As such, interstellar-network popularity was classified as not popular.
We found that interstellar-network demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.