Manager class for AdEx AdViews.
This library is meant to be integrated by publishers on their websites, runs on the client side (user's browser) and facilitates the following functionalities:
For more information, check the adex-protocol repo.
NOTE: If you're a publisher, you do not need to integrate this library directly. All you need to do is copy/paste the HTML snippet from the Platform once you create an ad slot.
Usage:
const { AdViewManager } = require('adex-adview-manager')
const mgr = new AdViewManager(require('node-fetch'), {
publisherAddr: '0xd6e371526cdaeE04cd8AF225D42e37Bc14688D9E',
whitelistedToken: '0x7af963cF6D228E564e2A0aA0DdBF06210B38615D',
targeting: [{ tag: 'location_BG', score: 1.5 }],
})
async function run() {
console.log((await mgr.getNextAdUnit()).html)
}
run()
const mgr = new AdViewManager(fetch, opts)
For the available options, see https://github.com/AdExNetwork/adex-adview-manager/blob/master/src/main.ts#L18
Brief description of each one: backendURL
backendURL
: URL to the AdEx market; defaults to "https://backend.moonicorn.network"
acceptedStates
: array of accepted campaign states; defaults to ['Active', 'Ready']
minPerImpression
: minimum payment amount per impression; defaults to '0'
minTargetingScore
: minimum targeting score to show an ad unit; defaults to 0
publisherAddr
: the address of the publisher that will receive the earningswhitelistedToken
: the address of the whitelisted payment tokenwhitelistedType
: the allowed type of the ad unit; don't pass that in (or set to null
) if you want to allow all typestopByPrice
: how many ad units to consider after sorting by pricetopByScore
: how many ad units to consider after sorting by targetingrandomize
: apply random sort on the final selection (after applying topByPrice
and topByScore
)targeting
: what targeting tags to applyFor detailed information on how the bidding process works, see: https://github.com/AdExNetwork/adex-protocol/blob/master/components/validator-stack.md#bidding-process
mgr.getAdUnits()
: returns a promise that resolves with all ad units from currently active campaigns; applies targeting and filteringmgr.getNextAdUnit()
: returns a promise that returns the least seen unit from getAdUnits()
; use this in your app to get the next ad unit to showThe object format that those functions return is { unit, channelId, html }
webpack --mode production
http-server --cors dist.browser/
http://127.0.0.1:8080/js-example.html
const options = {
publisherAddr: '0xd6e371526cdaeE04cd8AF225D42e37Bc14688D9E',
whitelistedToken: '0x7af963cF6D228E564e2A0aA0DdBF06210B38615D',
whitelistedType: 'legacy_300x250'
}
const url = `index.html#${encodeURIComponent(JSON.stringify({ options }))}`
<iframe width={width} height={height} src="https://github.com/AmbireTech/adex-adview-manager/raw/v5-development/{origin}{parameters}">
Auto-collapsing is achieved by adding an onload
handler:
window.addEventListener('message', function(ev) { if (ev.data.hasOwnProperty('adexHeight') && ev.origin === '{origin}') for (f of document.getElementsByTagName('iframe')) if (f.contentWindow === ev.source) f.height = ev.data.adexHeight }, false)
`<iframe width={width} src="https://github.com/AmbireTech/adex-adview-manager/raw/v5-development/{origin}{parameters}" onload="window.addEventListener('message', function(ev) { if (ev.data.hasOwnProperty('adexHeight') && ev.origin === '{origin}') for (f of document.getElementsByTagName('iframe')) if (f.contentWindow === ev.source) f.height = ev.data.adexHeight }, false)">
Essentially the only difference to the previous one is that the height
is set
<iframe width={width} height={height} src="https://github.com/AmbireTech/adex-adview-manager/raw/v5-development/{origin}{parameters}" onload="window.addEventListener('message', function(ev) { if (ev.data.hasOwnProperty('adexHeight') && ev.origin === '{origin}') for (f of document.getElementsByTagName('iframe')) if (f.contentWindow === ev.source) f.height = ev.data.adexHeight }, false)">