@d-protocol/d-payments

Commit your changes using conventional commits eg. git commit -m "feat: added wallet integration" - Then run yarn new:version > This will update your package.json will increment the version as well as update the CHANGELOG.md - Push your changes up to master and github actions will publish the package to github packages

Usage no npm install needed!

<script type="module">
  import dProtocolDPayments from 'https://cdn.skypack.dev/@d-protocol/d-payments';
</script>

README

Wyre Typescript SDK

Publishing New Versions

  • Commit your changes using conventional commits eg. git commit -m "feat: added wallet integration"
  • Then run yarn new:version

    This will update your package.json will increment the version as well as update the CHANGELOG.md

  • Push your changes up to master and github actions will publish the package to github packages

Using this SDK

  • First import Wyre and initialize it once
import { Wyre, Config } from "@d-protocol/d-payments"
  • Create a config object as follows
const config: Config = {
  apiKey: "xxx",
  test: true,
}
  • Initialize Wyre
Wyre.init(config)
  • Now you can import Wyre anywhere in your project and access it's various clients