
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
aftermath-ts-sdk
Advanced tools
The Aftermath SDK provides easy access to Aftermath Finance's protocols on the Sui blockchain. Please note that not all of our protocols are on Testnet, but all of them are Mainnet.
npm i aftermath-ts-sdk
For most integrations, use the Aftermath SDK for simplified access:
const afSdk = new Aftermath("MAINNET"); // "MAINNET" | "TESTNET"
await afSdk.init(); // initialize provider
// Access protocols
const router = afSdk.Router();
const pools = afSdk.Pools();
const staking = afSdk.Staking();
const farms = afSdk.Farms();
const dca = afSdk.Dca();
For complex transaction construction, use AftermathApi for direct control:
const afSdk = new Aftermath("MAINNET");
const addresses = afSdk.getAddresses();
const afApi = new AftermathApi(
new SuiClient({
transport: new SuiHTTPTransport({
url: "https://fullnode.mainnet.sui.io",
}),
}),
addresses // Configuration addresses
);
// Access protocol APIs
const poolsApi = afApi.Pools();
const stakingApi = afApi.Staking();
const farmsApi = afApi.Farms();
Default rate limit: 1000 requests per 10 seconds
For higher limits, contact us via:
FAQs
Aftermath TypeScript SDK
We found that aftermath-ts-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.