@monerium/sdk
Advanced tools
Comparing version 2.6.0 to 2.6.1
# Changelog | ||
## [2.6.1](https://github.com/monerium/sdk/compare/v2.6.0...v2.6.1) (2023-09-11) | ||
### Bug Fixes | ||
* add info how to set environment ([c803cc5](https://github.com/monerium/sdk/commit/c803cc579ea11006ab845d4a4790e2a9bffae0b0)) | ||
## [2.6.0](https://github.com/monerium/sdk/compare/v2.5.2...v2.6.0) (2023-07-19) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "@monerium/sdk", | ||
"version": "2.6.0", | ||
"version": "2.6.1", | ||
"description": "Everything you need to interact with the Monerium API - an electronic money issuer.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -47,3 +47,5 @@ # @monerium/sdk | ||
const client = new MoneriumClient(); | ||
// By default, the client will use the sandbox environment. | ||
// To change to production, pass "production" as the first argument. | ||
const client = new MoneriumClient('sandbox'); | ||
``` | ||
@@ -116,6 +118,6 @@ | ||
```sh | ||
YARN_IGNORE_PATH=1 yarn link | ||
``` | ||
Use `yarn link "@monerium/sdk"` to link and test into your current project. | ||
@@ -128,5 +130,4 @@ | ||
## Publishing | ||
When changes are merged to the `main` branch that follows the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) standard, [release-please](https://github.com/googleapis/release-please) workflow creates a pull request, preparing for the next release. If kept open, the following commits will also be added to the PR. Merging that PR will create a new release, a workflow will publish it on NPM and tag it on Github. |
213570
131