UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

13 lines (10 loc) 338 B
import { CallBuilder } from './call_builder.js'; class FriendbotBuilder extends CallBuilder { constructor(serverUrl, httpClient, address) { super(serverUrl, httpClient); this.setPath("friendbot"); this.url.searchParams.set("addr", address); } } export { FriendbotBuilder }; //# sourceMappingURL=friendbot_builder.js.map