Base Frame
BaseFrame home | source code
Usage
function generateTransactionUrl(transaction_type, params) {
const baseUrl = "http://localhost:3001/";
let queryParams = new URLSearchParams({
transaction_type,
...params,
}).toString();
return `${baseUrl}?${queryParams}`;
}
// Usage examples:
let sendUrl = generateTransactionUrl("send", {
buttonName: "Send",
amount: 250,
token: "BTC",
receiver: "receiver",
});
let swapUrl = generateTransactionUrl("swap", {
buttonName: "Swap",
amount: 100,
token_from: "ETH",
token_to: "DAI",
});
let mintUrl = generateTransactionUrl("mint", {
buttonName: "Mint",
collection: "0x123456789ABCDEF",
token_id: 1023,
});-
Send Transaction:
- Purpose: To send a specified amount of a cryptocurrency to a destination address.
- Example URL:
http://localhost:3001/?transaction_type=send&buttonName=Send&amount=1&token=USDC - Parameters:
transaction_type=sendindicates the action of sending currency.amount=250specifies the amount of BTC to be sent.token=BTCindicates that Bitcoin is the currency being sent.receiver=specifies the recipient's address. It’s hardcoded in the code
-
Swap Transaction:
- Purpose: To exchange one type of cryptocurrency for another.
- Example URL:
http://localhost:3001/?transaction_type=swap&buttonName=Swap&amount=1&token_from=ETH&token_to=DAI - Parameters:
transaction_type=swapindicates a swap action.amount=100specifies the amount of ETH to be exchanged.token_from=ETHindicates that Ethereum is the currency being swapped.token_to=DAIspecifies DAI as the currency to receive in the swap.
-
Mint Transaction:
- Purpose: To create (mint) a new token or NFT.
- Example URL:
http://localhost:3001/?transaction_type=mint&buttonName=Mint&collection=0x123456789ABCDEF&token_id=1023 - Parameters:
transaction_type=mintindicates the minting of a new NFT.collection=0x...specifies the NFT collection.token_id=1023specifies the unique identifier of the NFT within the collection.
This is a frame following the frames.js OpenFrames standard, working on Base mainnet.