![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@bitgo-beta/sdk-coin-avaxp
Advanced tools
SDK coins provide a modular approach to a monolithic architecture. This and all BitGoJS SDK coins allow developers to use only the coins needed for a given project.
All coins are loaded traditionally through the bitgo
package. If you are using coins individually, you will be accessing the coin via the @bitgo/sdk-api
package.
In your project install both @bitgo/sdk-api
and @bitgo/sdk-coin-avaxp
.
npm i @bitgo/sdk-api @bitgo/sdk-coin-avaxp
Next, you will be able to initialize an instance of BitGoAPI through @bitgo/sdk-api
instead of via bitgo
.
import { BitGoAPI } from '@bitgo/sdk-api';
import { AvaxP, TavaxP } from '@bitgo/sdk-coin-avaxp';
async function init() {
const bitgoapi = new BitGoAPI({ env: 'test' });
bitgoapi.register('avaxp', AvaxP.createInstance);
bitgoapi.register('tavaxp', TavaxP.createInstance);
return bitgoapi;
}
async function main() {
const bitgoapi = await init();
const avaxp = bitgoapi.coin('avaxp');
const tavaxp = bitgoapi.coin('tavaxp');
}
Most of the coin implementations are derived from @bitgo/sdk-core
, @bitgo/statics
, and coin specific packages. These implementations are used to interact with the BitGo API and BitGo platform services.
You will notice that the basic version of common class extensions have been provided to you and must be resolved before the package build will succeed. Upon initiation of a given SDK coin, you will need to verify that your coin has been included in the root tsconfig.packages.json
and that the linting, formatting, and testing succeeds when run both within the coin and from the root of BitGoJS.
FAQs
BitGo's SDK coin library for avaxp coin
The npm package @bitgo-beta/sdk-coin-avaxp receives a total of 15,294 weekly downloads. As such, @bitgo-beta/sdk-coin-avaxp popularity was classified as popular.
We found that @bitgo-beta/sdk-coin-avaxp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.