Skip to content

Releases: DePayFi/web3-payments

v12.0.1

16 May 12:53
9f7f947
Compare
Choose a tag to compare

fix amount passing (needs to pass from paymentRoute not exchangeRoute)

v12.0.0

16 May 06:07
a1a3e5c
Compare
Choose a tag to compare

12.0.0

  • Introduces Solana support
  • Moves fee configuration into accept and requests it per accept entry

Breaking Changes

Moves fee into accept

Before

await route({
  
  accept: [{
    //...
  }],
  fee: {
    amount: '3%',
    receiver: '0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B'
  }
})

Now

await route({
  
  accept: [{
    //...
    fee: {
      amount: '3%',
      receiver: '0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B'
    }
  }],
})

v11.1.0

25 Mar 10:32
0ed83c5
Compare
Choose a tag to compare
  • upgrade web3-blockchains and remove web3-constants internally
  • introduces multi-stable routing, too

v11.0.3

17 Jan 18:03
f397c37
Compare
Choose a tag to compare

priorities direct transfers

v11.0.0

01 Jan 16:58
6efb1da
Compare
Choose a tag to compare

drops "toContract" receiver

v10.10.2

30 Dec 14:19
35c4f40
Compare
Choose a tag to compare

fix unwrap payment and unwrap score when sorting payment options

v10.10.1

12 Dec 16:01
21122cd
Compare
Choose a tag to compare

fix upgrade dependencies

v10.10.0

12 Dec 14:11
a2379b5
Compare
Choose a tag to compare

adds event config ifRoutedAndNative for payment and fee

v10.9.0

08 Dec 15:35
de1706a
Compare
Choose a tag to compare

enable WRAPPED<>NATIVE payment routes

v10.8.4

24 Nov 09:56
7851205
Compare
Choose a tag to compare

update web3-client (fix polygon rpc list)