Skip to content

Commit

Permalink
docs(README): fix names of "set" methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhender committed Apr 7, 2022
1 parent 45db11a commit 37126ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
7 changes: 2 additions & 5 deletions README.md
Expand Up @@ -55,11 +55,8 @@ This is achieved by accessing module initializer from initialization function of
```js
const {
signerService,
stakingService,
messagingService,
connectToCacheServer,
isSessionActive,
storeSession
} = await initWithPrivateKeySigner(privateKey, rpcUrl)
```

Expand All @@ -75,12 +72,12 @@ setChainConfig(1111, {
rpcUrl: 'http://some-rpc.com',
})

setMessagingOptions(1111, {
setMessagingConfig(1111, {
messagingMethod: MessagingMethod.Nats,
natsServerUrl: 'https://some-exchange-server.com'
})

setCacheClientOptions(1111, {
setCacheConfig(1111, {
url: 'https://some-cache-server.com/',
cacheServerSupportsAuth: true,
})
Expand Down
7 changes: 2 additions & 5 deletions docs/api/README.md
Expand Up @@ -55,11 +55,8 @@ This is achieved by accessing module initializer from initialization function of
```js
const {
signerService,
stakingService,
messagingService,
connectToCacheServer,
isSessionActive,
storeSession
} = await initWithPrivateKeySigner(privateKey, rpcUrl)
```

Expand All @@ -75,12 +72,12 @@ setChainConfig(1111, {
rpcUrl: 'http://some-rpc.com',
})

setMessagingOptions(1111, {
setMessagingConfig(1111, {
messagingMethod: MessagingMethod.Nats,
natsServerUrl: 'https://some-exchange-server.com'
})

setCacheClientOptions(1111, {
setCacheConfig(1111, {
url: 'https://some-cache-server.com/',
cacheServerSupportsAuth: true,
})
Expand Down
2 changes: 1 addition & 1 deletion docs/api/classes/ClaimsService.md
Expand Up @@ -266,7 +266,7 @@ ___

getUserClaims

**`description`** get user claims
**`description`** get published offchain claims

#### Parameters

Expand Down

0 comments on commit 37126ae

Please sign in to comment.