
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@okxweb3/coin-stellar
Advanced tools
@ok/coin-stellar is a Stellar SDK for building Web3 wallets and applications. It supports Stellar and PI blockchains, enabling private key management, address generation, transaction signing, trustline creation, and asset transfers
Stellar SDK is used to interact with the Stellar blockchain and PI blockchains, it contains various functions can be used to web3 wallet.
To obtain the latest version, simply require the project using npm :
npm install @okxweb3/coin-stellar
import { StellarWallet } from "@okxweb3/coin-stellar"
let wallet = new StellarWallet();
// get random key
let randomPrivateKey = await wallet.getRandomPrivateKey();
import { StellarWallet } from "@okxweb3/coin-stellar"
let wallet = new StellarWallet();
let mnemonic = "stool trumpet fame umbrella bench provide battle toward story fruit lock view"
let param = {
mnemonic: mnemonic,
hdPath: "m/44'/148'/0'" //stellar,if PI, please use m/44'/314159'/0' and PIWallet
};
let privateKey = await wallet.getDerivedPrivateKey(param)
import { StellarWallet } from "@okxweb3/coin-stellar"
let wallet = new StellarWallet();
let params = {
privateKey: 'SAGYHCI53Z3QG2TGYUIF24BJEKTZSPSQPQ7OW2WULSSTZXJ426THA4GW'
}
let newAddress = await wallet.getNewAddress(params);
import { StellarWallet } from "@okxweb3/coin-stellar"
let wallet = new StellarWallet();
let params = {
address: "GBL7IXVKK7UKX6YZB5AA3QB5H47SFNM6RNSXT6WNWH6R36NFYHDR5OBA"
};
let valid = await wallet.validAddress({address:addr.address});
Use the signTransaction function to get the signed tx to broadcast
createAccount let sourceSecret ="SCPVS2UMH4EPBAZPEQXGSC7OMNJTTS5STD7EIDL4OEJW2HYHES7DNUJ4";
let sourceAddress = await wallet.getNewAddress({privateKey:sourceSecret});
console.log(sourceAddress)
let addr = await wallet.getNewAddress({privateKey:"SAGYHCI53Z3QG2TGYUIF24BJEKTZSPSQPQ7OW2WULSSTZXJ426THA4GW"});
addr = await wallet.getNewAddress({privateKey:"SACXX2WZKGFELPK6ZFXUYMWSABVVTPBDUFUB44FEBNG32J45HBSJ5JPW"});
console.log(addr)
let sourceAccount = new Account(sourceAddress.address,"2077119198789642");
let op = Operation.createAccount({
destination: addr.address,
startingBalance: "1",
});
let tx = await wallet.signTransaction({
privateKey:sourceSecret,
data:{
source: sourceAccount,
fee: "100",
networkPassphrase: Networks.TESTNET,
operations:[op]
},
});
console.log(tx)
transfer native assetlet wallet = new StellarWallet();
let sourceSecret ="SCPVS2UMH4EPBAZPEQXGSC7OMNJTTS5STD7EIDL4OEJW2HYHES7DNUJ4";
let sourceAddress = await wallet.getNewAddress({privateKey:sourceSecret});
console.log(sourceAddress)
let addr = await wallet.getNewAddress({privateKey:"SAGYHCI53Z3QG2TGYUIF24BJEKTZSPSQPQ7OW2WULSSTZXJ426THA4GW"});
console.log(addr)
let sourceAccount = new Account(sourceAddress.address,"2077119198789635");
let op = Operation.payment({
destination: addr.address,
asset: Asset.native(),
amount: "1",
});
let tx = await wallet.signTransaction({
privateKey:sourceSecret,
data:{
source: sourceAccount,
fee: "100",
networkPassphrase: Networks.TESTNET,
operations:[op],
},
});
create truslinelet wallet = new StellarWallet();
let sourceSecret ="SCPVS2UMH4EPBAZPEQXGSC7OMNJTTS5STD7EIDL4OEJW2HYHES7DNUJ4";
let sourceAddress = await wallet.getNewAddress({privateKey:sourceSecret});
//GBABZSCZ4NRIXUXDPQLLX5PUOEUUTHT5KFF4DS447GRJXDBWA32ZOJFW
console.log("sourceAddress:",sourceAddress)
let userSecret = "SAGYHCI53Z3QG2TGYUIF24BJEKTZSPSQPQ7OW2WULSSTZXJ426THA4GW";
let addr = await wallet.getNewAddress({privateKey:userSecret});
//GBL7IXVKK7UKX6YZB5AA3QB5H47SFNM6RNSXT6WNWH6R36NFYHDR5OBA
console.log("addr:",addr)
let userAccount = new Account(addr.address,"2085700543447040");
let sourceAccount = new Account(sourceAddress.address,"2077119198789637");
const asset = new Asset('USD', sourceAddress.address);
// Create trustline
let op = Operation.changeTrust({
asset: asset,
limit: "1000",
});
let tx = await wallet.signTransaction({
privateKey:userSecret,
data:{
source: userAccount,
fee: "100",
networkPassphrase: Networks.TESTNET,
operations:[op],
memo:Memo.id("1"),
},
});
console.log("tx:", tx);
transfer non-native assetlet wallet = new StellarWallet();
let sourceSecret ="SCPVS2UMH4EPBAZPEQXGSC7OMNJTTS5STD7EIDL4OEJW2HYHES7DNUJ4";
let sourceAddress = await wallet.getNewAddress({privateKey:sourceSecret});
let userSecret = "SAGYHCI53Z3QG2TGYUIF24BJEKTZSPSQPQ7OW2WULSSTZXJ426THA4GW";
let addr = await wallet.getNewAddress({privateKey:userSecret});
let userAccount = new Account(addr.address,"2085700543447040");
let sourceAccount = new Account(sourceAddress.address,"2077119198789637");
const asset = new Asset('USD', sourceAddress.address);
let op = Operation.payment({
destination:addr.address,
asset: asset,
amount: "100",
});
let tx = await wallet.signTransaction({
privateKey:sourceSecret,
data:{
source: sourceAccount,
fee: "100",
networkPassphrase: Networks.TESTNET,
operations:[op],
memo:Memo.id("1"),
},
});
export type StellarTxParam = {
source: string, // sourceAccount address
operations: [], // createAccount, Payment, PathPayment...
fee: string; //basefee,1000000
memo?: Memo;
networkPassphrase?: string;
timebounds?: { //time limit,
minTime?: Date | number | string;
maxTime?: Date | number | string;
};
ledgerbounds?: {
minLedger?: number;
maxLedger?: number;
};
minAccountSequence?: string;
minAccountSequenceAge?: number;
minAccountSequenceLedgerGap?: number;
extraSigners?: string[];
}
FAQs
@ok/coin-stellar is a Stellar SDK for building Web3 wallets and applications. It supports Stellar and PI blockchains, enabling private key management, address generation, transaction signing, trustline creation, and asset transfers
The npm package @okxweb3/coin-stellar receives a total of 12 weekly downloads. As such, @okxweb3/coin-stellar popularity was classified as not popular.
We found that @okxweb3/coin-stellar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.