Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
CAIP standard utils
import { ChainId } from "caip";
const chainId = new ChainId("eip155:1");
// OR
const chainId = new ChainId({ namespace: "eip155", reference: "1" });
// THEN
chainId.toString();
// "eip155:1"
chainId.toJson();
// { namespace: "eip155", reference: "1" }
import { ChainId } from "caip";
ChainId.parse("eip155:1");
// { namespace: "eip155", reference: "1" }
// AND
ChainId.format({ namespace: "eip155", reference: "1" });
// "eip155:1"
import { AccountId } from "caip";
const accountId = new AccountId(
"eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
);
// OR
const accountId = new AccountId({
chainId: { namespace: "eip155", reference: "1" },
address: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
});
// ALSO
const accountId = new AccountId({
chainId: "eip155:1",
address: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
});
// THEN
accountId.toString();
// "eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
accountId.toJson();
// { address: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb", chainId: { namespace: "eip155", reference: "1" } }
import { AccountId } from "caip";
AccountId.parse("eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb");
// { address: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb", chainId: { namespace: "eip155", reference: "1" } }
// AND
AccountId.format({
chainId: { namespace: "eip155", reference: "1" },
address: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
});
//"eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
// OR
AccountId.format({
chainId: "eip155:1",
address: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
});
//"eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
import { AssetId } from "caip";
const assetId = new AssetId(
"eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb/1"
);
// OR
const assetId = new AssetId({
chainId: { namespace: "eip155", reference: "1" },
assetName: {
namespace: "erc721",
reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
},
tokenId: "1",
});
// ALSO
const assetId = new AssetId({
chainId: "eip155:1",
address: "erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
tokenId: "1",
});
// THEN
assetId.toString();
// "eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb/1"
assetId.toJson();
// {
// chainId: { namespace: "eip155", reference: "1" },
// assetName: { namespace: "erc721", reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb" },
// tokenId: "1",
// }
import { AssetId } from "caip";
AssetId.parse("eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb/1");
// {
// chainId: { namespace: "eip155", reference: "1" },
// assetName: { namespace: "erc721", reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb" },
// tokenId: "1",
// }
// AND
AssetId.format({
chainId: { namespace: "eip155", reference: "1" },
assetName: {
namespace: "erc721",
reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
},
tokenId: "1",
});
// "eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb/1"
// OR
AssetId.format({
chainId: "eip155:1",
address: "erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
tokenId: "1",
});
// "eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb/1"
import { AssetType } from "caip";
const assetType = new AssetType(
"eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
);
// OR
const assetType = new AssetType({
chainId: { namespace: "eip155", reference: "1" },
assetName: {
namespace: "erc721",
reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
},
});
// ALSO
const assetType = new AssetType({
chainId: "eip155:1",
address: "erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
});
// THEN
assetType.toString();
// "eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
assetType.toJson();
// {
// chainId: { namespace: "eip155", reference: "1" },
// assetName: { namespace: "erc721", reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb" },
// }
import { AssetType } from "caip";
AssetType.parse("eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb/1");
// {
// chainId: { namespace: "eip155", reference: "1" },
// assetName: { namespace: "erc721", reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb" },
// }
// AND
AssetType.format({
chainId: { namespace: "eip155", reference: "1" },
assetName: {
namespace: "erc721",
reference: "0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
},
});
// "eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
// OR
AssetType.format({
chainId: "eip155:1",
address: "erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb",
});
// "eip155:1/erc721:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb"
FAQs
CAIP standard utils
The npm package caip receives a total of 1,371 weekly downloads. As such, caip popularity was classified as popular.
We found that caip demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.