
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@rmrk-team/rmrk-balance-js
Advanced tools
Read balances of the chains that support the $RMRK token. The following chains are currently supported:
Read balances of the chains that support the $RMRK token. The following chains are currently supported:
yarn add | npm install @rmrk-team/rmrk-balance-js
npm install -g @rmrk-team/rmrk-balance-js
rmrk-balance -a YOUR_ADDRESS
import * as $RMRK from "@rmrk-team/rmrk-balance-js";
async function main() {
const address = "CAeCc....nK3B";
$RMRK.provideDefaults();
const [moonbalance, karurabalance] = await Promise.all([
$RMRK.moonriver.balance(address),
$RMRK.karura.balance(address),
]);
const total = $RMRK.concat(moonbalance, karurabalance);
console.log($RMRK.format(total));
}
main();
import { combineLatest, map } from "rxjs";
import * as $RMRK from "@rmrk-team/rmrk-balance-js";
const address = "CAeCc....nK3B";
// Get a stream of each RMRK balance state
const statemineBalance$ = $RMRK.statemine.balance$(address);
const moonriverBalance$ = $RMRK.moonriver.balance$(address);
const karuraBalance$ = $RMRK.karura.balance$(address);
const bifrostBalance$ = $RMRK.bifrost.balance$(address);
$RMRK.provideDefaults();
// Combine into total for verification.
const total$ = combineLatest([
statemineBalance$,
moonriverBalance$,
karuraBalance$,
bifrostBalance$,
]).pipe(
map(([statemine, moonriver, karura, bifrost]) => {
return $RMRK.concat(statemine, moonriver, karura, bifrost);
})
);
// Print total user RMRK balance
total$.subscribe((total) => {
console.log($RMRK.format(total.balance));
});
import * as $RMRK from "@rmrk-team/rmrk-balance-js";
$RMRK.moonriver.provideContext(
ApiPromise.create({
provider: new WsProvider("wss://wss.moonriver.moonbeam.network"),
})
);
$RMRK.moonriver.balance("0xfv...6c1h").then((balance) => {
console.log($RMRK.format(balance));
});
balance$
API : Error handlingimport {
catchError,
combineLatest,
map,
Observable,
of,
throwError,
} from "rxjs";
import * as $RMRK from "@rmrk-team/rmrk-balance-js";
const address = "...";
$RMRK.provideDefaults();
const addressErrorCatcher = catchError<
$RMRK.Balance,
Observable<$RMRK.FormatError>
>((error: unknown) => {
if ($RMRK.FormatError.is(error)) {
return of(error);
}
return throwError(() => error);
});
const statemineBalance$ = $RMRK.statemine
.balance$(address)
.pipe(addressErrorCatcher);
const bifrostBalance$ = $RMRK.bifrost
.balance$(address)
.pipe(addressErrorCatcher);
const total$ = combineLatest([statemineBalance$, bifrostBalance$]).pipe(
map((balances) => {
const total = balances.reduce<$RMRK.Balance>((acc, next) => {
return $RMRK.concat(
acc,
$RMRK.FormatError.is(next) ? $RMRK.empty() : next
);
}, $RMRK.empty());
return total;
})
);
total$.subscribe((total) => {
console.log($RMRK.format(total));
});
FAQs
Read balances of the chains that support the $RMRK token. The following chains are currently supported:
We found that @rmrk-team/rmrk-balance-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.