The Wallet Object
Wallets in the Pump.fun Trading API are Custodial Solana Wallets, that perform all trades and transactions.
All wallets are created by the Pump.fun Trading API, or through the Trade Pump Fun Portal.
The wallet object used in the API has the following attributes.
Attributes
id
(string)
The address, and unique identifier for the wallet.
fkAccountId
(string)
The account id that the wallet belongs to, will be the same for all of your wallets.
nickname
(string) nullable
A optional nickname provided to the wallet, for your reference.
description
(string) nullable
A optional description provided to the wallet, for your reference.
primary
(boolean)
If true, the wallet is the primary wallet for the account.
exp
(string)
The current experience the wallet has.
level
(number)
The current level of the wallet.
createdAt
(Date)
The date and time the wallet was created.
updatedAt
(Date)
The date and time the wallet was last updated.
Wallet Object
{
"id": "0x1234567890123456789012345678901234567890",
"fkAccountId": "0x1234567890123456789012345678901234567899",
"nickname": "My Wallet",
"description": "My Wallet Description",
"primary": true,
"exp": "1000",
"level": 1,
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z"
}