Projects
Projects
This is the only section that requires user signatures - specifically, project owner signatures. This is because only project owners can list projects they own, or get details about each one. Follow this guide to generate the signers required to obtain user signatures.
Get list of projects
Typescript Core SDK
📚SDK REFERENCE
getProjects
Kotlin (JVM) Core SDK
Swift Core SDK
Golang Core SDK
Request
Get the list of projects belonging to the signer account.
const getProjects = async (ethSigner: EthSigner) => {
const response = await client.getProjects(ethSigner);
return response;
};
getProjects(ethSigner)
.then((result) => {
console.log(result);
})
.catch((e) => {
console.log(e);
});Example response
Kotlin (JVM) Core SDK
📚SDK REFERENCE
getProjects
swift core SDK
📚SDK REFERENCE
getProjects
Golang Core SDK
GetProjects
📚SDK REFERENCE
Get details about a project
Typescript Core SDK
📚SDK REFERENCE
getProject
Request
Get details about a project with a given ID:
Example response
Kotlin (JVM) Core SDK
📚SDK REFERENCE
getProject
Swift Core SDK
📚SDK REFERENCE
getProject
Golang Core SDK
SDK REFERENCE
GetProject
See GetProject example from our SDK repo.
Last updated