GoPlus Unveils Open-Source SDKs in Java, Python & PHP and Enhanced Documentation

GoPlus Security
3 min readJul 13, 2023

--

In the ever-evolving landscape of Web3, security remains a paramount concern. With daily queries exceeding 10 million and a rapidly growing developer base, GoPlus Security is set to scale new heights.

Recognizing the diverse technology stack developers employ, GoPlus had already made available SDKs in Golang and JavaScript. Building on this foundation, GoPlus has now broadened its support by releasing new SDKs for Java, Python, and PHP. This expansion means an even greater number of builders and developer advocates across different programming paradigms can now leverage GoPlus Security’s robust suite of APIs, tools, and data. With these additions, GoPlus is making a strong statement in its commitment to fortify Web3 security.

GoPlus Security’s founder, Mike, is excited to drive GoPlus’s open-source efforts: “By launching more elegant, easy-to-use SDKs and optimizing developer documentation, we are empowering builders to contribute to and leverage the security standards that the decentralized ecosystem deserves. If you are passionate about user security in Web3, check out GoPlus!”

Elevating Development Standards with New SDKs

GoPlus Security has recently expanded its suite of SDKs to include Java, Python, and PHP, enhancing the capabilities of developers in integrating top-notch security features into web3 applications.

Java

Prerequisites: JDK >= 1.8

Installation:

<dependency>
<groupId>io.gopluslabs</groupId>
<artifactId>goplus-sdk-java</artifactId>
<version>0.1.2</version>
</dependency>

Code Sample:

public void tokenSecurity() throws ApiException {
TokenSecurityRequest request = TokenSecurityRequest.of(
"1",
"0x408e41876cccdc0f92210600ef50372656052a38",
1000
);
System.out.println(GoPlusClient.tokenSecurity(request));
}

GitHub: GoPlus Java SDK

Python

Installation:

pip install goplus

Code Sample:

from goplus.address import Address

Address(access_token=None).address_security(address="0xc8b759860149542a98a3eb57c14aadf59d6d89b9")

GitHub: GoPlus Python SDK

PHP

Installation:

composer require goplus/php-sdk

Code Sample:

use Goplus\\Api\\Address;

(new Address())->addressSecurity("0xc8b759860149542a98a3eb57c14aadf59d6d89b9");

GitHub: GoPlus PHP SDK

Documentation Reimagined: Clarity and Accessibility Combined

GoPlus Security has also overhauled its developer documentation. The focus of this revamp is to provide clarity, comprehensiveness, and accessibility. The documentation now includes multilingual code examples and is structured for easy navigation. While still a work in progress, significant strides have been made. GoPlus welcomes feedback from developers to continually refine the documentation. Visit the new documentation at docs.gopluslabs.io.

GoPlus Security’s brand new documentation hub, now accessible at https://docs.gopluslabs.io/!

To better understand how to use GoPlus Security SDKs, you can refer to the code examples provided in the API Overview for the respective programming languages. For instance, if you wish to use the Go SDK, navigate to the API reference page and select “Go” under the “LANGUAGE” tab located on the right. There, you will find both installation instructions and sample code.

Learn more about GoPlus Security and be a part of the #SaferWeb3 journey.

--

--

GoPlus Security
GoPlus Security

Written by GoPlus Security

Empowering a #SaferWeb3 with user-driven, open access security solutions. Championing user education for a fortified front against adversaries.

No responses yet