![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.
@fairdatasociety/fdp-contracts
Advanced tools
This library provides simple interface to interact with FDS contracts.
The library depends on the ethers.js library. So in order to use
the library, ethers
must be installed.
To install the both libraries:
npm install --save @fairdatasociety/fdp-contracts ethers
To work with local fdp-contracts
docker image, execute the following command:
fdp-play start --detach --blockchain-image fairdatasociety/fdp-contracts-blockchain $BEE_VERSION
NOTE: it will spin up the whole fdp environment for you with running Bee clients
To interact with Ethereum Name Service (ENS), import and instantiate the ENS class. The ENS class can be
configured with predefined configurations or with a custom one. Currently, the only predefined configuration
is for the localhost envirnoment, which means it will use the swarm-test-blockchain
image running locally on
http://localhost:9545
address.
Predefined configurations can be fetched using the getEnvironmentConfig
function.
import { ENS, Environments, getEnvironmentConfig } from '@fairdatasociety/fdp-contracts'
const ens = new ENS(getEnvironmentConfig(Environments.LOCALHOST))
To use custom configuration, provide an instance of Environment
type, or modify some of the predefined
configurations:
import { ENS, Environments, getEnvironmentConfig, Environment } from '@fairdatasociety/fdp-contracts'
const customConfig: Environment = {
...getEnvironmentConfig(Environments.LOCALHOST),
rpcUrl: 'www.example.com',
}
const ens = new ENS(customConfig)
Here is an example how to interact with ENS:
import { ENS } from '@fairdatasociety/fdp-contracts'
async function example() {
const ens = new ENS() // Default configuration is for localhost
const username = 'example'
const isUsernameAvailable = await ens.isUsernameAvailable(username)
console.log(`Username ${username} is available: ${isUsernameAvailable}`)
}
For methods that require transactions, a signer must be provided. Signer can be specified when creating an
object of the ENS class, or later by calling the connect
method. Signer can be a hex string of a private
key, or an ethers.js
signer.
import { Wallet } from 'ethers'
import { ENS } from '@fairdatasociety/fdp-contracts'
async function example() {
const ens = new ENS()
const wallet = new Wallet('0x...', ens.provider)
ens.connect(wallet)
const address = await wallet.getAddress()
const username = 'example'
await ens.registerUsername(username, address, wallet.publicKey)
console.log(`Username ${username} successfully registered.`)
}
To compile the library in watch mode:
npm start
To build the library:
npm run build
The library can be linked, so it can be imported as a node module from another local project. First, inside this directory run:
npm link
Then in root directory of another project, the library can be installed with:
npm link @fairdatasociety/fdp-contracts
To automatically start a fdp-contracts container, build the library and run tests:
./scripts/test.sh
Tests are separated into unit and integration tests to the test/unit
and test/it
directorties,
respectively.
In order to run integration tests, a container with FDP contracts must be started first. Also the librarry should be built. Then, tests are executed using the command:
npm run test:integration
To run both tests at once:
npm test
FAQs
Library for interaction with FDS contracts
We found that @fairdatasociety/fdp-contracts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.