@okxweb3/coin-stellar
Version:
@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
39 lines (38 loc) • 1.21 kB
TypeScript
export function revokeAccountSponsorship(opts?: {
account: string;
source?: string | undefined;
}): xdr.Operation;
export function revokeTrustlineSponsorship(opts?: {
account: string;
asset: Asset | LiquidityPoolId;
source?: string | undefined;
}): xdr.Operation;
export function revokeOfferSponsorship(opts?: {
seller: string;
offerId: string;
source?: string | undefined;
}): xdr.Operation;
export function revokeDataSponsorship(opts?: {
account: string;
name: string;
source?: string | undefined;
}): xdr.Operation;
export function revokeClaimableBalanceSponsorship(opts?: {
balanceId: string;
source?: string | undefined;
}): xdr.Operation;
export function revokeLiquidityPoolSponsorship(opts?: {
liquidityPoolId: string;
source?: string | undefined;
}): xdr.Operation;
export function revokeSignerSponsorship(opts?: {
account: string;
signer: {
ed25519PublicKey?: string | undefined;
sha256Hash?: string | Buffer | undefined;
preAuthTx?: string | Buffer | undefined;
};
source?: string | undefined;
}): xdr.Operation;
import { Asset } from "../asset";
import { LiquidityPoolId } from "../liquidity_pool_id";