uvd-x402-sdk 2.10.0 → 2.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/index.js +16 -0
- package/dist/adapters/index.js.map +1 -1
- package/dist/adapters/index.mjs +16 -0
- package/dist/adapters/index.mjs.map +1 -1
- package/dist/backend/index.js +16 -0
- package/dist/backend/index.js.map +1 -1
- package/dist/backend/index.mjs +16 -0
- package/dist/backend/index.mjs.map +1 -1
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -0
- package/dist/index.mjs.map +1 -1
- package/dist/providers/algorand/index.d.mts +31 -10
- package/dist/providers/algorand/index.d.ts +31 -10
- package/dist/providers/algorand/index.js +125 -13
- package/dist/providers/algorand/index.js.map +1 -1
- package/dist/providers/algorand/index.mjs +125 -13
- package/dist/providers/algorand/index.mjs.map +1 -1
- package/dist/providers/evm/index.js +16 -0
- package/dist/providers/evm/index.js.map +1 -1
- package/dist/providers/evm/index.mjs +16 -0
- package/dist/providers/evm/index.mjs.map +1 -1
- package/dist/providers/near/index.js +16 -0
- package/dist/providers/near/index.js.map +1 -1
- package/dist/providers/near/index.mjs +16 -0
- package/dist/providers/near/index.mjs.map +1 -1
- package/dist/providers/solana/index.js +16 -0
- package/dist/providers/solana/index.js.map +1 -1
- package/dist/providers/solana/index.mjs +16 -0
- package/dist/providers/solana/index.mjs.map +1 -1
- package/dist/providers/stellar/index.js +16 -0
- package/dist/providers/stellar/index.js.map +1 -1
- package/dist/providers/stellar/index.mjs +16 -0
- package/dist/providers/stellar/index.mjs.map +1 -1
- package/dist/react/index.js +16 -0
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +16 -0
- package/dist/react/index.mjs.map +1 -1
- package/dist/utils/index.js +16 -0
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/index.mjs +16 -0
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +6 -1
- package/src/chains/index.ts +14 -0
- package/src/providers/algorand/index.ts +155 -19
package/dist/index.js
CHANGED
|
@@ -483,6 +483,22 @@ var SUPPORTED_CHAINS = {
|
|
|
483
483
|
name: "USD Coin",
|
|
484
484
|
version: "1"
|
|
485
485
|
},
|
|
486
|
+
tokens: {
|
|
487
|
+
usdc: {
|
|
488
|
+
address: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
|
|
489
|
+
// USDC SPL token mint
|
|
490
|
+
decimals: 6,
|
|
491
|
+
name: "USD Coin",
|
|
492
|
+
version: "1"
|
|
493
|
+
},
|
|
494
|
+
ausd: {
|
|
495
|
+
address: "AUSD1jCcCyPLybk1YnvPWsHQSrZ46dxwoMniN4N2UEB9",
|
|
496
|
+
// AUSD Token2022 mint
|
|
497
|
+
decimals: 6,
|
|
498
|
+
name: "Agora Dollar",
|
|
499
|
+
version: "1"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
486
502
|
x402: {
|
|
487
503
|
facilitatorUrl: DEFAULT_FACILITATOR_URL,
|
|
488
504
|
enabled: true
|